summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe.Tews <uwe.tews@localhost>2009-11-15 19:05:53 +0000
committerUwe.Tews <uwe.tews@localhost>2009-11-15 19:05:53 +0000
commit9f505c1c2387abb051c023b5d21a0d2f42bc5c73 (patch)
tree0ef2640b5e760db25f93b36bd5dd43155482816f
parent960fd1b3a95408ec81c83501d13e384d3a65002f (diff)
downloadsmarty-9f505c1c2387abb051c023b5d21a0d2f42bc5c73.tar.gz
smarty-9f505c1c2387abb051c023b5d21a0d2f42bc5c73.tar.bz2
smarty-9f505c1c2387abb051c023b5d21a0d2f42bc5c73.zip
- lexer/parser optimizations on quoted strings
-rw-r--r--change_log.txt3
-rw-r--r--libs/Smarty.class.php4
-rw-r--r--libs/sysplugins/smarty_internal_compile_ldelim.php32
-rw-r--r--libs/sysplugins/smarty_internal_compile_rdelim.php32
-rw-r--r--libs/sysplugins/smarty_internal_templatelexer.php591
-rw-r--r--libs/sysplugins/smarty_internal_templateparser.php2848
6 files changed, 1794 insertions, 1716 deletions
diff --git a/change_log.txt b/change_log.txt
index 30a3e414..68dd6cd7 100644
--- a/change_log.txt
+++ b/change_log.txt
@@ -1,3 +1,6 @@
+11/15/2009
+- lexer/parser optimizations on quoted strings
+
11/14/2009
- bugfix on merging compiled templates when source files got removed or renamed.
- bugfix modifiers on registered object tags
diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php
index 7183ee21..24244b1f 100644
--- a/libs/Smarty.class.php
+++ b/libs/Smarty.class.php
@@ -329,10 +329,6 @@ class Smarty extends Smarty_Internal_TemplateBase {
*/
public function display($template, $cache_id = null, $compile_id = null, $parent = null)
{
- if (is_object($cache_id)) {
- $parent = $cache_id;
- $cache_id = null;
- }
// display template
echo $this->fetch ($template, $cache_id, $compile_id, $parent);
// debug output
diff --git a/libs/sysplugins/smarty_internal_compile_ldelim.php b/libs/sysplugins/smarty_internal_compile_ldelim.php
new file mode 100644
index 00000000..c809990c
--- /dev/null
+++ b/libs/sysplugins/smarty_internal_compile_ldelim.php
@@ -0,0 +1,32 @@
+<?php
+
+/**
+* Smarty Internal Plugin Compile Ldelim
+*
+* Compiles the {ldelim} tag
+* @package Smarty
+* @subpackage Compiler
+* @author Uwe Tews
+*/
+/**
+* Smarty Internal Plugin Compile Ldelim Class
+*/
+class Smarty_Internal_Compile_Ldelim extends Smarty_Internal_CompileBase {
+ /**
+ * Compiles code for the {ldelim} tag
+ *
+ * This tag does output the left delimiter
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
+ public function compile($args, $compiler)
+ {
+ $this->compiler = $compiler;
+ $_attr = $this->_get_attributes($args);
+ // this tag does not return compiled code
+ $this->compiler->has_code = true;
+ return $this->compiler->smarty->left_delimiter;
+ }
+}
+?>
diff --git a/libs/sysplugins/smarty_internal_compile_rdelim.php b/libs/sysplugins/smarty_internal_compile_rdelim.php
new file mode 100644
index 00000000..88c4e1e5
--- /dev/null
+++ b/libs/sysplugins/smarty_internal_compile_rdelim.php
@@ -0,0 +1,32 @@
+<?php
+
+/**
+* Smarty Internal Plugin Compile Rdelim
+*
+* Compiles the {rdelim} tag
+* @package Smarty
+* @subpackage Compiler
+* @author Uwe Tews
+*/
+/**
+* Smarty Internal Plugin Compile Rdelim Class
+*/
+class Smarty_Internal_Compile_Rdelim extends Smarty_Internal_CompileBase {
+ /**
+ * Compiles code for the {rdelim} tag
+ *
+ * This tag does output the right delimiter
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
+ public function compile($args, $compiler)
+ {
+ $this->compiler = $compiler;
+ $_attr = $this->_get_attributes($args);
+ // this tag does not return compiled code
+ $this->compiler->has_code = true;
+ return $this->compiler->smarty->right_delimiter;
+ }
+}
+?>
diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php
index e236f642..0d59003c 100644
--- a/libs/sysplugins/smarty_internal_templatelexer.php
+++ b/libs/sysplugins/smarty_internal_templatelexer.php
@@ -134,15 +134,13 @@ class Smarty_Internal_Templatelexer
10 => 0,
11 => 0,
12 => 0,
- 13 => 0,
- 14 => 0,
- 15 => 2,
- 18 => 0,
+ 13 => 2,
+ 16 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)/";
+ $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)/";
do {
if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
@@ -182,21 +180,19 @@ class Smarty_Internal_Templatelexer
// skip this token
continue;
} else { $yy_yymore_patterns = array(
- 1 => array(0, "^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 2 => array(1, "^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 4 => array(1, "^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 5 => array(1, "^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 6 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 7 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 8 => array(1, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 9 => array(1, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 10 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 11 => array(1, "^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 12 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 13 => array(1, "^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 14 => array(1, "^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
- 15 => array(3, "^([\S\s]+)"),
- 18 => array(3, ""),
+ 1 => array(0, "^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 2 => array(1, "^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 4 => array(1, "^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 5 => 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]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 6 => 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]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 7 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 8 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 9 => array(1, "^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 10 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 11 => array(1, "^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 12 => array(1, "^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"),
+ 13 => array(3, "^([\S\s]+)"),
+ 16 => array(3, ""),
);
// yymore is needed
@@ -295,16 +291,6 @@ class Smarty_Internal_Templatelexer
function yy_r1_9($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_LDELIMTAG;
- }
- function yy_r1_10($yy_subpatterns)
- {
-
- $this->token = Smarty_Internal_Templateparser::TP_RDELIMTAG;
- }
- function yy_r1_11($yy_subpatterns)
- {
-
if ($this->smarty->auto_literal) {
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
} else {
@@ -312,7 +298,7 @@ class Smarty_Internal_Templatelexer
$this->yypushstate(self::SMARTY);
}
}
- function yy_r1_12($yy_subpatterns)
+ function yy_r1_10($yy_subpatterns)
{
if ($this->smarty->auto_literal) {
@@ -322,19 +308,19 @@ class Smarty_Internal_Templatelexer
$this->yypushstate(self::SMARTY);
}
}
- function yy_r1_13($yy_subpatterns)
+ function yy_r1_11($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
$this->yypushstate(self::SMARTY);
}
- function yy_r1_14($yy_subpatterns)
+ function yy_r1_12($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDEL;
$this->yypushstate(self::SMARTY);
}
- function yy_r1_15($yy_subpatterns)
+ function yy_r1_13($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
@@ -344,12 +330,10 @@ class Smarty_Internal_Templatelexer
$this->value = substr($this->value,0,-strlen($this->smarty->left_delimiter));
}
if (strlen($this->value) == 0) {
- return true; // change state directly
- } else {
- return; // change state after processiing token
+ return true; // rescan
}
}
- function yy_r1_18($yy_subpatterns)
+ function yy_r1_16($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
@@ -360,8 +344,7 @@ class Smarty_Internal_Templatelexer
{
$tokenMap = array (
1 => 1,
- 3 => 0,
- 4 => 0,
+ 3 => 1,
5 => 0,
6 => 0,
7 => 0,
@@ -371,24 +354,24 @@ class Smarty_Internal_Templatelexer
11 => 0,
12 => 0,
13 => 0,
- 14 => 0,
- 15 => 1,
+ 14 => 1,
+ 16 => 0,
17 => 0,
18 => 0,
19 => 0,
20 => 0,
- 21 => 0,
- 22 => 1,
- 24 => 1,
- 26 => 1,
- 28 => 1,
- 30 => 1,
- 32 => 1,
- 34 => 1,
- 36 => 1,
- 38 => 1,
- 40 => 1,
- 42 => 1,
+ 21 => 1,
+ 23 => 1,
+ 25 => 1,
+ 27 => 1,
+ 29 => 1,
+ 31 => 1,
+ 33 => 1,
+ 35 => 1,
+ 37 => 1,
+ 39 => 1,
+ 41 => 1,
+ 43 => 0,
44 => 0,
45 => 0,
46 => 0,
@@ -398,8 +381,8 @@ class Smarty_Internal_Templatelexer
50 => 0,
51 => 0,
52 => 0,
- 53 => 0,
- 54 => 3,
+ 53 => 3,
+ 57 => 0,
58 => 0,
59 => 0,
60 => 0,
@@ -407,10 +390,10 @@ class Smarty_Internal_Templatelexer
62 => 0,
63 => 0,
64 => 0,
- 65 => 0,
- 66 => 1,
- 68 => 1,
- 70 => 1,
+ 65 => 1,
+ 67 => 1,
+ 69 => 1,
+ 71 => 0,
72 => 0,
73 => 0,
74 => 0,
@@ -424,15 +407,13 @@ class Smarty_Internal_Templatelexer
82 => 0,
83 => 0,
84 => 0,
- 85 => 1,
- 87 => 0,
- 88 => 0,
- 89 => 0,
+ 85 => 0,
+ 86 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/";
+ $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(''|'([\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+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)/";
do {
if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
@@ -472,75 +453,72 @@ class Smarty_Internal_Templatelexer
// skip this token
continue;
} else { $yy_yymore_patterns = array(
- 1 => array(0, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 3 => array(0, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 4 => array(0, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 5 => array(0, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 6 => array(0, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 7 => array(0, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 8 => array(0, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 9 => array(0, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 10 => array(0, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 11 => array(0, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 12 => array(0, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 13 => array(0, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 14 => array(0, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 15 => array(1, "^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 17 => array(1, "^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 18 => array(1, "^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 19 => array(1, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 20 => array(1, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 21 => array(1, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 22 => array(2, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 24 => array(3, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 26 => array(4, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 28 => array(5, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 30 => array(6, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 32 => array(7, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 34 => array(8, "^(!\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 36 => array(9, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 38 => array(10, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 40 => array(11, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 42 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 44 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 45 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 46 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 47 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 48 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 49 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 50 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 51 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 52 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 53 => array(12, "^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 54 => array(15, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 58 => array(15, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 59 => array(15, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 60 => array(15, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 61 => array(15, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 62 => array(15, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 63 => array(15, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 64 => array(15, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 65 => array(15, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 66 => array(16, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 68 => array(17, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 70 => array(18, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 72 => array(18, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 73 => array(18, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 74 => array(18, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 75 => array(18, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 76 => array(18, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 77 => array(18, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 78 => array(18, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 79 => array(18, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 80 => array(18, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 81 => array(18, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 82 => array(18, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 83 => array(18, "^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 84 => array(18, "^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
- 85 => array(19, "^(\\w+)|^(\\s+)|^(.)"),
- 87 => array(19, "^(\\s+)|^(.)"),
- 88 => array(19, "^(.)"),
- 89 => array(19, ""),
+ 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+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\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+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\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+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\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+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\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+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 8 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 9 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 10 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 14 => array(2, "^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 16 => array(2, "^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 17 => array(2, "^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 18 => array(2, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 19 => array(2, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 20 => array(2, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 21 => array(3, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 23 => array(4, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 25 => array(5, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 27 => array(6, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 29 => array(7, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 31 => array(8, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 33 => array(9, "^(!\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 35 => array(10, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 37 => array(11, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 39 => array(12, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 41 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 43 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 44 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 45 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 46 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 47 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 48 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 49 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 50 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 51 => array(13, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 52 => array(13, "^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 53 => array(16, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 57 => array(16, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 58 => array(16, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 59 => array(16, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 60 => array(16, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 61 => array(16, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 62 => array(16, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 63 => array(16, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 64 => array(16, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 65 => array(17, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 67 => array(18, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 69 => array(19, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 71 => array(19, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 72 => array(19, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 73 => array(19, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 74 => array(19, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 75 => array(19, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 76 => array(19, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 77 => array(19, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 78 => array(19, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 79 => array(19, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 80 => array(19, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 81 => array(19, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 82 => array(19, "^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"),
+ 83 => array(19, "^(\\w+)|^(\\s+)|^(.)"),
+ 84 => array(19, "^(\\s+)|^(.)"),
+ 85 => array(19, "^(.)"),
+ 86 => array(19, ""),
);
// yymore is needed
@@ -605,32 +583,22 @@ class Smarty_Internal_Templatelexer
function yy_r2_3($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_SINGLEQUOTE;
+ $this->token = Smarty_Internal_Templateparser::TP_SINGLEQUOTESTRING;
}
- function yy_r2_4($yy_subpatterns)
+ function yy_r2_5($yy_subpatterns)
{
$this->yypushstate(self::LITERAL);
return true;
}
- function yy_r2_5($yy_subpatterns)
- {
-
- return false; // unexspected here just ignore
- }
function yy_r2_6($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_LDELIMTAG;
+ return false; // unexspected here just ignore
}
function yy_r2_7($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_RDELIMTAG;
- }
- function yy_r2_8($yy_subpatterns)
- {
-
if ($this->smarty->auto_literal) {
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
} else {
@@ -638,7 +606,7 @@ class Smarty_Internal_Templatelexer
$this->yypushstate(self::SMARTY);
}
}
- function yy_r2_9($yy_subpatterns)
+ function yy_r2_8($yy_subpatterns)
{
if ($this->smarty->auto_literal) {
@@ -648,7 +616,7 @@ class Smarty_Internal_Templatelexer
$this->yypushstate(self::SMARTY);
}
}
- function yy_r2_10($yy_subpatterns)
+ function yy_r2_9($yy_subpatterns)
{
if ($this->smarty->auto_literal) {
@@ -658,305 +626,302 @@ class Smarty_Internal_Templatelexer
$this->yypopstate();
}
}
- function yy_r2_11($yy_subpatterns)
+ function yy_r2_10($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
$this->yypushstate(self::SMARTY);
}
- function yy_r2_12($yy_subpatterns)
+ function yy_r2_11($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDEL;
$this->yypushstate(self::SMARTY);
}
- function yy_r2_13($yy_subpatterns)
+ function yy_r2_12($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_RDEL;
$this->yypopstate();
}
- function yy_r2_14($yy_subpatterns)
+ function yy_r2_13($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISIN;
}
- function yy_r2_15($yy_subpatterns)
+ function yy_r2_14($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_AS;
}
- function yy_r2_17($yy_subpatterns)
+ function yy_r2_16($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_INSTANCEOF;
}
- function yy_r2_18($yy_subpatterns)
+ function yy_r2_17($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_BOOLEAN;
}
- function yy_r2_19($yy_subpatterns)
+ function yy_r2_18($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_NULL;
}
- function yy_r2_20($yy_subpatterns)
+ function yy_r2_19($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_IDENTITY;
}
- function yy_r2_21($yy_subpatterns)
+ function yy_r2_20($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_NONEIDENTITY;
}
- function yy_r2_22($yy_subpatterns)
+ function yy_r2_21($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_EQUALS;
}
- function yy_r2_24($yy_subpatterns)
+ function yy_r2_23($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_NOTEQUALS;
}
- function yy_r2_26($yy_subpatterns)
+ function yy_r2_25($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_GREATEREQUAL;
}
- function yy_r2_28($yy_subpatterns)
+ function yy_r2_27($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LESSEQUAL;
}
- function yy_r2_30($yy_subpatterns)
+ function yy_r2_29($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_GREATERTHAN;
}
- function yy_r2_32($yy_subpatterns)
+ function yy_r2_31($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LESSTHAN;
}
- function yy_r2_34($yy_subpatterns)
+ function yy_r2_33($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_MOD;
}
- function yy_r2_36($yy_subpatterns)
+ function yy_r2_35($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_NOT;
}
- function yy_r2_38($yy_subpatterns)
+ function yy_r2_37($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LAND;
}
- function yy_r2_40($yy_subpatterns)
+ function yy_r2_39($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LOR;
}
- function yy_r2_42($yy_subpatterns)
+ function yy_r2_41($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LXOR;
}
- function yy_r2_44($yy_subpatterns)
+ function yy_r2_43($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISODDBY;
}
- function yy_r2_45($yy_subpatterns)
+ function yy_r2_44($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY;
}
- function yy_r2_46($yy_subpatterns)
+ function yy_r2_45($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISODD;
}
- function yy_r2_47($yy_subpatterns)
+ function yy_r2_46($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTODD;
}
- function yy_r2_48($yy_subpatterns)
+ function yy_r2_47($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISEVENBY;
}
- function yy_r2_49($yy_subpatterns)
+ function yy_r2_48($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY;
}
- function yy_r2_50($yy_subpatterns)
+ function yy_r2_49($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISEVEN;
}
- function yy_r2_51($yy_subpatterns)
+ function yy_r2_50($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN;
}
- function yy_r2_52($yy_subpatterns)
+ function yy_r2_51($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISDIVBY;
}
- function yy_r2_53($yy_subpatterns)
+ function yy_r2_52($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY;
}
- function yy_r2_54($yy_subpatterns)
+ function yy_r2_53($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_TYPECAST;
}
- function yy_r2_58($yy_subpatterns)
+ function yy_r2_57($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OPENP;
}
- function yy_r2_59($yy_subpatterns)
+ function yy_r2_58($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_CLOSEP;
}
- function yy_r2_60($yy_subpatterns)
+ function yy_r2_59($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OPENB;
}
- function yy_r2_61($yy_subpatterns)
+ function yy_r2_60($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_CLOSEB;
}
- function yy_r2_62($yy_subpatterns)
+ function yy_r2_61($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_PTR;
}
- function yy_r2_63($yy_subpatterns)
+ function yy_r2_62($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_APTR;
}
- function yy_r2_64($yy_subpatterns)
+ function yy_r2_63($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_EQUAL;
}
- function yy_r2_65($yy_subpatterns)
+ function yy_r2_64($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_INTEGER;
}
- function yy_r2_66($yy_subpatterns)
+ function yy_r2_65($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_INCDEC;
}
- function yy_r2_68($yy_subpatterns)
+ function yy_r2_67($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_UNIMATH;
}
- function yy_r2_70($yy_subpatterns)
+ function yy_r2_69($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_MATH;
}
- function yy_r2_72($yy_subpatterns)
+ function yy_r2_71($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_DOLLAR;
}
- function yy_r2_73($yy_subpatterns)
+ function yy_r2_72($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_SEMICOLON;
}
- function yy_r2_74($yy_subpatterns)
+ function yy_r2_73($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON;
}
- function yy_r2_75($yy_subpatterns)
+ function yy_r2_74($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_COLON;
}
- function yy_r2_76($yy_subpatterns)
+ function yy_r2_75($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_AT;
}
- function yy_r2_77($yy_subpatterns)
+ function yy_r2_76($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_HATCH;
}
- function yy_r2_78($yy_subpatterns)
+ function yy_r2_77($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_QUOTE;
+ $this->yypushstate(self::DOUBLEQUOTEDSTRING);
}
- function yy_r2_79($yy_subpatterns)
+ function yy_r2_78($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_BACKTICK;
+ $this->yypopstate();
}
- function yy_r2_80($yy_subpatterns)
+ function yy_r2_79($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_VERT;
}
- function yy_r2_81($yy_subpatterns)
+ function yy_r2_80($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_DOT;
}
- function yy_r2_82($yy_subpatterns)
+ function yy_r2_81($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_COMMA;
}
- function yy_r2_83($yy_subpatterns)
+ function yy_r2_82($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ANDSYM;
}
- function yy_r2_84($yy_subpatterns)
+ function yy_r2_83($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_QMARK;
}
- function yy_r2_85($yy_subpatterns)
- {
-
- $this->token = Smarty_Internal_Templateparser::TP_OTHER;
- }
- function yy_r2_87($yy_subpatterns)
+ function yy_r2_84($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ID;
}
- function yy_r2_88($yy_subpatterns)
+ function yy_r2_85($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_SPACE;
}
- function yy_r2_89($yy_subpatterns)
+ function yy_r2_86($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
@@ -1231,5 +1196,205 @@ class Smarty_Internal_Templatelexer
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
}
+
+ function yylex5()
+ {
+ $tokenMap = array (
+ 1 => 0,
+ 2 => 0,
+ 3 => 0,
+ 4 => 0,
+ 5 => 0,
+ 6 => 0,
+ 7 => 0,
+ 8 => 0,
+ 9 => 2,
+ 12 => 0,
+ );
+ if ($this->counter >= strlen($this->data)) {
+ return false; // end of input
+ }
+ $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(\\\\\\\\|[^\\\\]\"|".$this->ldel."|\\$|`\\$))|^([\S\s]+)/";
+
+ do {
+ if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ $yysubmatches = $yymatches;
+ $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
+ if (!count($yymatches)) {
+ throw new Exception('Error: lexing failed because a rule matched' .
+ 'an empty string. Input "' . substr($this->data,
+ $this->counter, 5) . '... state DOUBLEQUOTEDSTRING');
+ }
+ next($yymatches); // skip global match
+ $this->token = key($yymatches); // token number
+ if ($tokenMap[$this->token]) {
+ // extract sub-patterns for passing to lex function
+ $yysubmatches = array_slice($yysubmatches, $this->token + 1,
+ $tokenMap[$this->token]);
+ } else {
+ $yysubmatches = array();
+ }
+ $this->value = current($yymatches); // token value
+ $r = $this->{'yy_r5_' . $this->token}($yysubmatches);
+ if ($r === null) {
+ $this->counter += strlen($this->value);
+ $this->line += substr_count($this->value, "\n");
+ // accept this token
+ return true;
+ } elseif ($r === true) {
+ // we have changed state
+ // process this token in the new state
+ return $this->yylex();
+ } elseif ($r === false) {
+ $this->counter += strlen($this->value);
+ $this->line += substr_count($this->value, "\n");
+ if ($this->counter >= strlen($this->data)) {
+ return false; // end of input
+ }
+ // skip this token
+ continue;
+ } else { $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 {
+ throw new Exception('Unexpected input at line' . $this->line .
+ ': ' . $this->data[$this->counter]);
+ }
+ break;
+ } while (true);
+
+ } // end function
+
+
+ const DOUBLEQUOTEDSTRING = 5;
+ function yy_r5_1($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal) {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
+ $this->yypushstate(self::SMARTY);
+ }
+ }
+ function yy_r5_2($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal) {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDEL;
+ $this->yypushstate(self::SMARTY);
+ }
+ }
+ function yy_r5_3($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
+ $this->yypushstate(self::SMARTY);
+ }
+ function yy_r5_4($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_LDEL;
+ $this->yypushstate(self::SMARTY);
+ }
+ function yy_r5_5($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_QUOTE;
+ $this->yypopstate();
+ }
+ function yy_r5_6($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_BACKTICK;
+ $this->value = substr($this->value,0,-1);
+ $this->yypushstate(self::SMARTY);
+ }
+ function yy_r5_7($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_DOLLARID;
+ }
+ function yy_r5_8($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ }
+ function yy_r5_9($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ if (substr($this->value,-strlen($this->smarty->left_delimiter)) == $this->smarty->left_delimiter) {
+ $this->value = substr($this->value,0,-strlen($this->smarty->left_delimiter));
+ } elseif (substr($this->value,-2) == '`$') {
+ $this->value = substr($this->value,0,-2);
+ } elseif (strpbrk(substr($this->value,-1),'"$') !== false) {
+ $this->value = substr($this->value,0,-1);
+ }
+ if (strlen($this->value) == 0) {
+ return true; // rescan
+ }
+ }
+ function yy_r5_12($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ }
+
}
?>
diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php
index 8f19bf94..a47c76ba 100644
--- a/libs/sysplugins/smarty_internal_templateparser.php
+++ b/libs/sysplugins/smarty_internal_templateparser.php
@@ -152,81 +152,75 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph
**
** Each symbol here is a terminal symbol in the grammar.
*/
- const TP_OTHER = 1;
- const TP_XML = 2;
- const TP_PHP = 3;
- const TP_SHORTTAGSTART = 4;
- const TP_SHORTTAGEND = 5;
- const TP_PHPSTART = 6;
- const TP_PHPEND = 7;
- const TP_COMMENT = 8;
- const TP_SINGLEQUOTE = 9;
- const TP_LITERALSTART = 10;
- const TP_LITERALEND = 11;
- const TP_LDELIMTAG = 12;
- const TP_RDELIMTAG = 13;
- const TP_LDELSLASH = 14;
- const TP_LDEL = 15;
- const TP_RDEL = 16;
- const TP_ISIN = 17;
- const TP_AS = 18;
- const TP_BOOLEAN = 19;
- const TP_NULL = 20;
- const TP_IDENTITY = 21;
- const TP_NONEIDENTITY = 22;
- const TP_EQUALS = 23;
- const TP_NOTEQUALS = 24;
- const TP_GREATEREQUAL = 25;
- const TP_LESSEQUAL = 26;
- const TP_GREATERTHAN = 27;
- const TP_LESSTHAN = 28;
- const TP_MOD = 29;
- const TP_NOT = 30;
- const TP_LAND = 31;
- const TP_LOR = 32;
- const TP_LXOR = 33;
- const TP_ISODDBY = 34;
- const TP_ISNOTODDBY = 35;
- const TP_ISODD = 36;
- const TP_ISNOTODD = 37;
- const TP_ISEVENBY = 38;
- const TP_ISNOTEVENBY = 39;
- const TP_ISEVEN = 40;
- const TP_ISNOTEVEN = 41;
- const TP_ISDIVBY = 42;
- const TP_ISNOTDIVBY = 43;
- const TP_OPENP = 44;
- const TP_CLOSEP = 45;
- const TP_OPENB = 46;
- const TP_CLOSEB = 47;
- const TP_PTR = 48;
- const TP_APTR = 49;
- const TP_EQUAL = 50;
- const TP_INTEGER = 51;
- const TP_INCDEC = 52;
- const TP_UNIMATH = 53;
- const TP_MATH = 54;
- const TP_DOLLAR = 55;
- const TP_COLON = 56;
- const TP_DOUBLECOLON = 57;
- const TP_SEMICOLON = 58;
- const TP_AT = 59;
- const TP_HATCH = 60;
- const TP_QUOTE = 61;
- const TP_BACKTICK = 62;
- const TP_VERT = 63;
- const TP_DOT = 64;
- const TP_COMMA = 65;
- const TP_ANDSYM = 66;
- const TP_ID = 67;
- const TP_SPACE = 68;
- const TP_INSTANCEOF = 69;
- const TP_QMARK = 70;
- const TP_TYPECAST = 71;
- const TP_SINGLEQUOTESTRING = 72;
- const YY_NO_ACTION = 503;
- const YY_ACCEPT_ACTION = 502;
- const YY_ERROR_ACTION = 501;
+ 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_EQUAL = 9;
+ const TP_ID = 10;
+ const TP_PTR = 11;
+ const TP_SPACE = 12;
+ const TP_SEMICOLON = 13;
+ const TP_DOLLAR = 14;
+ const TP_INCDEC = 15;
+ const TP_AS = 16;
+ const TP_LDELSLASH = 17;
+ const TP_COMMA = 18;
+ const TP_COLON = 19;
+ const TP_UNIMATH = 20;
+ const TP_OPENP = 21;
+ const TP_CLOSEP = 22;
+ const TP_QMARK = 23;
+ const TP_MATH = 24;
+ const TP_ANDSYM = 25;
+ const TP_TYPECAST = 26;
+ const TP_INTEGER = 27;
+ const TP_DOT = 28;
+ const TP_BOOLEAN = 29;
+ const TP_NULL = 30;
+ const TP_SINGLEQUOTESTRING = 31;
+ const TP_QUOTE = 32;
+ const TP_DOUBLECOLON = 33;
+ const TP_AT = 34;
+ const TP_HATCH = 35;
+ const TP_OPENB = 36;
+ const TP_CLOSEB = 37;
+ const TP_VERT = 38;
+ const TP_NOT = 39;
+ const TP_ISIN = 40;
+ const TP_ISDIVBY = 41;
+ const TP_ISNOTDIVBY = 42;
+ const TP_ISEVEN = 43;
+ const TP_ISNOTEVEN = 44;
+ const TP_ISEVENBY = 45;
+ const TP_ISNOTEVENBY = 46;
+ const TP_ISODD = 47;
+ const TP_ISNOTODD = 48;
+ const TP_ISODDBY = 49;
+ const TP_ISNOTODDBY = 50;
+ const TP_INSTANCEOF = 51;
+ const TP_EQUALS = 52;
+ const TP_NOTEQUALS = 53;
+ const TP_GREATERTHAN = 54;
+ const TP_LESSTHAN = 55;
+ const TP_GREATEREQUAL = 56;
+ const TP_LESSEQUAL = 57;
+ const TP_IDENTITY = 58;
+ const TP_NONEIDENTITY = 59;
+ const TP_MOD = 60;
+ const TP_LAND = 61;
+ const TP_LOR = 62;
+ const TP_LXOR = 63;
+ const TP_APTR = 64;
+ const TP_BACKTICK = 65;
+ const TP_DOLLARID = 66;
+ const YY_NO_ACTION = 478;
+ const YY_ACCEPT_ACTION = 477;
+ const YY_ERROR_ACTION = 476;
/* 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
@@ -278,536 +272,533 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph
** shifting non-terminals after a reduce.
** self::$yy_default Default action for each state.
*/
- const YY_SZ_ACTTAB = 1374;
+ const YY_SZ_ACTTAB = 1362;
static public $yy_action = array(
- /* 0 */ 66, 28, 24, 37, 120, 170, 18, 239, 238, 36,
- /* 10 */ 244, 245, 312, 364, 315, 200, 35, 61, 278, 78,
- /* 20 */ 310, 9, 85, 168, 156, 142, 313, 44, 157, 177,
- /* 30 */ 19, 100, 275, 252, 235, 10, 26, 13, 78, 185,
- /* 40 */ 240, 21, 201, 74, 42, 281, 69, 15, 49, 56,
- /* 50 */ 161, 49, 46, 225, 126, 243, 35, 221, 164, 240,
- /* 60 */ 190, 66, 53, 280, 33, 364, 170, 18, 224, 127,
- /* 70 */ 306, 244, 245, 112, 292, 299, 300, 11, 12, 284,
- /* 80 */ 291, 4, 2, 282, 283, 7, 8, 175, 502, 62,
- /* 90 */ 214, 265, 315, 200, 257, 249, 3, 78, 13, 35,
- /* 100 */ 220, 133, 197, 201, 74, 42, 236, 69, 224, 49,
- /* 110 */ 314, 252, 49, 46, 189, 66, 121, 229, 240, 45,
- /* 120 */ 170, 18, 172, 53, 280, 244, 245, 111, 292, 299,
- /* 130 */ 300, 11, 12, 284, 291, 4, 2, 282, 283, 7,
- /* 140 */ 8, 278, 301, 148, 315, 200, 312, 78, 40, 78,
- /* 150 */ 30, 224, 13, 211, 309, 275, 35, 201, 286, 42,
- /* 160 */ 313, 74, 172, 252, 216, 191, 49, 46, 240, 66,
- /* 170 */ 240, 74, 173, 153, 170, 18, 49, 53, 280, 244,
- /* 180 */ 245, 315, 200, 176, 61, 123, 78, 161, 232, 93,
- /* 190 */ 9, 34, 172, 203, 70, 188, 279, 21, 100, 360,
- /* 200 */ 252, 254, 255, 298, 10, 102, 13, 240, 224, 151,
- /* 210 */ 126, 201, 281, 42, 251, 76, 40, 21, 304, 278,
- /* 220 */ 49, 46, 25, 66, 35, 212, 71, 152, 170, 18,
- /* 230 */ 126, 53, 280, 244, 245, 271, 292, 299, 300, 11,
- /* 240 */ 12, 284, 291, 4, 2, 282, 283, 7, 8, 218,
- /* 250 */ 194, 172, 315, 200, 36, 172, 43, 78, 30, 27,
- /* 260 */ 13, 285, 170, 14, 228, 201, 270, 42, 190, 69,
- /* 270 */ 172, 252, 44, 307, 49, 46, 224, 66, 240, 161,
- /* 280 */ 147, 164, 170, 18, 161, 53, 280, 244, 245, 172,
- /* 290 */ 292, 299, 300, 11, 12, 284, 291, 4, 2, 282,
- /* 300 */ 283, 7, 8, 162, 261, 259, 179, 181, 260, 210,
- /* 310 */ 47, 266, 3, 35, 13, 267, 263, 170, 18, 201,
- /* 320 */ 110, 42, 297, 69, 151, 172, 208, 161, 49, 46,
- /* 330 */ 227, 66, 254, 255, 278, 164, 170, 18, 207, 53,
- /* 340 */ 280, 244, 245, 219, 136, 251, 66, 256, 27, 253,
- /* 350 */ 21, 170, 18, 31, 166, 32, 244, 245, 218, 96,
- /* 360 */ 161, 277, 161, 126, 63, 224, 3, 21, 13, 161,
- /* 370 */ 206, 170, 14, 201, 1, 42, 308, 69, 149, 209,
- /* 380 */ 126, 30, 49, 46, 234, 66, 305, 195, 201, 45,
- /* 390 */ 170, 18, 74, 53, 280, 244, 245, 49, 46, 272,
- /* 400 */ 66, 230, 295, 78, 160, 170, 18, 143, 53, 280,
- /* 410 */ 244, 245, 162, 172, 144, 161, 324, 16, 226, 47,
- /* 420 */ 30, 43, 13, 22, 240, 161, 122, 201, 186, 42,
- /* 430 */ 146, 74, 78, 161, 20, 30, 49, 46, 172, 66,
- /* 440 */ 278, 161, 201, 155, 170, 18, 74, 53, 280, 244,
- /* 450 */ 245, 49, 46, 240, 172, 362, 131, 293, 158, 17,
- /* 460 */ 39, 253, 53, 280, 288, 289, 318, 319, 302, 287,
- /* 470 */ 233, 303, 290, 118, 30, 217, 13, 150, 104, 276,
- /* 480 */ 119, 201, 145, 42, 74, 74, 294, 278, 285, 49,
- /* 490 */ 49, 46, 278, 66, 278, 247, 178, 160, 170, 18,
- /* 500 */ 35, 53, 280, 244, 245, 116, 161, 362, 275, 172,
- /* 510 */ 117, 66, 254, 255, 268, 198, 170, 18, 35, 78,
- /* 520 */ 38, 244, 245, 219, 278, 251, 48, 98, 30, 273,
- /* 530 */ 13, 172, 172, 65, 67, 201, 74, 42, 172, 69,
- /* 540 */ 240, 49, 161, 246, 49, 46, 30, 43, 13, 246,
- /* 550 */ 246, 154, 224, 201, 107, 53, 280, 74, 275, 231,
- /* 560 */ 151, 296, 49, 46, 264, 265, 172, 137, 278, 160,
- /* 570 */ 183, 38, 253, 53, 280, 58, 292, 299, 300, 11,
- /* 580 */ 12, 284, 291, 4, 2, 282, 283, 7, 8, 97,
- /* 590 */ 64, 39, 151, 106, 99, 288, 289, 318, 319, 302,
- /* 600 */ 287, 233, 303, 290, 55, 246, 246, 278, 315, 200,
- /* 610 */ 246, 61, 139, 78, 222, 169, 92, 253, 29, 184,
- /* 620 */ 75, 223, 188, 279, 5, 100, 23, 252, 72, 248,
- /* 630 */ 232, 325, 81, 271, 240, 315, 200, 161, 59, 281,
- /* 640 */ 78, 19, 54, 84, 204, 215, 237, 171, 202, 188,
- /* 650 */ 279, 15, 100, 51, 252, 315, 200, 250, 61, 140,
- /* 660 */ 78, 240, 205, 82, 180, 262, 281, 165, 323, 188,
- /* 670 */ 279, 174, 100, 258, 252, 315, 200, 196, 61, 241,
- /* 680 */ 78, 240, 182, 90, 242, 193, 281, 269, 232, 188,
- /* 690 */ 279, 41, 100, 256, 252, 6, 311, 315, 200, 172,
- /* 700 */ 60, 240, 78, 292, 187, 83, 281, 79, 125, 292,
- /* 710 */ 292, 188, 279, 292, 100, 292, 252, 292, 292, 292,
- /* 720 */ 292, 292, 292, 240, 292, 292, 292, 292, 281, 39,
- /* 730 */ 292, 292, 292, 288, 289, 318, 319, 302, 287, 233,
- /* 740 */ 303, 290, 292, 292, 315, 200, 292, 105, 292, 78,
- /* 750 */ 292, 292, 292, 292, 292, 292, 292, 292, 274, 279,
- /* 760 */ 292, 100, 292, 252, 292, 292, 292, 292, 315, 200,
- /* 770 */ 240, 61, 292, 78, 292, 161, 87, 292, 163, 320,
- /* 780 */ 292, 292, 188, 279, 292, 100, 292, 252, 292, 292,
- /* 790 */ 315, 200, 292, 61, 240, 78, 292, 292, 86, 281,
- /* 800 */ 292, 292, 292, 292, 188, 279, 292, 100, 292, 252,
- /* 810 */ 292, 292, 315, 200, 292, 61, 240, 78, 292, 292,
- /* 820 */ 91, 281, 292, 292, 292, 292, 188, 279, 292, 100,
- /* 830 */ 292, 252, 292, 292, 292, 292, 315, 200, 240, 61,
- /* 840 */ 292, 78, 292, 281, 89, 292, 292, 292, 292, 292,
- /* 850 */ 188, 279, 292, 100, 292, 252, 315, 200, 292, 61,
- /* 860 */ 292, 78, 240, 292, 88, 292, 292, 281, 292, 292,
- /* 870 */ 188, 279, 292, 100, 292, 252, 315, 200, 292, 109,
- /* 880 */ 292, 78, 240, 292, 292, 292, 292, 281, 292, 292,
- /* 890 */ 274, 279, 292, 100, 292, 252, 292, 292, 292, 322,
- /* 900 */ 292, 292, 240, 292, 315, 68, 292, 50, 80, 73,
- /* 910 */ 292, 292, 292, 292, 292, 292, 292, 292, 274, 279,
- /* 920 */ 292, 100, 292, 252, 292, 292, 292, 292, 315, 200,
- /* 930 */ 240, 57, 77, 78, 315, 200, 292, 138, 213, 78,
- /* 940 */ 292, 292, 274, 279, 292, 100, 292, 252, 159, 279,
- /* 950 */ 292, 100, 292, 252, 240, 292, 292, 292, 292, 292,
- /* 960 */ 240, 292, 292, 292, 292, 315, 200, 292, 105, 292,
- /* 970 */ 78, 315, 68, 292, 52, 80, 73, 292, 292, 274,
- /* 980 */ 279, 292, 100, 292, 252, 274, 279, 292, 100, 292,
- /* 990 */ 252, 240, 292, 292, 292, 292, 292, 240, 292, 292,
- /* 1000 */ 321, 315, 200, 292, 109, 292, 78, 292, 292, 292,
- /* 1010 */ 292, 292, 292, 292, 292, 274, 279, 292, 100, 292,
- /* 1020 */ 252, 292, 292, 292, 167, 315, 200, 240, 109, 292,
- /* 1030 */ 78, 292, 292, 292, 292, 292, 292, 292, 292, 274,
- /* 1040 */ 279, 292, 100, 292, 252, 292, 292, 292, 192, 315,
- /* 1050 */ 200, 240, 109, 292, 78, 292, 292, 292, 292, 292,
- /* 1060 */ 292, 292, 292, 274, 279, 292, 100, 292, 252, 292,
- /* 1070 */ 292, 292, 199, 292, 292, 240, 292, 292, 315, 200,
- /* 1080 */ 292, 124, 292, 78, 315, 200, 292, 135, 292, 78,
- /* 1090 */ 292, 292, 274, 279, 292, 100, 292, 252, 274, 279,
- /* 1100 */ 292, 100, 292, 252, 240, 292, 315, 200, 292, 134,
- /* 1110 */ 240, 78, 292, 292, 292, 292, 292, 292, 292, 292,
- /* 1120 */ 274, 279, 292, 100, 292, 252, 315, 200, 292, 114,
- /* 1130 */ 292, 78, 240, 292, 292, 292, 292, 292, 292, 292,
- /* 1140 */ 274, 279, 292, 100, 292, 252, 315, 200, 292, 141,
- /* 1150 */ 292, 78, 240, 292, 292, 292, 292, 292, 292, 292,
- /* 1160 */ 274, 279, 292, 100, 292, 252, 292, 292, 292, 292,
- /* 1170 */ 315, 200, 240, 113, 292, 78, 315, 200, 292, 129,
- /* 1180 */ 292, 78, 292, 292, 274, 279, 292, 100, 292, 252,
- /* 1190 */ 274, 279, 292, 100, 292, 252, 240, 292, 315, 200,
- /* 1200 */ 292, 108, 240, 78, 315, 200, 292, 103, 292, 78,
- /* 1210 */ 292, 292, 274, 279, 292, 100, 292, 252, 274, 279,
- /* 1220 */ 292, 100, 292, 252, 240, 292, 292, 292, 292, 292,
- /* 1230 */ 240, 292, 292, 292, 292, 292, 292, 292, 315, 200,
- /* 1240 */ 292, 128, 292, 78, 292, 292, 292, 292, 292, 292,
- /* 1250 */ 292, 292, 274, 279, 292, 100, 292, 252, 292, 292,
- /* 1260 */ 292, 292, 315, 200, 240, 132, 292, 78, 315, 200,
- /* 1270 */ 292, 115, 292, 78, 292, 292, 274, 279, 292, 100,
- /* 1280 */ 292, 252, 274, 279, 292, 100, 292, 252, 240, 292,
- /* 1290 */ 315, 200, 292, 130, 240, 78, 315, 200, 292, 292,
- /* 1300 */ 292, 78, 292, 292, 274, 279, 292, 100, 292, 252,
- /* 1310 */ 274, 279, 292, 95, 292, 252, 240, 292, 292, 315,
- /* 1320 */ 200, 292, 240, 292, 78, 292, 292, 292, 292, 292,
- /* 1330 */ 292, 292, 292, 274, 279, 292, 101, 292, 252, 292,
- /* 1340 */ 292, 315, 200, 292, 292, 240, 78, 315, 200, 292,
- /* 1350 */ 292, 292, 78, 292, 292, 274, 279, 292, 94, 292,
- /* 1360 */ 252, 317, 316, 292, 292, 292, 252, 240, 292, 292,
- /* 1370 */ 292, 292, 292, 240,
+ /* 0 */ 21, 32, 204, 161, 211, 168, 148, 69, 285, 177,
+ /* 10 */ 187, 166, 1, 40, 3, 32, 113, 31, 211, 51,
+ /* 20 */ 171, 20, 237, 244, 299, 46, 103, 21, 47, 13,
+ /* 30 */ 152, 210, 8, 111, 76, 19, 162, 187, 162, 243,
+ /* 40 */ 40, 33, 199, 242, 238, 187, 51, 171, 109, 237,
+ /* 50 */ 244, 299, 46, 112, 213, 47, 13, 212, 21, 243,
+ /* 60 */ 200, 151, 266, 242, 238, 72, 348, 14, 187, 283,
+ /* 70 */ 348, 40, 3, 192, 63, 267, 202, 51, 171, 20,
+ /* 80 */ 237, 244, 299, 46, 20, 21, 47, 13, 161, 218,
+ /* 90 */ 8, 111, 69, 53, 215, 187, 111, 165, 40, 33,
+ /* 100 */ 477, 62, 203, 256, 51, 171, 173, 237, 244, 299,
+ /* 110 */ 46, 216, 21, 47, 13, 45, 138, 28, 22, 69,
+ /* 120 */ 101, 141, 187, 197, 76, 40, 12, 76, 274, 124,
+ /* 130 */ 220, 51, 171, 147, 237, 244, 299, 46, 162, 14,
+ /* 140 */ 47, 13, 243, 266, 162, 47, 242, 238, 47, 6,
+ /* 150 */ 5, 271, 272, 4, 2, 273, 279, 7, 9, 189,
+ /* 160 */ 257, 174, 251, 250, 183, 249, 21, 254, 284, 280,
+ /* 170 */ 287, 288, 32, 150, 31, 211, 187, 80, 6, 5,
+ /* 180 */ 271, 272, 4, 2, 273, 279, 7, 9, 32, 55,
+ /* 190 */ 34, 211, 289, 225, 255, 256, 217, 233, 280, 287,
+ /* 200 */ 288, 6, 5, 271, 272, 4, 2, 273, 279, 7,
+ /* 210 */ 9, 6, 5, 271, 272, 4, 2, 273, 279, 7,
+ /* 220 */ 9, 280, 287, 288, 210, 35, 214, 21, 19, 26,
+ /* 230 */ 156, 280, 287, 288, 76, 147, 32, 187, 187, 211,
+ /* 240 */ 40, 33, 32, 207, 162, 211, 51, 171, 162, 237,
+ /* 250 */ 244, 299, 46, 222, 21, 47, 13, 159, 344, 20,
+ /* 260 */ 23, 76, 192, 199, 187, 260, 181, 40, 33, 184,
+ /* 270 */ 192, 111, 58, 51, 171, 201, 237, 244, 299, 46,
+ /* 280 */ 170, 21, 47, 13, 153, 300, 53, 215, 69, 192,
+ /* 290 */ 44, 187, 260, 296, 40, 33, 162, 192, 36, 110,
+ /* 300 */ 51, 171, 216, 237, 244, 299, 46, 192, 21, 47,
+ /* 310 */ 13, 161, 120, 20, 38, 69, 261, 269, 187, 136,
+ /* 320 */ 80, 40, 12, 162, 128, 111, 266, 51, 171, 239,
+ /* 330 */ 237, 244, 299, 46, 147, 21, 47, 13, 159, 267,
+ /* 340 */ 233, 164, 76, 32, 180, 187, 211, 140, 80, 33,
+ /* 350 */ 247, 241, 246, 27, 51, 171, 24, 237, 244, 299,
+ /* 360 */ 46, 259, 229, 47, 13, 192, 80, 16, 233, 162,
+ /* 370 */ 6, 5, 271, 272, 4, 2, 273, 279, 7, 9,
+ /* 380 */ 43, 162, 43, 286, 252, 104, 233, 192, 192, 144,
+ /* 390 */ 280, 287, 288, 295, 195, 29, 61, 44, 80, 266,
+ /* 400 */ 105, 82, 176, 158, 145, 36, 21, 157, 191, 154,
+ /* 410 */ 100, 193, 245, 76, 266, 80, 187, 346, 233, 213,
+ /* 420 */ 33, 346, 162, 270, 32, 51, 171, 178, 237, 244,
+ /* 430 */ 299, 46, 196, 21, 47, 233, 159, 126, 292, 127,
+ /* 440 */ 76, 147, 192, 187, 246, 169, 119, 33, 162, 267,
+ /* 450 */ 39, 266, 51, 171, 205, 237, 244, 299, 46, 274,
+ /* 460 */ 266, 47, 303, 304, 305, 226, 291, 290, 276, 277,
+ /* 470 */ 278, 262, 297, 267, 125, 162, 192, 39, 146, 293,
+ /* 480 */ 41, 281, 294, 192, 149, 192, 192, 38, 266, 303,
+ /* 490 */ 304, 305, 226, 291, 290, 276, 277, 278, 295, 195,
+ /* 500 */ 265, 61, 18, 80, 192, 282, 88, 209, 15, 192,
+ /* 510 */ 43, 123, 198, 298, 162, 100, 122, 245, 76, 295,
+ /* 520 */ 195, 308, 61, 233, 80, 266, 135, 92, 270, 52,
+ /* 530 */ 266, 246, 118, 198, 298, 68, 100, 192, 245, 47,
+ /* 540 */ 295, 195, 175, 61, 233, 80, 266, 131, 90, 270,
+ /* 550 */ 240, 182, 246, 98, 198, 298, 133, 100, 64, 245,
+ /* 560 */ 57, 295, 195, 162, 61, 233, 80, 185, 240, 86,
+ /* 570 */ 270, 208, 268, 240, 37, 198, 298, 232, 100, 224,
+ /* 580 */ 245, 76, 188, 236, 295, 195, 233, 61, 221, 80,
+ /* 590 */ 302, 270, 89, 30, 194, 73, 231, 227, 198, 298,
+ /* 600 */ 65, 100, 47, 245, 16, 295, 195, 77, 59, 233,
+ /* 610 */ 80, 253, 235, 83, 270, 240, 48, 234, 97, 198,
+ /* 620 */ 298, 96, 100, 41, 245, 311, 295, 195, 167, 61,
+ /* 630 */ 233, 80, 248, 240, 93, 270, 240, 70, 25, 228,
+ /* 640 */ 198, 298, 71, 100, 247, 245, 163, 295, 195, 179,
+ /* 650 */ 61, 233, 80, 260, 223, 87, 270, 216, 258, 108,
+ /* 660 */ 192, 198, 298, 42, 100, 81, 245, 74, 10, 11,
+ /* 670 */ 295, 195, 233, 60, 49, 80, 17, 270, 84, 273,
+ /* 680 */ 273, 219, 273, 273, 198, 298, 273, 100, 273, 245,
+ /* 690 */ 273, 295, 195, 273, 61, 233, 80, 273, 273, 85,
+ /* 700 */ 270, 273, 273, 273, 273, 198, 298, 273, 100, 273,
+ /* 710 */ 245, 273, 295, 195, 273, 116, 233, 80, 273, 273,
+ /* 720 */ 273, 270, 273, 273, 273, 273, 264, 298, 273, 100,
+ /* 730 */ 273, 245, 273, 162, 273, 39, 273, 233, 273, 273,
+ /* 740 */ 273, 273, 273, 273, 273, 160, 310, 303, 304, 305,
+ /* 750 */ 226, 291, 290, 276, 277, 278, 295, 195, 273, 61,
+ /* 760 */ 273, 80, 273, 273, 91, 273, 273, 273, 273, 273,
+ /* 770 */ 198, 298, 273, 100, 273, 245, 273, 295, 195, 273,
+ /* 780 */ 116, 233, 80, 273, 295, 195, 270, 56, 78, 80,
+ /* 790 */ 273, 264, 298, 273, 100, 273, 245, 273, 264, 298,
+ /* 800 */ 273, 100, 233, 245, 273, 273, 273, 273, 273, 233,
+ /* 810 */ 273, 309, 273, 273, 273, 273, 273, 295, 195, 273,
+ /* 820 */ 130, 206, 80, 273, 295, 195, 273, 102, 273, 80,
+ /* 830 */ 273, 155, 298, 273, 100, 273, 245, 273, 264, 298,
+ /* 840 */ 273, 100, 233, 245, 273, 273, 301, 295, 66, 233,
+ /* 850 */ 50, 79, 75, 273, 295, 195, 273, 102, 273, 80,
+ /* 860 */ 273, 264, 298, 273, 100, 273, 245, 273, 264, 298,
+ /* 870 */ 273, 100, 233, 245, 273, 273, 172, 273, 273, 233,
+ /* 880 */ 273, 295, 67, 273, 54, 79, 75, 273, 273, 295,
+ /* 890 */ 195, 273, 273, 273, 80, 264, 298, 273, 100, 273,
+ /* 900 */ 245, 273, 273, 230, 295, 195, 233, 102, 245, 80,
+ /* 910 */ 273, 273, 273, 273, 233, 273, 273, 273, 264, 298,
+ /* 920 */ 273, 100, 273, 245, 273, 273, 190, 295, 195, 233,
+ /* 930 */ 102, 273, 80, 273, 273, 273, 273, 273, 273, 273,
+ /* 940 */ 273, 264, 298, 273, 100, 273, 245, 273, 273, 186,
+ /* 950 */ 273, 273, 233, 295, 195, 273, 142, 273, 80, 273,
+ /* 960 */ 273, 295, 195, 273, 273, 273, 80, 264, 298, 273,
+ /* 970 */ 100, 273, 245, 273, 273, 263, 295, 195, 233, 107,
+ /* 980 */ 245, 80, 273, 273, 273, 273, 233, 273, 273, 273,
+ /* 990 */ 264, 298, 273, 100, 273, 245, 273, 273, 273, 295,
+ /* 1000 */ 195, 233, 143, 273, 80, 273, 273, 273, 273, 273,
+ /* 1010 */ 273, 273, 273, 264, 298, 273, 100, 273, 245, 273,
+ /* 1020 */ 273, 273, 273, 273, 233, 295, 195, 273, 134, 273,
+ /* 1030 */ 80, 273, 273, 295, 195, 273, 273, 273, 80, 264,
+ /* 1040 */ 298, 273, 100, 273, 245, 273, 273, 275, 295, 195,
+ /* 1050 */ 233, 114, 245, 80, 273, 273, 273, 273, 233, 273,
+ /* 1060 */ 273, 273, 264, 298, 273, 100, 273, 245, 273, 273,
+ /* 1070 */ 273, 295, 195, 233, 117, 273, 80, 273, 273, 273,
+ /* 1080 */ 273, 273, 273, 273, 273, 264, 298, 273, 100, 273,
+ /* 1090 */ 245, 273, 273, 273, 273, 273, 233, 295, 195, 273,
+ /* 1100 */ 115, 273, 80, 273, 273, 273, 273, 273, 273, 273,
+ /* 1110 */ 273, 264, 298, 273, 100, 273, 245, 273, 273, 273,
+ /* 1120 */ 295, 195, 233, 139, 273, 80, 273, 273, 273, 273,
+ /* 1130 */ 273, 273, 273, 273, 264, 298, 273, 100, 273, 245,
+ /* 1140 */ 273, 273, 273, 295, 195, 233, 132, 273, 80, 273,
+ /* 1150 */ 273, 273, 273, 273, 273, 273, 273, 264, 298, 273,
+ /* 1160 */ 100, 273, 245, 273, 273, 273, 273, 273, 233, 295,
+ /* 1170 */ 195, 273, 129, 273, 80, 273, 273, 273, 273, 273,
+ /* 1180 */ 273, 273, 273, 264, 298, 273, 100, 273, 245, 273,
+ /* 1190 */ 273, 273, 295, 195, 233, 106, 273, 80, 273, 273,
+ /* 1200 */ 273, 273, 273, 273, 273, 273, 264, 298, 273, 100,
+ /* 1210 */ 273, 245, 273, 273, 273, 295, 195, 233, 121, 273,
+ /* 1220 */ 80, 273, 273, 273, 273, 273, 273, 273, 273, 264,
+ /* 1230 */ 298, 273, 100, 273, 245, 273, 273, 273, 273, 273,
+ /* 1240 */ 233, 295, 195, 273, 137, 273, 80, 273, 273, 273,
+ /* 1250 */ 273, 273, 273, 273, 273, 264, 298, 273, 100, 273,
+ /* 1260 */ 245, 273, 273, 273, 295, 195, 233, 273, 273, 80,
+ /* 1270 */ 273, 273, 273, 273, 273, 273, 273, 273, 264, 298,
+ /* 1280 */ 273, 94, 273, 245, 273, 273, 273, 295, 195, 233,
+ /* 1290 */ 273, 273, 80, 273, 273, 273, 273, 273, 273, 273,
+ /* 1300 */ 273, 264, 298, 273, 99, 273, 245, 273, 273, 273,
+ /* 1310 */ 273, 273, 233, 295, 195, 273, 273, 273, 80, 273,
+ /* 1320 */ 273, 273, 273, 273, 273, 273, 273, 264, 298, 273,
+ /* 1330 */ 95, 273, 245, 273, 273, 273, 295, 195, 233, 273,
+ /* 1340 */ 273, 80, 273, 273, 273, 273, 273, 273, 273, 273,
+ /* 1350 */ 306, 307, 273, 273, 273, 245, 273, 273, 273, 273,
+ /* 1360 */ 273, 233,
);
static public $yy_lookahead = array(
- /* 0 */ 9, 15, 70, 15, 79, 14, 15, 19, 20, 46,
- /* 10 */ 19, 20, 1, 16, 77, 78, 15, 80, 93, 82,
- /* 20 */ 9, 30, 85, 86, 87, 84, 15, 64, 91, 92,
- /* 30 */ 44, 94, 107, 96, 78, 44, 49, 46, 82, 51,
- /* 40 */ 103, 44, 51, 55, 53, 108, 55, 50, 60, 84,
- /* 50 */ 63, 60, 61, 1, 57, 67, 15, 16, 67, 103,
- /* 60 */ 59, 9, 71, 72, 15, 68, 14, 15, 67, 102,
- /* 70 */ 16, 19, 20, 102, 31, 32, 33, 34, 35, 36,
- /* 80 */ 37, 38, 39, 40, 41, 42, 43, 59, 74, 75,
- /* 90 */ 76, 77, 77, 78, 67, 67, 44, 82, 46, 15,
- /* 100 */ 16, 58, 55, 51, 55, 53, 91, 55, 67, 60,
- /* 110 */ 16, 96, 60, 61, 67, 9, 67, 1, 103, 67,
- /* 120 */ 14, 15, 68, 71, 72, 19, 20, 79, 31, 32,
- /* 130 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- /* 140 */ 43, 93, 45, 78, 77, 78, 1, 82, 69, 82,
- /* 150 */ 44, 67, 46, 47, 9, 107, 15, 51, 91, 53,
- /* 160 */ 15, 55, 68, 96, 99, 18, 60, 61, 103, 9,
- /* 170 */ 103, 55, 48, 67, 14, 15, 60, 71, 72, 19,
- /* 180 */ 20, 77, 78, 67, 80, 102, 82, 63, 105, 85,
- /* 190 */ 30, 50, 68, 52, 55, 91, 92, 44, 94, 16,
- /* 200 */ 96, 53, 54, 16, 44, 79, 46, 103, 67, 83,
- /* 210 */ 57, 51, 108, 53, 66, 55, 69, 44, 16, 93,
- /* 220 */ 60, 61, 49, 9, 15, 45, 55, 67, 14, 15,
- /* 230 */ 57, 71, 72, 19, 20, 52, 31, 32, 33, 34,
- /* 240 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 1,
- /* 250 */ 45, 68, 77, 78, 46, 68, 48, 82, 44, 50,
- /* 260 */ 46, 45, 14, 15, 1, 51, 91, 53, 59, 55,
- /* 270 */ 68, 96, 64, 16, 60, 61, 67, 9, 103, 63,
- /* 280 */ 16, 67, 14, 15, 63, 71, 72, 19, 20, 68,
- /* 290 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
- /* 300 */ 41, 42, 43, 55, 1, 2, 3, 4, 5, 61,
- /* 310 */ 62, 8, 44, 15, 46, 12, 13, 14, 15, 51,
- /* 320 */ 79, 53, 16, 55, 83, 68, 47, 63, 60, 61,
- /* 330 */ 67, 9, 53, 54, 93, 67, 14, 15, 47, 71,
- /* 340 */ 72, 19, 20, 77, 101, 66, 9, 104, 50, 106,
- /* 350 */ 44, 14, 15, 56, 48, 56, 19, 20, 1, 97,
- /* 360 */ 63, 16, 63, 57, 98, 67, 44, 44, 46, 63,
- /* 370 */ 47, 14, 15, 51, 68, 53, 114, 55, 16, 113,
- /* 380 */ 57, 44, 60, 61, 67, 9, 16, 64, 51, 67,
- /* 390 */ 14, 15, 55, 71, 72, 19, 20, 60, 61, 78,
- /* 400 */ 9, 62, 16, 82, 67, 14, 15, 58, 71, 72,
- /* 410 */ 19, 20, 55, 68, 65, 63, 47, 65, 61, 62,
- /* 420 */ 44, 48, 46, 50, 103, 63, 79, 51, 78, 53,
- /* 430 */ 83, 55, 82, 63, 65, 44, 60, 61, 68, 9,
- /* 440 */ 93, 63, 51, 67, 14, 15, 55, 71, 72, 19,
- /* 450 */ 20, 60, 61, 103, 68, 16, 101, 16, 67, 44,
- /* 460 */ 17, 106, 71, 72, 21, 22, 23, 24, 25, 26,
- /* 470 */ 27, 28, 29, 79, 44, 16, 46, 83, 79, 16,
- /* 480 */ 79, 51, 83, 53, 55, 55, 16, 93, 45, 60,
- /* 490 */ 60, 61, 93, 9, 93, 16, 67, 67, 14, 15,
- /* 500 */ 15, 71, 72, 19, 20, 102, 63, 68, 107, 68,
- /* 510 */ 79, 9, 53, 54, 16, 78, 14, 15, 15, 82,
- /* 520 */ 56, 19, 20, 77, 93, 66, 102, 89, 44, 106,
- /* 530 */ 46, 68, 68, 89, 89, 51, 55, 53, 68, 55,
- /* 540 */ 103, 60, 63, 105, 60, 61, 44, 48, 46, 105,
- /* 550 */ 105, 67, 67, 51, 79, 71, 72, 55, 107, 113,
- /* 560 */ 83, 16, 60, 61, 76, 77, 68, 101, 93, 67,
- /* 570 */ 67, 56, 106, 71, 72, 84, 31, 32, 33, 34,
- /* 580 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 89,
- /* 590 */ 89, 17, 83, 79, 89, 21, 22, 23, 24, 25,
- /* 600 */ 26, 27, 28, 29, 84, 105, 105, 93, 77, 78,
- /* 610 */ 105, 80, 101, 82, 86, 90, 85, 106, 109, 45,
- /* 620 */ 55, 68, 91, 92, 88, 94, 70, 96, 55, 67,
- /* 630 */ 105, 16, 45, 52, 103, 77, 78, 63, 80, 108,
- /* 640 */ 82, 44, 67, 85, 16, 16, 51, 67, 64, 91,
- /* 650 */ 92, 50, 94, 67, 96, 77, 78, 67, 80, 67,
- /* 660 */ 82, 103, 62, 85, 1, 5, 108, 56, 45, 91,
- /* 670 */ 92, 67, 94, 5, 96, 77, 78, 18, 80, 60,
- /* 680 */ 82, 103, 1, 85, 60, 67, 108, 93, 105, 91,
- /* 690 */ 92, 95, 94, 104, 96, 110, 114, 77, 78, 68,
- /* 700 */ 80, 103, 82, 115, 88, 85, 108, 99, 102, 115,
- /* 710 */ 115, 91, 92, 115, 94, 115, 96, 115, 115, 115,
- /* 720 */ 115, 115, 115, 103, 115, 115, 115, 115, 108, 17,
- /* 730 */ 115, 115, 115, 21, 22, 23, 24, 25, 26, 27,
- /* 740 */ 28, 29, 115, 115, 77, 78, 115, 80, 115, 82,
- /* 750 */ 115, 115, 115, 115, 115, 115, 115, 115, 91, 92,
- /* 760 */ 115, 94, 115, 96, 115, 115, 115, 115, 77, 78,
- /* 770 */ 103, 80, 115, 82, 115, 63, 85, 115, 111, 112,
- /* 780 */ 115, 115, 91, 92, 115, 94, 115, 96, 115, 115,
- /* 790 */ 77, 78, 115, 80, 103, 82, 115, 115, 85, 108,
- /* 800 */ 115, 115, 115, 115, 91, 92, 115, 94, 115, 96,
- /* 810 */ 115, 115, 77, 78, 115, 80, 103, 82, 115, 115,
- /* 820 */ 85, 108, 115, 115, 115, 115, 91, 92, 115, 94,
- /* 830 */ 115, 96, 115, 115, 115, 115, 77, 78, 103, 80,
- /* 840 */ 115, 82, 115, 108, 85, 115, 115, 115, 115, 115,
- /* 850 */ 91, 92, 115, 94, 115, 96, 77, 78, 115, 80,
- /* 860 */ 115, 82, 103, 115, 85, 115, 115, 108, 115, 115,
- /* 870 */ 91, 92, 115, 94, 115, 96, 77, 78, 115, 80,
- /* 880 */ 115, 82, 103, 115, 115, 115, 115, 108, 115, 115,
- /* 890 */ 91, 92, 115, 94, 115, 96, 115, 115, 115, 100,
- /* 900 */ 115, 115, 103, 115, 77, 78, 115, 80, 81, 82,
- /* 910 */ 115, 115, 115, 115, 115, 115, 115, 115, 91, 92,
- /* 920 */ 115, 94, 115, 96, 115, 115, 115, 115, 77, 78,
- /* 930 */ 103, 80, 81, 82, 77, 78, 115, 80, 81, 82,
- /* 940 */ 115, 115, 91, 92, 115, 94, 115, 96, 91, 92,
- /* 950 */ 115, 94, 115, 96, 103, 115, 115, 115, 115, 115,
- /* 960 */ 103, 115, 115, 115, 115, 77, 78, 115, 80, 115,
- /* 970 */ 82, 77, 78, 115, 80, 81, 82, 115, 115, 91,
- /* 980 */ 92, 115, 94, 115, 96, 91, 92, 115, 94, 115,
- /* 990 */ 96, 103, 115, 115, 115, 115, 115, 103, 115, 115,
- /* 1000 */ 112, 77, 78, 115, 80, 115, 82, 115, 115, 115,
- /* 1010 */ 115, 115, 115, 115, 115, 91, 92, 115, 94, 115,
- /* 1020 */ 96, 115, 115, 115, 100, 77, 78, 103, 80, 115,
- /* 1030 */ 82, 115, 115, 115, 115, 115, 115, 115, 115, 91,
- /* 1040 */ 92, 115, 94, 115, 96, 115, 115, 115, 100, 77,
- /* 1050 */ 78, 103, 80, 115, 82, 115, 115, 115, 115, 115,
- /* 1060 */ 115, 115, 115, 91, 92, 115, 94, 115, 96, 115,
- /* 1070 */ 115, 115, 100, 115, 115, 103, 115, 115, 77, 78,
- /* 1080 */ 115, 80, 115, 82, 77, 78, 115, 80, 115, 82,
- /* 1090 */ 115, 115, 91, 92, 115, 94, 115, 96, 91, 92,
- /* 1100 */ 115, 94, 115, 96, 103, 115, 77, 78, 115, 80,
- /* 1110 */ 103, 82, 115, 115, 115, 115, 115, 115, 115, 115,
- /* 1120 */ 91, 92, 115, 94, 115, 96, 77, 78, 115, 80,
- /* 1130 */ 115, 82, 103, 115, 115, 115, 115, 115, 115, 115,
- /* 1140 */ 91, 92, 115, 94, 115, 96, 77, 78, 115, 80,
- /* 1150 */ 115, 82, 103, 115, 115, 115, 115, 115, 115, 115,
- /* 1160 */ 91, 92, 115, 94, 115, 96, 115, 115, 115, 115,
- /* 1170 */ 77, 78, 103, 80, 115, 82, 77, 78, 115, 80,
- /* 1180 */ 115, 82, 115, 115, 91, 92, 115, 94, 115, 96,
- /* 1190 */ 91, 92, 115, 94, 115, 96, 103, 115, 77, 78,
- /* 1200 */ 115, 80, 103, 82, 77, 78, 115, 80, 115, 82,
- /* 1210 */ 115, 115, 91, 92, 115, 94, 115, 96, 91, 92,
- /* 1220 */ 115, 94, 115, 96, 103, 115, 115, 115, 115, 115,
- /* 1230 */ 103, 115, 115, 115, 115, 115, 115, 115, 77, 78,
- /* 1240 */ 115, 80, 115, 82, 115, 115, 115, 115, 115, 115,
- /* 1250 */ 115, 115, 91, 92, 115, 94, 115, 96, 115, 115,
- /* 1260 */ 115, 115, 77, 78, 103, 80, 115, 82, 77, 78,
- /* 1270 */ 115, 80, 115, 82, 115, 115, 91, 92, 115, 94,
- /* 1280 */ 115, 96, 91, 92, 115, 94, 115, 96, 103, 115,
- /* 1290 */ 77, 78, 115, 80, 103, 82, 77, 78, 115, 115,
- /* 1300 */ 115, 82, 115, 115, 91, 92, 115, 94, 115, 96,
- /* 1310 */ 91, 92, 115, 94, 115, 96, 103, 115, 115, 77,
- /* 1320 */ 78, 115, 103, 115, 82, 115, 115, 115, 115, 115,
- /* 1330 */ 115, 115, 115, 91, 92, 115, 94, 115, 96, 115,
- /* 1340 */ 115, 77, 78, 115, 115, 103, 82, 77, 78, 115,
- /* 1350 */ 115, 115, 82, 115, 115, 91, 92, 115, 94, 115,
- /* 1360 */ 96, 91, 92, 115, 115, 115, 96, 103, 115, 115,
- /* 1370 */ 115, 115, 115, 103,
+ /* 0 */ 7, 7, 8, 10, 10, 10, 8, 14, 8, 14,
+ /* 10 */ 17, 11, 12, 20, 21, 7, 95, 9, 10, 26,
+ /* 20 */ 27, 21, 29, 30, 31, 32, 95, 7, 35, 36,
+ /* 30 */ 10, 3, 39, 33, 14, 7, 38, 17, 38, 20,
+ /* 40 */ 20, 21, 34, 24, 25, 17, 26, 27, 73, 29,
+ /* 50 */ 30, 31, 32, 95, 71, 35, 36, 37, 7, 20,
+ /* 60 */ 32, 10, 87, 24, 25, 14, 8, 9, 17, 8,
+ /* 70 */ 12, 20, 21, 12, 91, 100, 37, 26, 27, 21,
+ /* 80 */ 29, 30, 31, 32, 21, 7, 35, 36, 10, 106,
+ /* 90 */ 39, 33, 14, 65, 66, 17, 33, 84, 20, 21,
+ /* 100 */ 68, 69, 70, 71, 26, 27, 10, 29, 30, 31,
+ /* 110 */ 32, 98, 7, 35, 36, 10, 78, 7, 18, 14,
+ /* 120 */ 10, 13, 17, 10, 14, 20, 21, 14, 22, 73,
+ /* 130 */ 8, 26, 27, 77, 29, 30, 31, 32, 38, 9,
+ /* 140 */ 35, 36, 20, 87, 38, 35, 24, 25, 35, 41,
+ /* 150 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 22,
+ /* 160 */ 1, 2, 3, 4, 5, 6, 7, 4, 8, 61,
+ /* 170 */ 62, 63, 7, 72, 9, 10, 17, 76, 41, 42,
+ /* 180 */ 43, 44, 45, 46, 47, 48, 49, 50, 7, 78,
+ /* 190 */ 9, 10, 22, 92, 70, 71, 15, 96, 61, 62,
+ /* 200 */ 63, 41, 42, 43, 44, 45, 46, 47, 48, 49,
+ /* 210 */ 50, 41, 42, 43, 44, 45, 46, 47, 48, 49,
+ /* 220 */ 50, 61, 62, 63, 3, 19, 65, 7, 7, 19,
+ /* 230 */ 10, 61, 62, 63, 14, 77, 7, 17, 17, 10,
+ /* 240 */ 20, 21, 7, 8, 38, 10, 26, 27, 38, 29,
+ /* 250 */ 30, 31, 32, 32, 7, 35, 36, 10, 8, 21,
+ /* 260 */ 102, 14, 12, 34, 17, 15, 28, 20, 21, 11,
+ /* 270 */ 12, 33, 78, 26, 27, 37, 29, 30, 31, 32,
+ /* 280 */ 10, 7, 35, 36, 10, 8, 65, 66, 14, 12,
+ /* 290 */ 28, 17, 15, 8, 20, 21, 38, 12, 36, 95,
+ /* 300 */ 26, 27, 98, 29, 30, 31, 32, 12, 7, 35,
+ /* 310 */ 36, 10, 73, 21, 19, 14, 72, 10, 17, 13,
+ /* 320 */ 76, 20, 21, 38, 18, 33, 87, 26, 27, 10,
+ /* 330 */ 29, 30, 31, 32, 77, 7, 35, 36, 10, 100,
+ /* 340 */ 96, 34, 14, 7, 72, 17, 10, 94, 76, 21,
+ /* 350 */ 97, 8, 99, 7, 26, 27, 64, 29, 30, 31,
+ /* 360 */ 32, 8, 72, 35, 36, 12, 76, 21, 96, 38,
+ /* 370 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
+ /* 380 */ 11, 38, 11, 8, 8, 73, 96, 12, 12, 77,
+ /* 390 */ 61, 62, 63, 71, 72, 64, 74, 28, 76, 87,
+ /* 400 */ 73, 79, 80, 81, 77, 36, 7, 85, 86, 10,
+ /* 410 */ 88, 72, 90, 14, 87, 76, 17, 8, 96, 71,
+ /* 420 */ 21, 12, 38, 101, 7, 26, 27, 10, 29, 30,
+ /* 430 */ 31, 32, 22, 7, 35, 96, 10, 73, 8, 94,
+ /* 440 */ 14, 77, 12, 17, 99, 16, 73, 21, 38, 100,
+ /* 450 */ 40, 87, 26, 27, 106, 29, 30, 31, 32, 22,
+ /* 460 */ 87, 35, 52, 53, 54, 55, 56, 57, 58, 59,
+ /* 470 */ 60, 99, 8, 100, 73, 38, 12, 40, 77, 8,
+ /* 480 */ 51, 8, 8, 12, 8, 12, 12, 19, 87, 52,
+ /* 490 */ 53, 54, 55, 56, 57, 58, 59, 60, 71, 72,
+ /* 500 */ 8, 74, 18, 76, 12, 8, 79, 12, 9, 12,
+ /* 510 */ 11, 73, 85, 86, 38, 88, 73, 90, 14, 71,
+ /* 520 */ 72, 37, 74, 96, 76, 87, 94, 79, 101, 78,
+ /* 530 */ 87, 99, 73, 85, 86, 83, 88, 12, 90, 35,
+ /* 540 */ 71, 72, 82, 74, 96, 76, 87, 94, 79, 101,
+ /* 550 */ 98, 19, 99, 83, 85, 86, 10, 88, 83, 90,
+ /* 560 */ 10, 71, 72, 38, 74, 96, 76, 10, 98, 79,
+ /* 570 */ 101, 8, 10, 98, 7, 85, 86, 10, 88, 37,
+ /* 580 */ 90, 14, 16, 27, 71, 72, 96, 74, 8, 76,
+ /* 590 */ 22, 101, 79, 23, 27, 14, 29, 30, 85, 86,
+ /* 600 */ 83, 88, 35, 90, 21, 71, 72, 22, 74, 96,
+ /* 610 */ 76, 4, 35, 79, 101, 98, 10, 35, 83, 85,
+ /* 620 */ 86, 83, 88, 51, 90, 8, 71, 72, 28, 74,
+ /* 630 */ 96, 76, 10, 98, 79, 101, 98, 14, 23, 10,
+ /* 640 */ 85, 86, 14, 88, 97, 90, 3, 71, 72, 3,
+ /* 650 */ 74, 96, 76, 15, 22, 79, 101, 98, 87, 95,
+ /* 660 */ 12, 85, 86, 89, 88, 92, 90, 14, 103, 82,
+ /* 670 */ 71, 72, 96, 74, 95, 76, 21, 101, 79, 107,
+ /* 680 */ 107, 80, 107, 107, 85, 86, 107, 88, 107, 90,
+ /* 690 */ 107, 71, 72, 107, 74, 96, 76, 107, 107, 79,
+ /* 700 */ 101, 107, 107, 107, 107, 85, 86, 107, 88, 107,
+ /* 710 */ 90, 107, 71, 72, 107, 74, 96, 76, 107, 107,
+ /* 720 */ 107, 101, 107, 107, 107, 107, 85, 86, 107, 88,
+ /* 730 */ 107, 90, 107, 38, 107, 40, 107, 96, 107, 107,
+ /* 740 */ 107, 107, 107, 107, 107, 104, 105, 52, 53, 54,
+ /* 750 */ 55, 56, 57, 58, 59, 60, 71, 72, 107, 74,
+ /* 760 */ 107, 76, 107, 107, 79, 107, 107, 107, 107, 107,
+ /* 770 */ 85, 86, 107, 88, 107, 90, 107, 71, 72, 107,
+ /* 780 */ 74, 96, 76, 107, 71, 72, 101, 74, 75, 76,
+ /* 790 */ 107, 85, 86, 107, 88, 107, 90, 107, 85, 86,
+ /* 800 */ 107, 88, 96, 90, 107, 107, 107, 107, 107, 96,
+ /* 810 */ 107, 105, 107, 107, 107, 107, 107, 71, 72, 107,
+ /* 820 */ 74, 75, 76, 107, 71, 72, 107, 74, 107, 76,
+ /* 830 */ 107, 85, 86, 107, 88, 107, 90, 107, 85, 86,
+ /* 840 */ 107, 88, 96, 90, 107, 107, 93, 71, 72, 96,
+ /* 850 */ 74, 75, 76, 107, 71, 72, 107, 74, 107, 76,
+ /* 860 */ 107, 85, 86, 107, 88, 107, 90, 107, 85, 86,
+ /* 870 */ 107, 88, 96, 90, 107, 107, 93, 107, 107, 96,
+ /* 880 */ 107, 71, 72, 107, 74, 75, 76, 107, 107, 71,
+ /* 890 */ 72, 107, 107, 107, 76, 85, 86, 107, 88, 107,
+ /* 900 */ 90, 107, 107, 85, 71, 72, 96, 74, 90, 76,
+ /* 910 */ 107, 107, 107, 107, 96, 107, 107, 107, 85, 86,
+ /* 920 */ 107, 88, 107, 90, 107, 107, 93, 71, 72, 96,
+ /* 930 */ 74, 107, 76, 107, 107, 107, 107, 107, 107, 107,
+ /* 940 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 93,
+ /* 950 */ 107, 107, 96, 71, 72, 107, 74, 107, 76, 107,
+ /* 960 */ 107, 71, 72, 107, 107, 107, 76, 85, 86, 107,
+ /* 970 */ 88, 107, 90, 107, 107, 85, 71, 72, 96, 74,
+ /* 980 */ 90, 76, 107, 107, 107, 107, 96, 107, 107, 107,
+ /* 990 */ 85, 86, 107, 88, 107, 90, 107, 107, 107, 71,
+ /* 1000 */ 72, 96, 74, 107, 76, 107, 107, 107, 107, 107,
+ /* 1010 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107,
+ /* 1020 */ 107, 107, 107, 107, 96, 71, 72, 107, 74, 107,
+ /* 1030 */ 76, 107, 107, 71, 72, 107, 107, 107, 76, 85,
+ /* 1040 */ 86, 107, 88, 107, 90, 107, 107, 85, 71, 72,
+ /* 1050 */ 96, 74, 90, 76, 107, 107, 107, 107, 96, 107,
+ /* 1060 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 107,
+ /* 1070 */ 107, 71, 72, 96, 74, 107, 76, 107, 107, 107,
+ /* 1080 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107,
+ /* 1090 */ 90, 107, 107, 107, 107, 107, 96, 71, 72, 107,
+ /* 1100 */ 74, 107, 76, 107, 107, 107, 107, 107, 107, 107,
+ /* 1110 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107,
+ /* 1120 */ 71, 72, 96, 74, 107, 76, 107, 107, 107, 107,
+ /* 1130 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90,
+ /* 1140 */ 107, 107, 107, 71, 72, 96, 74, 107, 76, 107,
+ /* 1150 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107,
+ /* 1160 */ 88, 107, 90, 107, 107, 107, 107, 107, 96, 71,
+ /* 1170 */ 72, 107, 74, 107, 76, 107, 107, 107, 107, 107,
+ /* 1180 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107,
+ /* 1190 */ 107, 107, 71, 72, 96, 74, 107, 76, 107, 107,
+ /* 1200 */ 107, 107, 107, 107, 107, 107, 85, 86, 107, 88,
+ /* 1210 */ 107, 90, 107, 107, 107, 71, 72, 96, 74, 107,
+ /* 1220 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85,
+ /* 1230 */ 86, 107, 88, 107, 90, 107, 107, 107, 107, 107,
+ /* 1240 */ 96, 71, 72, 107, 74, 107, 76, 107, 107, 107,
+ /* 1250 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107,
+ /* 1260 */ 90, 107, 107, 107, 71, 72, 96, 107, 107, 76,
+ /* 1270 */ 107, 107, 107, 107, 107, 107, 107, 107, 85, 86,
+ /* 1280 */ 107, 88, 107, 90, 107, 107, 107, 71, 72, 96,
+ /* 1290 */ 107, 107, 76, 107, 107, 107, 107, 107, 107, 107,
+ /* 1300 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107,
+ /* 1310 */ 107, 107, 96, 71, 72, 107, 107, 107, 76, 107,
+ /* 1320 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107,
+ /* 1330 */ 88, 107, 90, 107, 107, 107, 71, 72, 96, 107,
+ /* 1340 */ 107, 76, 107, 107, 107, 107, 107, 107, 107, 107,
+ /* 1350 */ 85, 86, 107, 107, 107, 90, 107, 107, 107, 107,
+ /* 1360 */ 107, 96,
);
- const YY_SHIFT_USE_DFLT = -69;
- const YY_SHIFT_MAX = 202;
+ const YY_SHIFT_USE_DFLT = -8;
+ const YY_SHIFT_MAX = 199;
static public $yy_shift_ofst = array(
- /* 0 */ 303, 160, -9, -9, -9, -9, -9, -9, -9, -9,
- /* 10 */ -9, -9, -9, 484, 52, 268, 214, 214, 322, 214,
- /* 20 */ 484, 214, 268, 214, 214, 214, 214, 214, 214, 214,
- /* 30 */ 214, 214, 214, 214, 214, 214, 106, 430, 376, 502,
- /* 40 */ 391, 337, 337, 49, -12, 306, 248, 116, 208, 429,
- /* 50 */ 370, 124, 221, 481, 221, 464, 464, 221, 464, 574,
- /* 60 */ 443, 712, 303, 357, 209, 141, 145, 1, 183, 503,
- /* 70 */ 485, 485, 485, 373, 485, 485, 503, 631, 499, 499,
- /* 80 */ 631, 499, 43, 97, 205, 545, 259, 259, 259, 259,
- /* 90 */ 259, 259, 259, 259, 279, 459, 11, 41, 84, 298,
- /* 100 */ 148, 148, 202, 299, 187, -13, 54, 94, 297, 352,
- /* 110 */ 257, 470, -37, 264, 362, 479, -37, 498, 463, 386,
- /* 120 */ 345, -14, 441, -37, 216, -37, 47, -37, 378, 378,
- /* 130 */ 378, 499, 378, 553, 378, 378, 499, 499, 378, 499,
- /* 140 */ 415, 378, 515, 553, 565, -69, -69, -69, -69, -69,
- /* 150 */ -69, -69, -3, 323, 173, 153, 349, 147, 153, 439,
- /* 160 */ 153, 28, 263, 369, 153, 590, 575, 587, 615, 628,
- /* 170 */ 586, 601, 580, 604, 629, 562, 600, 659, 619, 681,
- /* 180 */ 668, 663, 660, 611, 556, 317, 339, 139, 79, 597,
- /* 190 */ 27, 171, 180, 291, -68, 618, 573, 592, 624, 623,
- /* 200 */ 581, 584, 595,
+ /* 0 */ 159, 51, -7, -7, -7, -7, -7, -7, -7, -7,
+ /* 10 */ -7, -7, -7, 274, 301, 301, 78, 78, 274, 105,
+ /* 20 */ 78, 105, 78, 78, 78, 78, 78, 78, 78, 78,
+ /* 30 */ 78, 78, 78, 78, 78, 78, 20, 247, 220, 328,
+ /* 40 */ 426, 399, 426, 110, 567, 0, 221, 113, 258, 369,
+ /* 50 */ 285, 504, 295, 504, 525, 295, 525, 525, 295, 437,
+ /* 60 */ 410, 695, 159, 28, 181, 8, 277, 250, 229, 417,
+ /* 70 */ 336, 336, 417, 336, 336, 499, 336, 371, 648, 648,
+ /* 80 */ 371, 371, 160, 170, 137, 108, 329, 329, 329, 329,
+ /* 90 */ 329, 329, 329, 329, 39, 122, -6, 165, 235, 19,
+ /* 100 */ 19, 346, 100, 262, 375, 353, 106, 210, 262, 61,
+ /* 110 */ 262, -5, 262, 262, -2, 206, 331, 476, 474, 492,
+ /* 120 */ 497, 343, 430, 376, 464, 473, 471, 371, 653, 384,
+ /* 130 */ 384, 371, 384, 655, 384, 371, 495, 384, 468, 384,
+ /* 140 */ 371, 495, 384, 384, -8, -8, -8, -8, -8, -8,
+ /* 150 */ -8, 58, 238, 292, 63, 409, 63, 429, 306, 63,
+ /* 160 */ 484, 63, 307, 607, 562, 563, 550, 556, 583, 581,
+ /* 170 */ 580, 600, 585, 542, 646, 623, 617, 546, 532, 163,
+ /* 180 */ 161, 96, 319, 643, 270, 130, 632, 606, 628, 570,
+ /* 190 */ 568, 566, 557, 577, 629, 638, 615, 582, 572, 622,
);
- const YY_REDUCE_USE_DFLT = -76;
- const YY_REDUCE_MAX = 151;
+ const YY_REDUCE_USE_DFLT = -80;
+ const YY_REDUCE_MAX = 150;
static public $yy_reduce_ofst = array(
- /* 0 */ 14, -63, 779, 558, 598, 578, 104, 531, 735, 759,
- /* 10 */ 620, 713, 691, 667, 827, 857, 799, 924, 894, 948,
- /* 20 */ 888, 972, 851, 1121, 1127, 1161, 1185, 1099, 1093, 1213,
- /* 30 */ 1001, 1007, 1029, 1049, 1069, 1191, 1264, 1219, 1242, 1270,
- /* 40 */ 67, 15, 175, 65, -44, 399, 266, 350, 243, 437,
- /* 50 */ 126, 394, 126, 321, 347, 48, -75, 241, 401, 509,
- /* 60 */ 509, 509, 488, 446, 83, 525, 262, 83, 431, 445,
- /* 70 */ 444, 438, 500, 355, 445, 505, 501, 475, 355, 511,
- /* 80 */ 514, 466, 585, 585, 585, 585, 585, 585, 585, 585,
- /* 90 */ 585, 585, 585, 585, 596, 596, 582, 583, 583, 583,
- /* 100 */ 596, 596, 594, 477, 594, 477, 594, 594, 477, 477,
- /* 110 */ 594, 594, 589, 477, 477, 477, 589, 594, 594, 594,
- /* 120 */ 594, 606, 594, 589, 477, 589, 608, 589, 477, 477,
- /* 130 */ 477, 423, 477, 616, 477, 477, 423, 423, 477, 423,
- /* 140 */ 424, 477, 451, 536, 528, 491, 520, 403, -29, -33,
- /* 150 */ -35, -59,
+ /* 0 */ 32, 322, 513, 534, 490, 555, 469, 427, 448, 576,
+ /* 10 */ 685, 620, 599, 641, 746, 713, 856, 783, 706, 776,
+ /* 20 */ 833, 810, 753, 954, 928, 905, 882, 1000, 977, 1098,
+ /* 30 */ 1026, 1170, 1144, 1121, 1072, 1049, 1193, 1242, 1216, 1265,
+ /* 40 */ 890, 962, 818, 101, 290, 312, -17, 339, 327, 253,
+ /* 50 */ 56, 244, -25, 272, 56, 239, 364, 401, 373, 158,
+ /* 60 */ 158, 158, 124, 348, 13, 204, 438, 438, 204, 452,
+ /* 70 */ 475, 470, 517, 538, 535, 432, 452, 345, 459, 443,
+ /* 80 */ 432, 453, 565, 565, 565, 565, 565, 565, 565, 565,
+ /* 90 */ 565, 565, 565, 565, 574, 574, 559, 559, 559, 574,
+ /* 100 */ 574, 564, 257, 547, 571, 571, 257, 257, 547, 571,
+ /* 110 */ 547, 573, 547, 547, 257, 257, 257, 257, 571, 571,
+ /* 120 */ 571, 257, 571, 571, 571, 571, 571, 372, 601, 257,
+ /* 130 */ 257, 372, 257, 579, 257, 372, 587, 257, 349, 257,
+ /* 140 */ 372, 460, 257, 257, 451, 194, 111, 38, -69, -42,
+ /* 150 */ -79,
);
static public $yyExpectedTokens = array(
- /* 0 */ array(1, 2, 3, 4, 5, 8, 12, 13, 14, 15, ),
- /* 1 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 2 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 3 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 4 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 5 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 6 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 7 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 8 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 9 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 10 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 11 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 12 */ array(9, 14, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 13 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 14 */ array(1, 9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 15 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 16 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 17 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 18 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 19 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 20 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 21 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 22 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 23 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 24 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 25 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 26 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 27 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 28 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 29 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 30 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 31 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 32 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 33 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 34 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 35 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 36 */ array(9, 14, 15, 19, 20, 44, 46, 47, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 37 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 38 */ array(9, 14, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ),
- /* 39 */ array(9, 14, 15, 19, 20, 44, 46, 51, 55, 60, 61, 67, 71, 72, ),
- /* 40 */ array(9, 14, 15, 19, 20, 44, 51, 55, 60, 61, 67, 71, 72, ),
- /* 41 */ array(9, 14, 15, 19, 20, 44, 51, 55, 60, 61, 67, 71, 72, ),
- /* 42 */ array(9, 14, 15, 19, 20, 44, 51, 55, 60, 61, 67, 71, 72, ),
- /* 43 */ array(15, 55, 60, 67, ),
- /* 44 */ array(15, 19, 20, 51, 55, 60, 67, ),
- /* 45 */ array(16, 44, 48, 57, 63, 68, ),
- /* 46 */ array(1, 14, 15, 55, 61, 62, ),
- /* 47 */ array(1, 55, 60, 67, ),
- /* 48 */ array(46, 48, 64, ),
- /* 49 */ array(55, 60, 67, ),
- /* 50 */ array(16, 63, 68, ),
- /* 51 */ array(48, 63, 68, ),
- /* 52 */ array(63, 68, ),
- /* 53 */ array(55, 60, ),
- /* 54 */ array(63, 68, ),
- /* 55 */ array(56, 68, ),
- /* 56 */ array(56, 68, ),
- /* 57 */ array(63, 68, ),
- /* 58 */ array(56, 68, ),
- /* 59 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ),
- /* 60 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ),
- /* 61 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 63, ),
- /* 62 */ array(1, 2, 3, 4, 5, 8, 12, 13, 14, 15, ),
- /* 63 */ array(1, 14, 15, 55, 61, 62, ),
- /* 64 */ array(15, 50, 59, 67, ),
- /* 65 */ array(15, 50, 52, 67, ),
- /* 66 */ array(1, 9, 15, ),
- /* 67 */ array(15, 59, 67, ),
- /* 68 */ array(16, 52, 68, ),
- /* 69 */ array(15, 67, ),
- /* 70 */ array(15, 67, ),
- /* 71 */ array(15, 67, ),
- /* 72 */ array(15, 67, ),
- /* 73 */ array(48, 50, ),
- /* 74 */ array(15, 67, ),
- /* 75 */ array(15, 67, ),
- /* 76 */ array(15, 67, ),
- /* 77 */ array(68, ),
- /* 78 */ array(48, ),
- /* 79 */ array(48, ),
- /* 80 */ array(68, ),
- /* 81 */ array(48, ),
- /* 82 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ),
- /* 83 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ),
- /* 84 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ),
- /* 85 */ array(16, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 86 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 87 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 88 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 89 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 90 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 91 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 92 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 93 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
- /* 94 */ array(47, 53, 54, 66, ),
- /* 95 */ array(16, 53, 54, 66, ),
- /* 96 */ array(1, 9, 15, ),
- /* 97 */ array(15, 16, 67, ),
- /* 98 */ array(15, 16, 67, ),
- /* 99 */ array(15, 50, 67, ),
- /* 100 */ array(53, 54, 66, ),
- /* 101 */ array(53, 54, 66, ),
- /* 102 */ array(16, 68, ),
- /* 103 */ array(56, 63, ),
- /* 104 */ array(16, 68, ),
- /* 105 */ array(49, 63, ),
- /* 106 */ array(16, 68, ),
- /* 107 */ array(16, 68, ),
- /* 108 */ array(56, 63, ),
- /* 109 */ array(63, 65, ),
- /* 110 */ array(16, 68, ),
- /* 111 */ array(16, 68, ),
- /* 112 */ array(46, 64, ),
- /* 113 */ array(16, 63, ),
- /* 114 */ array(16, 63, ),
- /* 115 */ array(16, 63, ),
- /* 116 */ array(46, 64, ),
- /* 117 */ array(16, 68, ),
- /* 118 */ array(16, 68, ),
- /* 119 */ array(16, 68, ),
- /* 120 */ array(16, 68, ),
- /* 121 */ array(15, 44, ),
- /* 122 */ array(16, 68, ),
- /* 123 */ array(46, 64, ),
- /* 124 */ array(45, 63, ),
- /* 125 */ array(46, 64, ),
- /* 126 */ array(55, 67, ),
- /* 127 */ array(46, 64, ),
- /* 128 */ array(63, ),
- /* 129 */ array(63, ),
- /* 130 */ array(63, ),
- /* 131 */ array(48, ),
- /* 132 */ array(63, ),
- /* 133 */ array(68, ),
- /* 134 */ array(63, ),
- /* 135 */ array(63, ),
- /* 136 */ array(48, ),
- /* 137 */ array(48, ),
- /* 138 */ array(63, ),
- /* 139 */ array(48, ),
- /* 140 */ array(44, ),
- /* 141 */ array(63, ),
- /* 142 */ array(56, ),
- /* 143 */ array(68, ),
- /* 144 */ array(55, ),
+ /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 17, ),
+ /* 1 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 2 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 3 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 4 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 5 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 6 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 7 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 8 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 9 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 10 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 11 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 12 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 39, ),
+ /* 13 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 14 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 15 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 16 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 17 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 18 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 19 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 20 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 21 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 22 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 23 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 24 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 25 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 26 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 27 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 28 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 29 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 30 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 31 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 32 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 33 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 34 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 35 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 36 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, 37, ),
+ /* 37 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 38 */ array(7, 10, 14, 17, 20, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 39 */ array(7, 10, 14, 17, 21, 26, 27, 29, 30, 31, 32, 35, 36, ),
+ /* 40 */ array(7, 10, 14, 17, 21, 26, 27, 29, 30, 31, 32, 35, ),
+ /* 41 */ array(7, 10, 14, 17, 21, 26, 27, 29, 30, 31, 32, 35, ),
+ /* 42 */ array(7, 10, 14, 17, 21, 26, 27, 29, 30, 31, 32, 35, ),
+ /* 43 */ array(7, 10, 14, 35, ),
+ /* 44 */ array(7, 10, 14, 27, 29, 30, 35, ),
+ /* 45 */ array(8, 11, 12, 21, 33, 38, ),
+ /* 46 */ array(3, 7, 17, 32, 65, 66, ),
+ /* 47 */ array(10, 14, 35, ),
+ /* 48 */ array(11, 12, 38, ),
+ /* 49 */ array(11, 28, 36, ),
+ /* 50 */ array(8, 12, 38, ),
+ /* 51 */ array(14, 35, ),
+ /* 52 */ array(12, 19, ),
+ /* 53 */ array(14, 35, ),
+ /* 54 */ array(12, 38, ),
+ /* 55 */ array(12, 19, ),
+ /* 56 */ array(12, 38, ),
+ /* 57 */ array(12, 38, ),
+ /* 58 */ array(12, 19, ),
+ /* 59 */ array(22, 38, 40, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 60 */ array(22, 38, 40, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 61 */ array(38, 40, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 62 */ array(1, 2, 3, 4, 5, 6, 7, 17, ),
+ /* 63 */ array(3, 7, 17, 32, 65, 66, ),
+ /* 64 */ array(7, 9, 10, 15, ),
+ /* 65 */ array(7, 9, 10, 34, ),
+ /* 66 */ array(8, 12, 15, ),
+ /* 67 */ array(8, 12, 15, ),
+ /* 68 */ array(7, 10, 34, ),
+ /* 69 */ array(7, 10, ),
+ /* 70 */ array(7, 10, ),
+ /* 71 */ array(7, 10, ),
+ /* 72 */ array(7, 10, ),
+ /* 73 */ array(7, 10, ),
+ /* 74 */ array(7, 10, ),
+ /* 75 */ array(9, 11, ),
+ /* 76 */ array(7, 10, ),
+ /* 77 */ array(11, ),
+ /* 78 */ array(12, ),
+ /* 79 */ array(12, ),
+ /* 80 */ array(11, ),
+ /* 81 */ array(11, ),
+ /* 82 */ array(8, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 83 */ array(22, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 84 */ array(22, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 85 */ array(13, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 86 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 87 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 88 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 89 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 90 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 91 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 92 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 93 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 61, 62, 63, ),
+ /* 94 */ array(20, 24, 25, 37, ),
+ /* 95 */ array(8, 20, 24, 25, ),
+ /* 96 */ array(7, 8, 10, ),
+ /* 97 */ array(7, 9, 10, ),
+ /* 98 */ array(7, 8, 10, ),
+ /* 99 */ array(20, 24, 25, ),
+ /* 100 */ array(20, 24, 25, ),
+ /* 101 */ array(7, 21, ),
+ /* 102 */ array(18, 38, ),
+ /* 103 */ array(28, 36, ),
+ /* 104 */ array(8, 12, ),
+ /* 105 */ array(8, 12, ),
+ /* 106 */ array(22, 38, ),
+ /* 107 */ array(19, 38, ),
+ /* 108 */ array(28, 36, ),
+ /* 109 */ array(8, 12, ),
+ /* 110 */ array(28, 36, ),
+ /* 111 */ array(10, 14, ),
+ /* 112 */ array(28, 36, ),
+ /* 113 */ array(28, 36, ),
+ /* 114 */ array(8, 38, ),
+ /* 115 */ array(19, 38, ),
+ /* 116 */ array(38, 64, ),
+ /* 117 */ array(8, 38, ),
+ /* 118 */ array(8, 12, ),
+ /* 119 */ array(8, 12, ),
+ /* 120 */ array(8, 12, ),
+ /* 121 */ array(8, 38, ),
+ /* 122 */ array(8, 12, ),
+ /* 123 */ array(8, 12, ),
+ /* 124 */ array(8, 12, ),
+ /* 125 */ array(8, 12, ),
+ /* 126 */ array(8, 12, ),
+ /* 127 */ array(11, ),
+ /* 128 */ array(14, ),
+ /* 129 */ array(38, ),
+ /* 130 */ array(38, ),
+ /* 131 */ array(11, ),
+ /* 132 */ array(38, ),
+ /* 133 */ array(21, ),
+ /* 134 */ array(38, ),
+ /* 135 */ array(11, ),
+ /* 136 */ array(12, ),
+ /* 137 */ array(38, ),
+ /* 138 */ array(19, ),
+ /* 139 */ array(38, ),
+ /* 140 */ array(11, ),
+ /* 141 */ array(12, ),
+ /* 142 */ array(38, ),
+ /* 143 */ array(38, ),
+ /* 144 */ array(),
/* 145 */ array(),
/* 146 */ array(),
/* 147 */ array(),
/* 148 */ array(),
/* 149 */ array(),
/* 150 */ array(),
- /* 151 */ array(),
- /* 152 */ array(16, 44, 50, 57, 68, ),
- /* 153 */ array(44, 47, 57, 64, ),
- /* 154 */ array(44, 49, 57, ),
- /* 155 */ array(44, 57, ),
- /* 156 */ array(58, 65, ),
- /* 157 */ array(18, 69, ),
- /* 158 */ array(44, 57, ),
- /* 159 */ array(16, 68, ),
- /* 160 */ array(44, 57, ),
- /* 161 */ array(59, 67, ),
- /* 162 */ array(1, 67, ),
- /* 163 */ array(47, 65, ),
- /* 164 */ array(44, 57, ),
- /* 165 */ array(67, ),
- /* 166 */ array(67, ),
- /* 167 */ array(45, ),
- /* 168 */ array(16, ),
- /* 169 */ array(16, ),
- /* 170 */ array(67, ),
- /* 171 */ array(50, ),
- /* 172 */ array(67, ),
- /* 173 */ array(67, ),
- /* 174 */ array(16, ),
- /* 175 */ array(67, ),
- /* 176 */ array(62, ),
- /* 177 */ array(18, ),
- /* 178 */ array(60, ),
- /* 179 */ array(1, ),
- /* 180 */ array(5, ),
- /* 181 */ array(1, ),
- /* 182 */ array(5, ),
- /* 183 */ array(56, ),
- /* 184 */ array(70, ),
- /* 185 */ array(67, ),
- /* 186 */ array(62, ),
- /* 187 */ array(55, ),
- /* 188 */ array(69, ),
- /* 189 */ array(44, ),
- /* 190 */ array(67, ),
- /* 191 */ array(55, ),
- /* 192 */ array(45, ),
- /* 193 */ array(47, ),
- /* 194 */ array(70, ),
- /* 195 */ array(67, ),
- /* 196 */ array(55, ),
- /* 197 */ array(67, ),
- /* 198 */ array(60, ),
- /* 199 */ array(45, ),
- /* 200 */ array(52, ),
- /* 201 */ array(64, ),
- /* 202 */ array(51, ),
+ /* 151 */ array(8, 9, 12, 21, 33, ),
+ /* 152 */ array(21, 28, 33, 37, ),
+ /* 153 */ array(21, 33, 64, ),
+ /* 154 */ array(21, 33, ),
+ /* 155 */ array(8, 12, ),
+ /* 156 */ array(21, 33, ),
+ /* 157 */ array(16, 51, ),
+ /* 158 */ array(13, 18, ),
+ /* 159 */ array(21, 33, ),
+ /* 160 */ array(18, 37, ),
+ /* 161 */ array(21, 33, ),
+ /* 162 */ array(10, 34, ),
+ /* 163 */ array(4, ),
+ /* 164 */ array(10, ),
+ /* 165 */ array(8, ),
+ /* 166 */ array(10, ),
+ /* 167 */ array(27, ),
+ /* 168 */ array(21, ),
+ /* 169 */ array(14, ),
+ /* 170 */ array(8, ),
+ /* 171 */ array(28, ),
+ /* 172 */ array(22, ),
+ /* 173 */ array(37, ),
+ /* 174 */ array(3, ),
+ /* 175 */ array(14, ),
+ /* 176 */ array(8, ),
+ /* 177 */ array(10, ),
+ /* 178 */ array(19, ),
+ /* 179 */ array(4, ),
+ /* 180 */ array(65, ),
+ /* 181 */ array(10, ),
+ /* 182 */ array(10, ),
+ /* 183 */ array(3, ),
+ /* 184 */ array(10, ),
+ /* 185 */ array(9, ),
+ /* 186 */ array(22, ),
+ /* 187 */ array(10, ),
+ /* 188 */ array(14, ),
+ /* 189 */ array(23, ),
+ /* 190 */ array(22, ),
+ /* 191 */ array(16, ),
+ /* 192 */ array(10, ),
+ /* 193 */ array(35, ),
+ /* 194 */ array(10, ),
+ /* 195 */ array(15, ),
+ /* 196 */ array(23, ),
+ /* 197 */ array(35, ),
+ /* 198 */ array(51, ),
+ /* 199 */ array(10, ),
+ /* 200 */ array(),
+ /* 201 */ array(),
+ /* 202 */ array(),
/* 203 */ array(),
/* 204 */ array(),
/* 205 */ array(),
@@ -917,55 +908,40 @@ static public $yy_action = 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(),
);
static public $yy_default = array(
- /* 0 */ 501, 501, 501, 501, 501, 501, 501, 501, 501, 501,
- /* 10 */ 501, 501, 501, 480, 501, 501, 438, 438, 501, 438,
- /* 20 */ 501, 438, 501, 501, 501, 501, 501, 501, 501, 501,
- /* 30 */ 501, 501, 501, 501, 501, 501, 501, 501, 501, 501,
- /* 40 */ 501, 501, 501, 501, 501, 501, 501, 501, 400, 501,
- /* 50 */ 501, 360, 360, 501, 360, 360, 360, 360, 360, 448,
- /* 60 */ 448, 448, 326, 501, 410, 501, 501, 410, 381, 501,
- /* 70 */ 501, 501, 501, 403, 501, 501, 501, 360, 403, 395,
- /* 80 */ 360, 396, 501, 501, 501, 501, 461, 462, 458, 446,
- /* 90 */ 457, 454, 453, 452, 501, 501, 501, 501, 501, 501,
- /* 100 */ 369, 443, 501, 501, 501, 483, 501, 501, 501, 437,
- /* 110 */ 501, 501, 430, 501, 501, 501, 432, 501, 501, 501,
- /* 120 */ 501, 410, 501, 408, 501, 429, 501, 431, 482, 367,
- /* 130 */ 449, 426, 481, 496, 376, 377, 401, 398, 361, 397,
- /* 140 */ 410, 351, 371, 496, 501, 442, 442, 410, 410, 410,
- /* 150 */ 442, 442, 368, 501, 368, 444, 501, 372, 463, 372,
- /* 160 */ 501, 501, 501, 501, 368, 501, 501, 501, 365, 501,
- /* 170 */ 501, 364, 501, 501, 501, 501, 501, 375, 501, 501,
- /* 180 */ 501, 501, 501, 424, 389, 414, 501, 501, 372, 399,
- /* 190 */ 501, 501, 501, 501, 501, 501, 501, 501, 501, 501,
- /* 200 */ 381, 384, 501, 352, 350, 486, 418, 419, 420, 485,
- /* 210 */ 394, 421, 435, 363, 327, 357, 433, 417, 494, 490,
- /* 220 */ 353, 354, 366, 495, 424, 492, 393, 488, 491, 493,
- /* 230 */ 487, 484, 423, 467, 415, 416, 374, 385, 413, 412,
- /* 240 */ 405, 406, 407, 411, 386, 387, 422, 425, 439, 440,
- /* 250 */ 370, 380, 388, 427, 378, 379, 409, 404, 334, 335,
- /* 260 */ 336, 337, 333, 332, 328, 329, 330, 331, 338, 358,
- /* 270 */ 373, 383, 382, 428, 372, 441, 355, 356, 359, 375,
- /* 280 */ 390, 445, 455, 456, 459, 389, 464, 470, 471, 472,
- /* 290 */ 473, 460, 474, 345, 347, 346, 348, 344, 343, 475,
- /* 300 */ 476, 447, 469, 468, 339, 489, 340, 341, 498, 392,
- /* 310 */ 391, 497, 499, 500, 342, 402, 450, 451, 465, 466,
- /* 320 */ 478, 479, 436, 434, 477, 349,
+ /* 0 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
+ /* 10 */ 476, 476, 476, 462, 476, 476, 420, 420, 476, 476,
+ /* 20 */ 420, 476, 420, 476, 476, 476, 476, 476, 476, 476,
+ /* 30 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
+ /* 40 */ 476, 476, 476, 476, 476, 476, 476, 476, 344, 382,
+ /* 50 */ 476, 476, 344, 476, 344, 344, 344, 344, 344, 430,
+ /* 60 */ 430, 430, 312, 476, 476, 392, 365, 365, 392, 476,
+ /* 70 */ 476, 476, 476, 476, 476, 385, 476, 378, 344, 344,
+ /* 80 */ 385, 377, 476, 476, 476, 476, 439, 444, 443, 440,
+ /* 90 */ 435, 434, 428, 436, 476, 476, 476, 476, 476, 425,
+ /* 100 */ 353, 392, 419, 413, 476, 476, 476, 476, 411, 476,
+ /* 110 */ 390, 476, 414, 412, 476, 476, 465, 476, 476, 476,
+ /* 120 */ 476, 476, 476, 476, 476, 476, 476, 380, 476, 463,
+ /* 130 */ 345, 379, 335, 392, 431, 408, 475, 351, 355, 360,
+ /* 140 */ 383, 475, 361, 464, 424, 424, 424, 424, 392, 392,
+ /* 150 */ 392, 352, 476, 352, 445, 356, 426, 356, 476, 476,
+ /* 160 */ 476, 352, 476, 476, 476, 476, 476, 476, 381, 476,
+ /* 170 */ 476, 368, 476, 476, 476, 476, 349, 476, 406, 476,
+ /* 180 */ 476, 476, 476, 476, 476, 348, 476, 476, 476, 476,
+ /* 190 */ 476, 359, 476, 476, 396, 365, 373, 476, 356, 476,
+ /* 200 */ 375, 400, 402, 313, 337, 466, 347, 338, 334, 474,
+ /* 210 */ 473, 406, 403, 472, 468, 469, 405, 336, 467, 350,
+ /* 220 */ 399, 341, 376, 417, 401, 415, 450, 395, 397, 398,
+ /* 230 */ 358, 394, 393, 387, 388, 389, 369, 370, 364, 354,
+ /* 240 */ 404, 407, 363, 362, 371, 372, 409, 391, 386, 319,
+ /* 250 */ 320, 321, 322, 318, 317, 314, 315, 316, 342, 339,
+ /* 260 */ 367, 366, 410, 357, 356, 340, 343, 423, 421, 422,
+ /* 270 */ 427, 437, 438, 441, 373, 446, 453, 454, 455, 442,
+ /* 280 */ 456, 329, 331, 330, 332, 328, 327, 457, 458, 429,
+ /* 290 */ 452, 451, 324, 325, 326, 384, 471, 323, 359, 374,
+ /* 300 */ 470, 418, 416, 447, 448, 449, 433, 432, 459, 461,
+ /* 310 */ 460, 333,
);
/* The next thing included is series of defines which control
** various aspects of the generated parser.
@@ -982,13 +958,13 @@ static public $yy_action = array(
** self::YYERRORSYMBOL is the code number of the error symbol. If not
** defined, then do no error processing.
*/
- const YYNOCODE = 116;
+ const YYNOCODE = 108;
const YYSTACKDEPTH = 100;
- const YYNSTATE = 326;
- const YYNRULE = 175;
- const YYERRORSYMBOL = 73;
+ const YYNSTATE = 312;
+ const YYNRULE = 164;
+ const YYERRORSYMBOL = 67;
const YYERRSYMDT = 'yy0';
- const YYFALLBACK = 1;
+ const YYFALLBACK = 0;
/** The next table maps tokens into fallback tokens. If a construct
* like the following:
*
@@ -1000,79 +976,6 @@ static public $yy_action = array(
* the parse is retried before an error is thrown.
*/
static public $yyFallback = array(
- 0, /* $ => nothing */
- 0, /* OTHER => nothing */
- 1, /* XML => OTHER */
- 1, /* PHP => OTHER */
- 1, /* SHORTTAGSTART => OTHER */
- 1, /* SHORTTAGEND => OTHER */
- 1, /* PHPSTART => OTHER */
- 1, /* PHPEND => OTHER */
- 1, /* COMMENT => OTHER */
- 1, /* SINGLEQUOTE => OTHER */
- 1, /* LITERALSTART => OTHER */
- 1, /* LITERALEND => OTHER */
- 1, /* LDELIMTAG => OTHER */
- 1, /* RDELIMTAG => OTHER */
- 1, /* LDELSLASH => OTHER */
- 1, /* LDEL => OTHER */
- 1, /* RDEL => OTHER */
- 1, /* ISIN => OTHER */
- 1, /* AS => OTHER */
- 1, /* BOOLEAN => OTHER */
- 1, /* NULL => OTHER */
- 1, /* IDENTITY => OTHER */
- 1, /* NONEIDENTITY => OTHER */
- 1, /* EQUALS => OTHER */
- 1, /* NOTEQUALS => OTHER */
- 1, /* GREATEREQUAL => OTHER */
- 1, /* LESSEQUAL => OTHER */
- 1, /* GREATERTHAN => OTHER */
- 1, /* LESSTHAN => OTHER */
- 1, /* MOD => OTHER */
- 1, /* NOT => OTHER */
- 1, /* LAND => OTHER */
- 1, /* LOR => OTHER */
- 1, /* LXOR => OTHER */
- 1, /* ISODDBY => OTHER */
- 1, /* ISNOTODDBY => OTHER */
- 1, /* ISODD => OTHER */
- 1, /* ISNOTODD => OTHER */
- 1, /* ISEVENBY => OTHER */
- 1, /* ISNOTEVENBY => OTHER */
- 1, /* ISEVEN => OTHER */
- 1, /* ISNOTEVEN => OTHER */
- 1, /* ISDIVBY => OTHER */
- 1, /* ISNOTDIVBY => OTHER */
- 1, /* OPENP => OTHER */
- 1, /* CLOSEP => OTHER */
- 1, /* OPENB => OTHER */
- 1, /* CLOSEB => OTHER */
- 1, /* PTR => OTHER */
- 1, /* APTR => OTHER */
- 1, /* EQUAL => OTHER */
- 1, /* INTEGER => OTHER */
- 1, /* INCDEC => OTHER */
- 1, /* UNIMATH => OTHER */
- 1, /* MATH => OTHER */
- 1, /* DOLLAR => OTHER */
- 1, /* COLON => OTHER */
- 1, /* DOUBLECOLON => OTHER */
- 1, /* SEMICOLON => OTHER */
- 1, /* AT => OTHER */
- 1, /* HATCH => OTHER */
- 1, /* QUOTE => OTHER */
- 1, /* BACKTICK => OTHER */
- 1, /* VERT => OTHER */
- 1, /* DOT => OTHER */
- 1, /* COMMA => OTHER */
- 1, /* ANDSYM => OTHER */
- 1, /* ID => OTHER */
- 1, /* SPACE => OTHER */
- 1, /* INSTANCEOF => OTHER */
- 1, /* QMARK => OTHER */
- 1, /* TYPECAST => OTHER */
- 0, /* SINGLEQUOTESTRING => nothing */
);
/**
* Turn parser tracing on by giving a stream to which to write the trace
@@ -1141,35 +1044,33 @@ static public $yy_action = array(
* @var array
*/
public $yyTokenName = array(
- '$', 'OTHER', 'XML', 'PHP',
- 'SHORTTAGSTART', 'SHORTTAGEND', 'PHPSTART', 'PHPEND',
- 'COMMENT', 'SINGLEQUOTE', 'LITERALSTART', 'LITERALEND',
- 'LDELIMTAG', 'RDELIMTAG', 'LDELSLASH', 'LDEL',
- 'RDEL', 'ISIN', 'AS', 'BOOLEAN',
- 'NULL', 'IDENTITY', 'NONEIDENTITY', 'EQUALS',
- 'NOTEQUALS', 'GREATEREQUAL', 'LESSEQUAL', 'GREATERTHAN',
- 'LESSTHAN', 'MOD', 'NOT', 'LAND',
- 'LOR', 'LXOR', 'ISODDBY', 'ISNOTODDBY',
- 'ISODD', 'ISNOTODD', 'ISEVENBY', 'ISNOTEVENBY',
- 'ISEVEN', 'ISNOTEVEN', 'ISDIVBY', 'ISNOTDIVBY',
- 'OPENP', 'CLOSEP', 'OPENB', 'CLOSEB',
- 'PTR', 'APTR', 'EQUAL', 'INTEGER',
- 'INCDEC', 'UNIMATH', 'MATH', 'DOLLAR',
- 'COLON', 'DOUBLECOLON', 'SEMICOLON', 'AT',
- 'HATCH', 'QUOTE', 'BACKTICK', 'VERT',
- 'DOT', 'COMMA', 'ANDSYM', 'ID',
- 'SPACE', 'INSTANCEOF', 'QMARK', 'TYPECAST',
- 'SINGLEQUOTESTRING', 'error', 'start', 'template',
- 'template_element', 'smartytag', 'variable', 'attributes',
- 'expr', 'ternary', 'varindexed', 'modifier',
- 'modparameters', 'ifexprs', 'statement', 'statements',
- 'optspace', 'varvar', 'foraction', 'value',
- 'array', 'attribute', 'exprs', 'math',
- 'function', 'text', 'doublequoted', 'method',
- 'params', 'objectchain', 'arrayindex', 'object',
- 'indexdef', 'varvarele', 'objectelement', 'modparameter',
- 'ifexpr', 'ifcond', 'lop', 'arrayelements',
- 'arrayelement', 'doublequotedcontent', 'textelement',
+ '$', 'COMMENT', 'PHP', 'OTHER',
+ 'SHORTTAGEND', 'SHORTTAGSTART', 'XML', 'LDEL',
+ 'RDEL', 'EQUAL', 'ID', 'PTR',
+ 'SPACE', 'SEMICOLON', 'DOLLAR', 'INCDEC',
+ 'AS', 'LDELSLASH', 'COMMA', 'COLON',
+ 'UNIMATH', 'OPENP', 'CLOSEP', 'QMARK',
+ 'MATH', 'ANDSYM', 'TYPECAST', 'INTEGER',
+ 'DOT', 'BOOLEAN', 'NULL', 'SINGLEQUOTESTRING',
+ 'QUOTE', 'DOUBLECOLON', 'AT', 'HATCH',
+ 'OPENB', 'CLOSEB', 'VERT', 'NOT',
+ 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN',
+ 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD',
+ 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF',
+ 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN',
+ 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY',
+ 'MOD', 'LAND', 'LOR', 'LXOR',
+ 'APTR', 'BACKTICK', 'DOLLARID', 'error',
+ 'start', 'template', 'template_element', 'smartytag',
+ 'variable', 'attributes', 'expr', 'ternary',
+ 'varindexed', 'modifier', 'modparameters', 'ifexprs',
+ 'statement', 'statements', 'optspace', 'varvar',
+ 'foraction', 'value', 'array', 'attribute',
+ 'exprs', 'math', 'function', 'doublequoted',
+ 'method', 'params', 'objectchain', 'arrayindex',
+ 'object', 'indexdef', 'varvarele', 'objectelement',
+ 'modparameter', 'ifexpr', 'ifcond', 'lop',
+ 'arrayelements', 'arrayelement', 'doublequotedcontent',
);
/**
@@ -1182,176 +1083,165 @@ static public $yy_action = array(
/* 2 */ "template ::= template template_element",
/* 3 */ "template_element ::= smartytag",
/* 4 */ "template_element ::= COMMENT",
- /* 5 */ "template_element ::= LDELIMTAG",
- /* 6 */ "template_element ::= RDELIMTAG",
- /* 7 */ "template_element ::= PHP OTHER SHORTTAGEND",
- /* 8 */ "template_element ::= SHORTTAGSTART OTHER SHORTTAGEND",
- /* 9 */ "template_element ::= XML",
- /* 10 */ "template_element ::= SHORTTAGEND",
- /* 11 */ "template_element ::= OTHER",
- /* 12 */ "smartytag ::= LDEL variable attributes RDEL",
- /* 13 */ "smartytag ::= LDEL expr attributes RDEL",
- /* 14 */ "smartytag ::= LDEL ternary attributes RDEL",
- /* 15 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",
- /* 16 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL",
- /* 17 */ "smartytag ::= LDEL ID attributes RDEL",
- /* 18 */ "smartytag ::= LDEL ID RDEL",
- /* 19 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",
- /* 20 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL",
- /* 21 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL",
- /* 22 */ "smartytag ::= LDEL ID SPACE ifexprs RDEL",
- /* 23 */ "smartytag ::= LDEL ID SPACE statement RDEL",
- /* 24 */ "smartytag ::= LDEL ID SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL",
- /* 25 */ "foraction ::= EQUAL expr",
- /* 26 */ "foraction ::= INCDEC",
- /* 27 */ "smartytag ::= LDEL ID SPACE value AS DOLLAR varvar RDEL",
- /* 28 */ "smartytag ::= LDEL ID SPACE array AS DOLLAR varvar RDEL",
- /* 29 */ "smartytag ::= LDELSLASH ID attributes RDEL",
- /* 30 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL",
- /* 31 */ "smartytag ::= LDELSLASH ID PTR ID RDEL",
- /* 32 */ "attributes ::= attributes attribute",
- /* 33 */ "attributes ::= attribute",
- /* 34 */ "attributes ::=",
- /* 35 */ "attribute ::= SPACE ID EQUAL expr",
- /* 36 */ "attribute ::= SPACE ID EQUAL value",
- /* 37 */ "attribute ::= SPACE ID EQUAL ternary",
- /* 38 */ "attribute ::= SPACE ID",
- /* 39 */ "statements ::= statement",
- /* 40 */ "statements ::= statements COMMA statement",
- /* 41 */ "statement ::= DOLLAR varvar EQUAL expr",
- /* 42 */ "expr ::= ID",
- /* 43 */ "expr ::= exprs",
- /* 44 */ "expr ::= DOLLAR ID COLON ID",
- /* 45 */ "expr ::= expr modifier modparameters",
- /* 46 */ "exprs ::= value",
- /* 47 */ "exprs ::= UNIMATH value",
- /* 48 */ "exprs ::= exprs math value",
- /* 49 */ "exprs ::= array",
- /* 50 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr",
- /* 51 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr",
- /* 52 */ "math ::= UNIMATH",
- /* 53 */ "math ::= MATH",
- /* 54 */ "math ::= ANDSYM",
- /* 55 */ "value ::= variable",
- /* 56 */ "value ::= TYPECAST variable",
- /* 57 */ "value ::= variable INCDEC",
- /* 58 */ "value ::= INTEGER",
- /* 59 */ "value ::= INTEGER DOT INTEGER",
- /* 60 */ "value ::= BOOLEAN",
- /* 61 */ "value ::= NULL",
- /* 62 */ "value ::= function",
- /* 63 */ "value ::= OPENP expr CLOSEP",
- /* 64 */ "value ::= SINGLEQUOTESTRING",
- /* 65 */ "value ::= SINGLEQUOTE text SINGLEQUOTE",
- /* 66 */ "value ::= SINGLEQUOTE SINGLEQUOTE",
- /* 67 */ "value ::= QUOTE doublequoted QUOTE",
- /* 68 */ "value ::= QUOTE QUOTE",
- /* 69 */ "value ::= ID DOUBLECOLON method",
- /* 70 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP",
- /* 71 */ "value ::= ID DOUBLECOLON method objectchain",
- /* 72 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain",
- /* 73 */ "value ::= ID DOUBLECOLON ID",
- /* 74 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex",
- /* 75 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain",
- /* 76 */ "value ::= smartytag",
- /* 77 */ "variable ::= varindexed",
- /* 78 */ "variable ::= DOLLAR varvar AT ID",
- /* 79 */ "variable ::= object",
- /* 80 */ "variable ::= HATCH ID HATCH",
- /* 81 */ "variable ::= HATCH variable HATCH",
- /* 82 */ "varindexed ::= DOLLAR varvar arrayindex",
- /* 83 */ "arrayindex ::= arrayindex indexdef",
- /* 84 */ "arrayindex ::=",
- /* 85 */ "indexdef ::= DOT ID",
- /* 86 */ "indexdef ::= DOT BOOLEAN",
- /* 87 */ "indexdef ::= DOT NULL",
- /* 88 */ "indexdef ::= DOT INTEGER",
- /* 89 */ "indexdef ::= DOT INTEGER ID",
- /* 90 */ "indexdef ::= DOT variable",
- /* 91 */ "indexdef ::= DOT LDEL exprs RDEL",
- /* 92 */ "indexdef ::= OPENB ID CLOSEB",
- /* 93 */ "indexdef ::= OPENB ID DOT ID CLOSEB",
- /* 94 */ "indexdef ::= OPENB exprs CLOSEB",
- /* 95 */ "indexdef ::= OPENB CLOSEB",
- /* 96 */ "varvar ::= varvarele",
- /* 97 */ "varvar ::= varvar varvarele",
- /* 98 */ "varvarele ::= ID",
- /* 99 */ "varvarele ::= LDEL expr RDEL",
- /* 100 */ "object ::= varindexed objectchain",
- /* 101 */ "objectchain ::= objectelement",
- /* 102 */ "objectchain ::= objectchain objectelement",
- /* 103 */ "objectelement ::= PTR ID arrayindex",
- /* 104 */ "objectelement ::= PTR variable arrayindex",
- /* 105 */ "objectelement ::= PTR LDEL expr RDEL arrayindex",
- /* 106 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex",
- /* 107 */ "objectelement ::= PTR method",
- /* 108 */ "function ::= ID OPENP params CLOSEP",
- /* 109 */ "method ::= ID OPENP params CLOSEP",
- /* 110 */ "params ::= expr COMMA params",
- /* 111 */ "params ::= expr",
- /* 112 */ "params ::=",
- /* 113 */ "modifier ::= VERT AT ID",
- /* 114 */ "modifier ::= VERT ID",
- /* 115 */ "modparameters ::= modparameters modparameter",
- /* 116 */ "modparameters ::=",
- /* 117 */ "modparameter ::= COLON exprs",
- /* 118 */ "modparameter ::= COLON ID",
- /* 119 */ "ifexprs ::= ifexpr",
- /* 120 */ "ifexprs ::= NOT ifexprs",
- /* 121 */ "ifexprs ::= OPENP ifexprs CLOSEP",
- /* 122 */ "ifexpr ::= expr",
- /* 123 */ "ifexpr ::= expr ifcond expr",
- /* 124 */ "ifexpr ::= expr ISIN array",
- /* 125 */ "ifexpr ::= expr ISIN value",
- /* 126 */ "ifexpr ::= ifexprs lop ifexprs",
- /* 127 */ "ifexpr ::= ifexprs ISDIVBY ifexprs",
- /* 128 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs",
- /* 129 */ "ifexpr ::= ifexprs ISEVEN",
- /* 130 */ "ifexpr ::= ifexprs ISNOTEVEN",
- /* 131 */ "ifexpr ::= ifexprs ISEVENBY ifexprs",
- /* 132 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs",
- /* 133 */ "ifexpr ::= ifexprs ISODD",
- /* 134 */ "ifexpr ::= ifexprs ISNOTODD",
- /* 135 */ "ifexpr ::= ifexprs ISODDBY ifexprs",
- /* 136 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs",
- /* 137 */ "ifexpr ::= value INSTANCEOF ID",
- /* 138 */ "ifexpr ::= value INSTANCEOF value",
- /* 139 */ "ifcond ::= EQUALS",
- /* 140 */ "ifcond ::= NOTEQUALS",
- /* 141 */ "ifcond ::= GREATERTHAN",
- /* 142 */ "ifcond ::= LESSTHAN",
- /* 143 */ "ifcond ::= GREATEREQUAL",
- /* 144 */ "ifcond ::= LESSEQUAL",
- /* 145 */ "ifcond ::= IDENTITY",
- /* 146 */ "ifcond ::= NONEIDENTITY",
- /* 147 */ "ifcond ::= MOD",
- /* 148 */ "lop ::= LAND",
- /* 149 */ "lop ::= LOR",
- /* 150 */ "lop ::= LXOR",
- /* 151 */ "array ::= OPENB arrayelements CLOSEB",
- /* 152 */ "arrayelements ::= arrayelement",
- /* 153 */ "arrayelements ::= arrayelements COMMA arrayelement",
- /* 154 */ "arrayelements ::=",
- /* 155 */ "arrayelement ::= expr APTR expr",
- /* 156 */ "arrayelement ::= ID APTR expr",
- /* 157 */ "arrayelement ::= expr",
- /* 158 */ "doublequoted ::= doublequoted doublequotedcontent",
- /* 159 */ "doublequoted ::= doublequotedcontent",
- /* 160 */ "doublequotedcontent ::= BACKTICK ID BACKTICK",
- /* 161 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",
- /* 162 */ "doublequotedcontent ::= DOLLAR ID",
- /* 163 */ "doublequotedcontent ::= LDEL expr RDEL",
- /* 164 */ "doublequotedcontent ::= smartytag",
- /* 165 */ "doublequotedcontent ::= DOLLAR OTHER",
- /* 166 */ "doublequotedcontent ::= LDEL OTHER",
- /* 167 */ "doublequotedcontent ::= BACKTICK OTHER",
- /* 168 */ "doublequotedcontent ::= OTHER",
- /* 169 */ "optspace ::= SPACE",
- /* 170 */ "optspace ::=",
- /* 171 */ "text ::= text textelement",
- /* 172 */ "text ::= textelement",
- /* 173 */ "textelement ::= OTHER",
- /* 174 */ "textelement ::= LDEL",
+ /* 5 */ "template_element ::= PHP OTHER SHORTTAGEND",
+ /* 6 */ "template_element ::= SHORTTAGSTART OTHER SHORTTAGEND",
+ /* 7 */ "template_element ::= XML",
+ /* 8 */ "template_element ::= SHORTTAGEND",
+ /* 9 */ "template_element ::= OTHER",
+ /* 10 */ "smartytag ::= LDEL variable attributes RDEL",
+ /* 11 */ "smartytag ::= LDEL expr attributes RDEL",
+ /* 12 */ "smartytag ::= LDEL ternary attributes RDEL",
+ /* 13 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",
+ /* 14 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL",
+ /* 15 */ "smartytag ::= LDEL ID attributes RDEL",
+ /* 16 */ "smartytag ::= LDEL ID RDEL",
+ /* 17 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",
+ /* 18 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL",
+ /* 19 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL",
+ /* 20 */ "smartytag ::= LDEL ID SPACE ifexprs RDEL",
+ /* 21 */ "smartytag ::= LDEL ID SPACE statement RDEL",
+ /* 22 */ "smartytag ::= LDEL ID SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL",
+ /* 23 */ "foraction ::= EQUAL expr",
+ /* 24 */ "foraction ::= INCDEC",
+ /* 25 */ "smartytag ::= LDEL ID SPACE value AS DOLLAR varvar RDEL",
+ /* 26 */ "smartytag ::= LDEL ID SPACE array AS DOLLAR varvar RDEL",
+ /* 27 */ "smartytag ::= LDELSLASH ID attributes RDEL",
+ /* 28 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL",
+ /* 29 */ "smartytag ::= LDELSLASH ID PTR ID RDEL",
+ /* 30 */ "attributes ::= attributes attribute",
+ /* 31 */ "attributes ::= attribute",
+ /* 32 */ "attributes ::=",
+ /* 33 */ "attribute ::= SPACE ID EQUAL expr",
+ /* 34 */ "attribute ::= SPACE ID EQUAL value",
+ /* 35 */ "attribute ::= SPACE ID EQUAL ternary",
+ /* 36 */ "attribute ::= SPACE ID",
+ /* 37 */ "statements ::= statement",
+ /* 38 */ "statements ::= statements COMMA statement",
+ /* 39 */ "statement ::= DOLLAR varvar EQUAL expr",
+ /* 40 */ "expr ::= ID",
+ /* 41 */ "expr ::= exprs",
+ /* 42 */ "expr ::= DOLLAR ID COLON ID",
+ /* 43 */ "expr ::= expr modifier modparameters",
+ /* 44 */ "exprs ::= value",
+ /* 45 */ "exprs ::= UNIMATH value",
+ /* 46 */ "exprs ::= exprs math value",
+ /* 47 */ "exprs ::= array",
+ /* 48 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr",
+ /* 49 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr",
+ /* 50 */ "math ::= UNIMATH",
+ /* 51 */ "math ::= MATH",
+ /* 52 */ "math ::= ANDSYM",
+ /* 53 */ "value ::= variable",
+ /* 54 */ "value ::= TYPECAST variable",
+ /* 55 */ "value ::= variable INCDEC",
+ /* 56 */ "value ::= INTEGER",
+ /* 57 */ "value ::= INTEGER DOT INTEGER",
+ /* 58 */ "value ::= BOOLEAN",
+ /* 59 */ "value ::= NULL",
+ /* 60 */ "value ::= function",
+ /* 61 */ "value ::= OPENP expr CLOSEP",
+ /* 62 */ "value ::= SINGLEQUOTESTRING",
+ /* 63 */ "value ::= QUOTE doublequoted QUOTE",
+ /* 64 */ "value ::= QUOTE QUOTE",
+ /* 65 */ "value ::= ID DOUBLECOLON method",
+ /* 66 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP",
+ /* 67 */ "value ::= ID DOUBLECOLON method objectchain",
+ /* 68 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain",
+ /* 69 */ "value ::= ID DOUBLECOLON ID",
+ /* 70 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex",
+ /* 71 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain",
+ /* 72 */ "value ::= smartytag",
+ /* 73 */ "variable ::= varindexed",
+ /* 74 */ "variable ::= DOLLAR varvar AT ID",
+ /* 75 */ "variable ::= object",
+ /* 76 */ "variable ::= HATCH ID HATCH",
+ /* 77 */ "variable ::= HATCH variable HATCH",
+ /* 78 */ "varindexed ::= DOLLAR varvar arrayindex",
+ /* 79 */ "arrayindex ::= arrayindex indexdef",
+ /* 80 */ "arrayindex ::=",
+ /* 81 */ "indexdef ::= DOT ID",
+ /* 82 */ "indexdef ::= DOT BOOLEAN",
+ /* 83 */ "indexdef ::= DOT NULL",
+ /* 84 */ "indexdef ::= DOT INTEGER",
+ /* 85 */ "indexdef ::= DOT INTEGER ID",
+ /* 86 */ "indexdef ::= DOT variable",
+ /* 87 */ "indexdef ::= DOT LDEL exprs RDEL",
+ /* 88 */ "indexdef ::= OPENB ID CLOSEB",
+ /* 89 */ "indexdef ::= OPENB ID DOT ID CLOSEB",
+ /* 90 */ "indexdef ::= OPENB exprs CLOSEB",
+ /* 91 */ "indexdef ::= OPENB CLOSEB",
+ /* 92 */ "varvar ::= varvarele",
+ /* 93 */ "varvar ::= varvar varvarele",
+ /* 94 */ "varvarele ::= ID",
+ /* 95 */ "varvarele ::= LDEL expr RDEL",
+ /* 96 */ "object ::= varindexed objectchain",
+ /* 97 */ "objectchain ::= objectelement",
+ /* 98 */ "objectchain ::= objectchain objectelement",
+ /* 99 */ "objectelement ::= PTR ID arrayindex",
+ /* 100 */ "objectelement ::= PTR variable arrayindex",
+ /* 101 */ "objectelement ::= PTR LDEL expr RDEL arrayindex",
+ /* 102 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex",
+ /* 103 */ "objectelement ::= PTR method",
+ /* 104 */ "function ::= ID OPENP params CLOSEP",
+ /* 105 */ "method ::= ID OPENP params CLOSEP",
+ /* 106 */ "params ::= expr COMMA params",
+ /* 107 */ "params ::= expr",
+ /* 108 */ "params ::=",
+ /* 109 */ "modifier ::= VERT AT ID",
+ /* 110 */ "modifier ::= VERT ID",
+ /* 111 */ "modparameters ::= modparameters modparameter",
+ /* 112 */ "modparameters ::=",
+ /* 113 */ "modparameter ::= COLON exprs",
+ /* 114 */ "modparameter ::= COLON ID",
+ /* 115 */ "ifexprs ::= ifexpr",
+ /* 116 */ "ifexprs ::= NOT ifexprs",
+ /* 117 */ "ifexprs ::= OPENP ifexprs CLOSEP",
+ /* 118 */ "ifexpr ::= expr",
+ /* 119 */ "ifexpr ::= expr ifcond expr",
+ /* 120 */ "ifexpr ::= expr ISIN array",
+ /* 121 */ "ifexpr ::= expr ISIN value",
+ /* 122 */ "ifexpr ::= ifexprs lop ifexprs",
+ /* 123 */ "ifexpr ::= ifexprs ISDIVBY ifexprs",
+ /* 124 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs",
+ /* 125 */ "ifexpr ::= ifexprs ISEVEN",
+ /* 126 */ "ifexpr ::= ifexprs ISNOTEVEN",
+ /* 127 */ "ifexpr ::= ifexprs ISEVENBY ifexprs",
+ /* 128 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs",
+ /* 129 */ "ifexpr ::= ifexprs ISODD",
+ /* 130 */ "ifexpr ::= ifexprs ISNOTODD",
+ /* 131 */ "ifexpr ::= ifexprs ISODDBY ifexprs",
+ /* 132 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs",
+ /* 133 */ "ifexpr ::= value INSTANCEOF ID",
+ /* 134 */ "ifexpr ::= value INSTANCEOF value",
+ /* 135 */ "ifcond ::= EQUALS",
+ /* 136 */ "ifcond ::= NOTEQUALS",
+ /* 137 */ "ifcond ::= GREATERTHAN",
+ /* 138 */ "ifcond ::= LESSTHAN",
+ /* 139 */ "ifcond ::= GREATEREQUAL",
+ /* 140 */ "ifcond ::= LESSEQUAL",
+ /* 141 */ "ifcond ::= IDENTITY",
+ /* 142 */ "ifcond ::= NONEIDENTITY",
+ /* 143 */ "ifcond ::= MOD",
+ /* 144 */ "lop ::= LAND",
+ /* 145 */ "lop ::= LOR",
+ /* 146 */ "lop ::= LXOR",
+ /* 147 */ "array ::= OPENB arrayelements CLOSEB",
+ /* 148 */ "arrayelements ::= arrayelement",
+ /* 149 */ "arrayelements ::= arrayelements COMMA arrayelement",
+ /* 150 */ "arrayelements ::=",
+ /* 151 */ "arrayelement ::= expr APTR expr",
+ /* 152 */ "arrayelement ::= ID APTR expr",
+ /* 153 */ "arrayelement ::= expr",
+ /* 154 */ "doublequoted ::= doublequoted doublequotedcontent",
+ /* 155 */ "doublequoted ::= doublequotedcontent",
+ /* 156 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",
+ /* 157 */ "doublequotedcontent ::= DOLLARID",
+ /* 158 */ "doublequotedcontent ::= LDEL variable RDEL",
+ /* 159 */ "doublequotedcontent ::= LDEL expr RDEL",
+ /* 160 */ "doublequotedcontent ::= smartytag",
+ /* 161 */ "doublequotedcontent ::= OTHER",
+ /* 162 */ "optspace ::= SPACE",
+ /* 163 */ "optspace ::=",
);
/**
@@ -1716,181 +1606,170 @@ static public $yy_action = array(
* </pre>
*/
static public $yyRuleInfo = array(
+ array( 'lhs' => 68, 'rhs' => 1 ),
+ array( 'lhs' => 69, 'rhs' => 1 ),
+ array( 'lhs' => 69, 'rhs' => 2 ),
+ array( 'lhs' => 70, 'rhs' => 1 ),
+ array( 'lhs' => 70, 'rhs' => 1 ),
+ array( 'lhs' => 70, 'rhs' => 3 ),
+ array( 'lhs' => 70, 'rhs' => 3 ),
+ array( 'lhs' => 70, 'rhs' => 1 ),
+ array( 'lhs' => 70, 'rhs' => 1 ),
+ array( 'lhs' => 70, 'rhs' => 1 ),
+ array( 'lhs' => 71, 'rhs' => 4 ),
+ array( 'lhs' => 71, 'rhs' => 4 ),
+ array( 'lhs' => 71, 'rhs' => 4 ),
+ array( 'lhs' => 71, 'rhs' => 6 ),
+ array( 'lhs' => 71, 'rhs' => 6 ),
+ array( 'lhs' => 71, 'rhs' => 4 ),
+ array( 'lhs' => 71, 'rhs' => 3 ),
+ array( 'lhs' => 71, 'rhs' => 6 ),
+ array( 'lhs' => 71, 'rhs' => 6 ),
+ array( 'lhs' => 71, 'rhs' => 8 ),
+ array( 'lhs' => 71, 'rhs' => 5 ),
+ array( 'lhs' => 71, 'rhs' => 5 ),
+ array( 'lhs' => 71, 'rhs' => 13 ),
+ array( 'lhs' => 84, 'rhs' => 2 ),
+ array( 'lhs' => 84, 'rhs' => 1 ),
+ array( 'lhs' => 71, 'rhs' => 8 ),
+ array( 'lhs' => 71, 'rhs' => 8 ),
+ array( 'lhs' => 71, 'rhs' => 4 ),
+ array( 'lhs' => 71, 'rhs' => 6 ),
+ array( 'lhs' => 71, 'rhs' => 5 ),
+ array( 'lhs' => 73, 'rhs' => 2 ),
+ array( 'lhs' => 73, 'rhs' => 1 ),
+ array( 'lhs' => 73, 'rhs' => 0 ),
+ array( 'lhs' => 87, 'rhs' => 4 ),
+ array( 'lhs' => 87, 'rhs' => 4 ),
+ array( 'lhs' => 87, 'rhs' => 4 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 81, 'rhs' => 1 ),
+ array( 'lhs' => 81, 'rhs' => 3 ),
+ array( 'lhs' => 80, 'rhs' => 4 ),
array( 'lhs' => 74, 'rhs' => 1 ),
- array( 'lhs' => 75, 'rhs' => 1 ),
- array( 'lhs' => 75, 'rhs' => 2 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 3 ),
+ array( 'lhs' => 74, 'rhs' => 1 ),
+ array( 'lhs' => 74, 'rhs' => 4 ),
+ array( 'lhs' => 74, 'rhs' => 3 ),
+ array( 'lhs' => 88, 'rhs' => 1 ),
+ array( 'lhs' => 88, 'rhs' => 2 ),
+ array( 'lhs' => 88, 'rhs' => 3 ),
+ array( 'lhs' => 88, 'rhs' => 1 ),
+ array( 'lhs' => 75, 'rhs' => 7 ),
+ array( 'lhs' => 75, 'rhs' => 7 ),
+ array( 'lhs' => 89, 'rhs' => 1 ),
+ array( 'lhs' => 89, 'rhs' => 1 ),
+ array( 'lhs' => 89, 'rhs' => 1 ),
+ array( 'lhs' => 85, 'rhs' => 1 ),
+ array( 'lhs' => 85, 'rhs' => 2 ),
+ array( 'lhs' => 85, 'rhs' => 2 ),
+ array( 'lhs' => 85, 'rhs' => 1 ),
+ array( 'lhs' => 85, 'rhs' => 3 ),
+ array( 'lhs' => 85, 'rhs' => 1 ),
+ array( 'lhs' => 85, 'rhs' => 1 ),
+ array( 'lhs' => 85, 'rhs' => 1 ),
+ array( 'lhs' => 85, 'rhs' => 3 ),
+ array( 'lhs' => 85, 'rhs' => 1 ),
+ array( 'lhs' => 85, 'rhs' => 3 ),
+ array( 'lhs' => 85, 'rhs' => 2 ),
+ array( 'lhs' => 85, 'rhs' => 3 ),
+ array( 'lhs' => 85, 'rhs' => 7 ),
+ array( 'lhs' => 85, 'rhs' => 4 ),
+ array( 'lhs' => 85, 'rhs' => 8 ),
+ array( 'lhs' => 85, 'rhs' => 3 ),
+ array( 'lhs' => 85, 'rhs' => 5 ),
+ array( 'lhs' => 85, 'rhs' => 6 ),
+ array( 'lhs' => 85, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 4 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 3 ),
+ array( 'lhs' => 72, 'rhs' => 3 ),
array( 'lhs' => 76, 'rhs' => 3 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 77, 'rhs' => 4 ),
- array( 'lhs' => 77, 'rhs' => 4 ),
- array( 'lhs' => 77, 'rhs' => 4 ),
- array( 'lhs' => 77, 'rhs' => 6 ),
- array( 'lhs' => 77, 'rhs' => 6 ),
- array( 'lhs' => 77, 'rhs' => 4 ),
- array( 'lhs' => 77, 'rhs' => 3 ),
- array( 'lhs' => 77, 'rhs' => 6 ),
- array( 'lhs' => 77, 'rhs' => 6 ),
- array( 'lhs' => 77, 'rhs' => 8 ),
- array( 'lhs' => 77, 'rhs' => 5 ),
- array( 'lhs' => 77, 'rhs' => 5 ),
- array( 'lhs' => 77, 'rhs' => 13 ),
- array( 'lhs' => 90, 'rhs' => 2 ),
- array( 'lhs' => 90, 'rhs' => 1 ),
- array( 'lhs' => 77, 'rhs' => 8 ),
- array( 'lhs' => 77, 'rhs' => 8 ),
- array( 'lhs' => 77, 'rhs' => 4 ),
- array( 'lhs' => 77, 'rhs' => 6 ),
- array( 'lhs' => 77, 'rhs' => 5 ),
- array( 'lhs' => 79, 'rhs' => 2 ),
- array( 'lhs' => 79, 'rhs' => 1 ),
- array( 'lhs' => 79, 'rhs' => 0 ),
- array( 'lhs' => 93, 'rhs' => 4 ),
- array( 'lhs' => 93, 'rhs' => 4 ),
- array( 'lhs' => 93, 'rhs' => 4 ),
- array( 'lhs' => 93, 'rhs' => 2 ),
- array( 'lhs' => 87, 'rhs' => 1 ),
- array( 'lhs' => 87, 'rhs' => 3 ),
- array( 'lhs' => 86, 'rhs' => 4 ),
- array( 'lhs' => 80, 'rhs' => 1 ),
- array( 'lhs' => 80, 'rhs' => 1 ),
- array( 'lhs' => 80, 'rhs' => 4 ),
- array( 'lhs' => 80, 'rhs' => 3 ),
+ array( 'lhs' => 95, 'rhs' => 2 ),
+ array( 'lhs' => 95, 'rhs' => 0 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 97, 'rhs' => 3 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 97, 'rhs' => 4 ),
+ array( 'lhs' => 97, 'rhs' => 3 ),
+ array( 'lhs' => 97, 'rhs' => 5 ),
+ array( 'lhs' => 97, 'rhs' => 3 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 83, 'rhs' => 1 ),
+ array( 'lhs' => 83, 'rhs' => 2 ),
+ array( 'lhs' => 98, 'rhs' => 1 ),
+ array( 'lhs' => 98, 'rhs' => 3 ),
+ array( 'lhs' => 96, 'rhs' => 2 ),
array( 'lhs' => 94, 'rhs' => 1 ),
array( 'lhs' => 94, 'rhs' => 2 ),
- array( 'lhs' => 94, 'rhs' => 3 ),
- array( 'lhs' => 94, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 7 ),
- array( 'lhs' => 81, 'rhs' => 7 ),
- array( 'lhs' => 95, 'rhs' => 1 ),
- array( 'lhs' => 95, 'rhs' => 1 ),
- array( 'lhs' => 95, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 2 ),
- array( 'lhs' => 91, 'rhs' => 2 ),
- array( 'lhs' => 91, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 3 ),
- array( 'lhs' => 91, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 3 ),
- array( 'lhs' => 91, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 3 ),
- array( 'lhs' => 91, 'rhs' => 2 ),
- array( 'lhs' => 91, 'rhs' => 3 ),
- array( 'lhs' => 91, 'rhs' => 2 ),
- array( 'lhs' => 91, 'rhs' => 3 ),
- array( 'lhs' => 91, 'rhs' => 7 ),
- array( 'lhs' => 91, 'rhs' => 4 ),
- array( 'lhs' => 91, 'rhs' => 8 ),
- array( 'lhs' => 91, 'rhs' => 3 ),
- array( 'lhs' => 91, 'rhs' => 5 ),
- array( 'lhs' => 91, 'rhs' => 6 ),
- array( 'lhs' => 91, 'rhs' => 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' => 82, 'rhs' => 3 ),
- array( 'lhs' => 102, 'rhs' => 2 ),
- array( 'lhs' => 102, 'rhs' => 0 ),
- array( 'lhs' => 104, 'rhs' => 2 ),
- array( 'lhs' => 104, 'rhs' => 2 ),
- array( 'lhs' => 104, 'rhs' => 2 ),
- array( 'lhs' => 104, 'rhs' => 2 ),
- array( 'lhs' => 104, 'rhs' => 3 ),
- array( 'lhs' => 104, 'rhs' => 2 ),
- array( 'lhs' => 104, 'rhs' => 4 ),
- array( 'lhs' => 104, 'rhs' => 3 ),
- array( 'lhs' => 104, 'rhs' => 5 ),
- array( 'lhs' => 104, 'rhs' => 3 ),
- array( 'lhs' => 104, 'rhs' => 2 ),
- array( 'lhs' => 89, 'rhs' => 1 ),
- array( 'lhs' => 89, 'rhs' => 2 ),
- array( 'lhs' => 105, 'rhs' => 1 ),
- array( 'lhs' => 105, 'rhs' => 3 ),
- array( 'lhs' => 103, 'rhs' => 2 ),
+ array( 'lhs' => 99, 'rhs' => 3 ),
+ array( 'lhs' => 99, 'rhs' => 3 ),
+ array( 'lhs' => 99, 'rhs' => 5 ),
+ array( 'lhs' => 99, 'rhs' => 6 ),
+ array( 'lhs' => 99, 'rhs' => 2 ),
+ array( 'lhs' => 90, 'rhs' => 4 ),
+ array( 'lhs' => 92, 'rhs' => 4 ),
+ array( 'lhs' => 93, 'rhs' => 3 ),
+ array( 'lhs' => 93, 'rhs' => 1 ),
+ array( 'lhs' => 93, 'rhs' => 0 ),
+ array( 'lhs' => 77, 'rhs' => 3 ),
+ array( 'lhs' => 77, 'rhs' => 2 ),
+ array( 'lhs' => 78, 'rhs' => 2 ),
+ array( 'lhs' => 78, 'rhs' => 0 ),
+ array( 'lhs' => 100, 'rhs' => 2 ),
+ array( 'lhs' => 100, 'rhs' => 2 ),
+ array( 'lhs' => 79, 'rhs' => 1 ),
+ array( 'lhs' => 79, 'rhs' => 2 ),
+ array( 'lhs' => 79, 'rhs' => 3 ),
array( 'lhs' => 101, 'rhs' => 1 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
array( 'lhs' => 101, 'rhs' => 2 ),
+ array( 'lhs' => 101, 'rhs' => 2 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 2 ),
+ array( 'lhs' => 101, 'rhs' => 2 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 3 ),
+ array( 'lhs' => 104, 'rhs' => 1 ),
+ array( 'lhs' => 104, 'rhs' => 3 ),
+ array( 'lhs' => 104, 'rhs' => 0 ),
+ array( 'lhs' => 105, 'rhs' => 3 ),
+ array( 'lhs' => 105, 'rhs' => 3 ),
+ array( 'lhs' => 105, 'rhs' => 1 ),
+ array( 'lhs' => 91, 'rhs' => 2 ),
+ array( 'lhs' => 91, 'rhs' => 1 ),
array( 'lhs' => 106, 'rhs' => 3 ),
+ array( 'lhs' => 106, 'rhs' => 1 ),
array( 'lhs' => 106, 'rhs' => 3 ),
- array( 'lhs' => 106, 'rhs' => 5 ),
- array( 'lhs' => 106, 'rhs' => 6 ),
- array( 'lhs' => 106, 'rhs' => 2 ),
- array( 'lhs' => 96, 'rhs' => 4 ),
- array( 'lhs' => 99, 'rhs' => 4 ),
- array( 'lhs' => 100, 'rhs' => 3 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 0 ),
- array( 'lhs' => 83, 'rhs' => 3 ),
- array( 'lhs' => 83, 'rhs' => 2 ),
- array( 'lhs' => 84, 'rhs' => 2 ),
- array( 'lhs' => 84, 'rhs' => 0 ),
- array( 'lhs' => 107, 'rhs' => 2 ),
- array( 'lhs' => 107, 'rhs' => 2 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 2 ),
- array( 'lhs' => 85, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 1 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 2 ),
- array( 'lhs' => 108, 'rhs' => 2 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 2 ),
- array( 'lhs' => 108, 'rhs' => 2 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 110, 'rhs' => 1 ),
- array( 'lhs' => 110, 'rhs' => 1 ),
- array( 'lhs' => 110, 'rhs' => 1 ),
- array( 'lhs' => 92, 'rhs' => 3 ),
- array( 'lhs' => 111, 'rhs' => 1 ),
- array( 'lhs' => 111, 'rhs' => 3 ),
- array( 'lhs' => 111, 'rhs' => 0 ),
- array( 'lhs' => 112, 'rhs' => 3 ),
- array( 'lhs' => 112, 'rhs' => 3 ),
- array( 'lhs' => 112, 'rhs' => 1 ),
- array( 'lhs' => 98, 'rhs' => 2 ),
- array( 'lhs' => 98, 'rhs' => 1 ),
- array( 'lhs' => 113, 'rhs' => 3 ),
- array( 'lhs' => 113, 'rhs' => 3 ),
- array( 'lhs' => 113, 'rhs' => 2 ),
- array( 'lhs' => 113, 'rhs' => 3 ),
- array( 'lhs' => 113, 'rhs' => 1 ),
- array( 'lhs' => 113, 'rhs' => 2 ),
- array( 'lhs' => 113, 'rhs' => 2 ),
- array( 'lhs' => 113, 'rhs' => 2 ),
- array( 'lhs' => 113, 'rhs' => 1 ),
- array( 'lhs' => 88, 'rhs' => 1 ),
- array( 'lhs' => 88, 'rhs' => 0 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 97, 'rhs' => 1 ),
- array( 'lhs' => 114, 'rhs' => 1 ),
- array( 'lhs' => 114, 'rhs' => 1 ),
+ array( 'lhs' => 106, 'rhs' => 3 ),
+ array( 'lhs' => 106, 'rhs' => 1 ),
+ array( 'lhs' => 106, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 0 ),
);
/**
@@ -1901,30 +1780,27 @@ static public $yy_action = array(
*/
static public $yyReduceMap = array(
0 => 0,
- 46 => 0,
- 55 => 0,
+ 44 => 0,
+ 53 => 0,
+ 56 => 0,
58 => 0,
+ 59 => 0,
60 => 0,
- 61 => 0,
62 => 0,
- 64 => 0,
- 79 => 0,
- 152 => 0,
+ 75 => 0,
+ 148 => 0,
1 => 1,
- 43 => 1,
- 49 => 1,
- 52 => 1,
- 53 => 1,
- 96 => 1,
- 119 => 1,
- 159 => 1,
- 168 => 1,
- 169 => 1,
- 172 => 1,
- 173 => 1,
- 174 => 1,
+ 41 => 1,
+ 47 => 1,
+ 50 => 1,
+ 51 => 1,
+ 92 => 1,
+ 115 => 1,
+ 155 => 1,
+ 161 => 1,
+ 162 => 1,
2 => 2,
- 115 => 2,
+ 111 => 2,
3 => 3,
4 => 4,
5 => 5,
@@ -1933,12 +1809,12 @@ static public $yy_action = array(
8 => 8,
9 => 9,
10 => 10,
- 11 => 11,
- 12 => 12,
- 13 => 12,
- 14 => 12,
+ 11 => 10,
+ 12 => 10,
+ 13 => 13,
+ 14 => 13,
15 => 15,
- 16 => 15,
+ 16 => 16,
17 => 17,
18 => 18,
19 => 19,
@@ -1947,76 +1823,74 @@ static public $yy_action = array(
22 => 22,
23 => 23,
24 => 24,
+ 31 => 24,
+ 107 => 24,
+ 153 => 24,
25 => 25,
26 => 26,
- 33 => 26,
- 111 => 26,
- 157 => 26,
27 => 27,
28 => 28,
29 => 29,
30 => 30,
- 31 => 31,
32 => 32,
- 34 => 34,
- 35 => 35,
- 36 => 35,
- 37 => 35,
+ 33 => 33,
+ 34 => 33,
+ 35 => 33,
+ 36 => 36,
+ 37 => 37,
38 => 38,
39 => 39,
40 => 40,
- 41 => 41,
42 => 42,
- 44 => 44,
+ 43 => 43,
45 => 45,
- 47 => 47,
- 56 => 47,
- 57 => 47,
+ 54 => 45,
+ 55 => 45,
+ 46 => 46,
48 => 48,
- 50 => 50,
- 51 => 50,
- 54 => 54,
- 59 => 59,
+ 49 => 48,
+ 52 => 52,
+ 57 => 57,
+ 61 => 61,
63 => 63,
+ 64 => 64,
65 => 65,
66 => 66,
- 68 => 66,
67 => 67,
+ 68 => 68,
69 => 69,
70 => 70,
71 => 71,
72 => 72,
73 => 73,
74 => 74,
- 75 => 75,
76 => 76,
77 => 77,
78 => 78,
+ 79 => 79,
+ 154 => 79,
80 => 80,
+ 112 => 80,
81 => 81,
- 82 => 82,
- 83 => 83,
- 158 => 83,
- 166 => 83,
- 171 => 83,
+ 82 => 81,
+ 83 => 81,
84 => 84,
- 116 => 84,
85 => 85,
- 86 => 85,
- 87 => 85,
+ 86 => 86,
+ 87 => 87,
+ 90 => 87,
88 => 88,
89 => 89,
- 90 => 90,
91 => 91,
- 94 => 91,
- 92 => 92,
+ 163 => 91,
93 => 93,
+ 94 => 94,
95 => 95,
- 170 => 95,
+ 117 => 95,
+ 96 => 96,
97 => 97,
98 => 98,
99 => 99,
- 121 => 99,
100 => 100,
101 => 101,
102 => 102,
@@ -2024,32 +1898,32 @@ static public $yy_action = array(
104 => 104,
105 => 105,
106 => 106,
- 107 => 107,
108 => 108,
109 => 109,
110 => 110,
- 112 => 112,
113 => 113,
114 => 114,
- 117 => 117,
+ 116 => 116,
118 => 118,
+ 119 => 119,
+ 122 => 119,
+ 133 => 119,
120 => 120,
- 122 => 122,
+ 121 => 121,
123 => 123,
- 126 => 123,
- 137 => 123,
124 => 124,
125 => 125,
+ 130 => 125,
+ 126 => 126,
+ 129 => 126,
127 => 127,
+ 132 => 127,
128 => 128,
- 129 => 129,
- 134 => 129,
- 130 => 130,
- 133 => 130,
- 131 => 131,
- 136 => 131,
- 132 => 132,
- 135 => 132,
+ 131 => 128,
+ 134 => 134,
+ 135 => 135,
+ 136 => 136,
+ 137 => 137,
138 => 138,
139 => 139,
140 => 140,
@@ -2060,21 +1934,15 @@ static public $yy_action = array(
145 => 145,
146 => 146,
147 => 147,
- 148 => 148,
149 => 149,
150 => 150,
151 => 151,
- 153 => 153,
- 154 => 154,
- 155 => 155,
+ 152 => 152,
156 => 156,
+ 158 => 156,
+ 157 => 157,
+ 159 => 159,
160 => 160,
- 161 => 161,
- 162 => 162,
- 163 => 163,
- 164 => 164,
- 165 => 165,
- 167 => 167,
);
/* Beginning here are the reduction cases. A typical example
** follows:
@@ -2084,31 +1952,25 @@ static public $yy_action = array(
*/
#line 79 "smarty_internal_templateparser.y"
function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2092 "smarty_internal_templateparser.php"
+#line 1960 "smarty_internal_templateparser.php"
#line 85 "smarty_internal_templateparser.y"
function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2095 "smarty_internal_templateparser.php"
+#line 1963 "smarty_internal_templateparser.php"
#line 87 "smarty_internal_templateparser.y"
function yy_r2(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2098 "smarty_internal_templateparser.php"
+#line 1966 "smarty_internal_templateparser.php"
#line 93 "smarty_internal_templateparser.y"
function yy_r3(){
if ($this->compiler->has_code) {
$tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array();
$this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor, $this->compiler,true);
} else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->compiler->has_variable_string = false; }
-#line 2105 "smarty_internal_templateparser.php"
+#line 1973 "smarty_internal_templateparser.php"
#line 100 "smarty_internal_templateparser.y"
function yy_r4(){ $this->_retvalue = ''; }
-#line 2108 "smarty_internal_templateparser.php"
+#line 1976 "smarty_internal_templateparser.php"
#line 105 "smarty_internal_templateparser.y"
- function yy_r5(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false); }
-#line 2111 "smarty_internal_templateparser.php"
-#line 107 "smarty_internal_templateparser.y"
- function yy_r6(){ $this->_retvalue = $this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false); }
-#line 2114 "smarty_internal_templateparser.php"
-#line 109 "smarty_internal_templateparser.y"
- function yy_r7(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
+ function yy_r5(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
$this->_retvalue = $this->cacher->processNocacheCode("<?php echo htmlspecialchars('<?php".str_replace("'","\'",$this->yystack[$this->yyidx + -1]->minor)."?>', ENT_QUOTES);?>\n", $this->compiler, false);
} elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
$this->_retvalue = $this->cacher->processNocacheCode(htmlspecialchars('<?php'.$this->yystack[$this->yyidx + -1]->minor.'?>', ENT_QUOTES), $this->compiler, false);
@@ -2118,9 +1980,9 @@ static public $yy_action = array(
$this->_retvalue = '';
}
}
-#line 2126 "smarty_internal_templateparser.php"
-#line 120 "smarty_internal_templateparser.y"
- function yy_r8(){
+#line 1988 "smarty_internal_templateparser.php"
+#line 116 "smarty_internal_templateparser.y"
+ function yy_r6(){
if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) {
$this->_retvalue = $this->cacher->processNocacheCode("<?php echo '<?=".$this->yystack[$this->yyidx + -1]->minor."?>'?>\n", $this->compiler, false);
} elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
@@ -2129,33 +1991,33 @@ static public $yy_action = array(
$this->_retvalue = '';
}
}
-#line 2137 "smarty_internal_templateparser.php"
-#line 131 "smarty_internal_templateparser.y"
- function yy_r9(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true); }
-#line 2140 "smarty_internal_templateparser.php"
-#line 132 "smarty_internal_templateparser.y"
- function yy_r10(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("<?php echo '?>';?>\n", $this->compiler, true); }
-#line 2143 "smarty_internal_templateparser.php"
-#line 134 "smarty_internal_templateparser.y"
- function yy_r11(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); }
-#line 2146 "smarty_internal_templateparser.php"
-#line 141 "smarty_internal_templateparser.y"
- function yy_r12(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2149 "smarty_internal_templateparser.php"
+#line 1999 "smarty_internal_templateparser.php"
+#line 127 "smarty_internal_templateparser.y"
+ function yy_r7(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true); }
+#line 2002 "smarty_internal_templateparser.php"
+#line 128 "smarty_internal_templateparser.y"
+ function yy_r8(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("<?php echo '?>';?>\n", $this->compiler, true); }
+#line 2005 "smarty_internal_templateparser.php"
+#line 130 "smarty_internal_templateparser.y"
+ function yy_r9(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); }
+#line 2008 "smarty_internal_templateparser.php"
+#line 137 "smarty_internal_templateparser.y"
+ function yy_r10(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
+#line 2011 "smarty_internal_templateparser.php"
+#line 147 "smarty_internal_templateparser.y"
+ function yy_r13(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); }
+#line 2014 "smarty_internal_templateparser.php"
+#line 150 "smarty_internal_templateparser.y"
+ function yy_r15(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }
+#line 2017 "smarty_internal_templateparser.php"
#line 151 "smarty_internal_templateparser.y"
- function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2152 "smarty_internal_templateparser.php"
-#line 154 "smarty_internal_templateparser.y"
- function yy_r17(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }
-#line 2155 "smarty_internal_templateparser.php"
+ function yy_r16(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); }
+#line 2020 "smarty_internal_templateparser.php"
+#line 153 "smarty_internal_templateparser.y"
+ function yy_r17(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
+#line 2023 "smarty_internal_templateparser.php"
#line 155 "smarty_internal_templateparser.y"
- function yy_r18(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); }
-#line 2158 "smarty_internal_templateparser.php"
-#line 157 "smarty_internal_templateparser.y"
- function yy_r19(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2161 "smarty_internal_templateparser.php"
-#line 159 "smarty_internal_templateparser.y"
- function yy_r20(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
+ function yy_r18(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) {
$this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>";
} else {
@@ -2168,9 +2030,9 @@ static public $yy_action = array(
}
}
}
-#line 2176 "smarty_internal_templateparser.php"
-#line 173 "smarty_internal_templateparser.y"
- function yy_r21(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'<?php echo ';
+#line 2038 "smarty_internal_templateparser.php"
+#line 169 "smarty_internal_templateparser.y"
+ function yy_r19(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'<?php echo ';
if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) {
$this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>";
} else {
@@ -2183,51 +2045,51 @@ static public $yy_action = array(
}
}
}
-#line 2191 "smarty_internal_templateparser.php"
-#line 187 "smarty_internal_templateparser.y"
- function yy_r22(){if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
+#line 2053 "smarty_internal_templateparser.php"
+#line 183 "smarty_internal_templateparser.y"
+ function yy_r20(){if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2197 "smarty_internal_templateparser.php"
-#line 191 "smarty_internal_templateparser.y"
- function yy_r23(){ if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
+#line 2059 "smarty_internal_templateparser.php"
+#line 187 "smarty_internal_templateparser.y"
+ function yy_r21(){ if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2203 "smarty_internal_templateparser.php"
-#line 196 "smarty_internal_templateparser.y"
- function yy_r24(){
+#line 2065 "smarty_internal_templateparser.php"
+#line 192 "smarty_internal_templateparser.y"
+ function yy_r22(){
if ($this->yystack[$this->yyidx + -11]->minor != 'for') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -11]->minor . "\"");
}
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2210 "smarty_internal_templateparser.php"
-#line 201 "smarty_internal_templateparser.y"
- function yy_r25(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2213 "smarty_internal_templateparser.php"
-#line 202 "smarty_internal_templateparser.y"
- function yy_r26(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2216 "smarty_internal_templateparser.php"
-#line 204 "smarty_internal_templateparser.y"
- function yy_r27(){
+#line 2072 "smarty_internal_templateparser.php"
+#line 197 "smarty_internal_templateparser.y"
+ function yy_r23(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2075 "smarty_internal_templateparser.php"
+#line 198 "smarty_internal_templateparser.y"
+ function yy_r24(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
+#line 2078 "smarty_internal_templateparser.php"
+#line 200 "smarty_internal_templateparser.y"
+ function yy_r25(){
if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\"");
}
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2223 "smarty_internal_templateparser.php"
-#line 209 "smarty_internal_templateparser.y"
- function yy_r28(){
+#line 2085 "smarty_internal_templateparser.php"
+#line 205 "smarty_internal_templateparser.y"
+ function yy_r26(){
if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\"");
}
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2230 "smarty_internal_templateparser.php"
-#line 216 "smarty_internal_templateparser.y"
- function yy_r29(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); }
-#line 2233 "smarty_internal_templateparser.php"
-#line 217 "smarty_internal_templateparser.y"
- function yy_r30(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
+#line 2092 "smarty_internal_templateparser.php"
+#line 212 "smarty_internal_templateparser.y"
+ function yy_r27(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); }
+#line 2095 "smarty_internal_templateparser.php"
+#line 213 "smarty_internal_templateparser.y"
+ function yy_r28(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) {
$this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>";
} else {
@@ -2240,39 +2102,39 @@ static public $yy_action = array(
}
}
}
-#line 2248 "smarty_internal_templateparser.php"
-#line 231 "smarty_internal_templateparser.y"
- function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2251 "smarty_internal_templateparser.php"
+#line 2110 "smarty_internal_templateparser.php"
+#line 227 "smarty_internal_templateparser.y"
+ function yy_r29(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }
+#line 2113 "smarty_internal_templateparser.php"
+#line 234 "smarty_internal_templateparser.y"
+ function yy_r30(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); }
+#line 2116 "smarty_internal_templateparser.php"
#line 238 "smarty_internal_templateparser.y"
- function yy_r32(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); }
-#line 2254 "smarty_internal_templateparser.php"
-#line 242 "smarty_internal_templateparser.y"
- function yy_r34(){ $this->_retvalue = array(); }
-#line 2257 "smarty_internal_templateparser.php"
-#line 245 "smarty_internal_templateparser.y"
- function yy_r35(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2260 "smarty_internal_templateparser.php"
-#line 248 "smarty_internal_templateparser.y"
- function yy_r38(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); }
-#line 2263 "smarty_internal_templateparser.php"
-#line 254 "smarty_internal_templateparser.y"
- function yy_r39(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
-#line 2266 "smarty_internal_templateparser.php"
-#line 255 "smarty_internal_templateparser.y"
- function yy_r40(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
-#line 2269 "smarty_internal_templateparser.php"
-#line 257 "smarty_internal_templateparser.y"
- function yy_r41(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2272 "smarty_internal_templateparser.php"
+ function yy_r32(){ $this->_retvalue = array(); }
+#line 2119 "smarty_internal_templateparser.php"
+#line 241 "smarty_internal_templateparser.y"
+ function yy_r33(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
+#line 2122 "smarty_internal_templateparser.php"
+#line 244 "smarty_internal_templateparser.y"
+ function yy_r36(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); }
+#line 2125 "smarty_internal_templateparser.php"
+#line 250 "smarty_internal_templateparser.y"
+ function yy_r37(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
+#line 2128 "smarty_internal_templateparser.php"
+#line 251 "smarty_internal_templateparser.y"
+ function yy_r38(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
+#line 2131 "smarty_internal_templateparser.php"
+#line 253 "smarty_internal_templateparser.y"
+ function yy_r39(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }
+#line 2134 "smarty_internal_templateparser.php"
+#line 259 "smarty_internal_templateparser.y"
+ function yy_r40(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
+#line 2137 "smarty_internal_templateparser.php"
+#line 262 "smarty_internal_templateparser.y"
+ function yy_r42(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }
+#line 2140 "smarty_internal_templateparser.php"
#line 263 "smarty_internal_templateparser.y"
- function yy_r42(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
-#line 2275 "smarty_internal_templateparser.php"
-#line 266 "smarty_internal_templateparser.y"
- function yy_r44(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }
-#line 2278 "smarty_internal_templateparser.php"
-#line 267 "smarty_internal_templateparser.y"
- function yy_r45(){
+ function yy_r43(){
if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) {
$this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")";
} else {
@@ -2285,276 +2147,264 @@ static public $yy_action = array(
}
}
}
-#line 2293 "smarty_internal_templateparser.php"
-#line 284 "smarty_internal_templateparser.y"
- function yy_r47(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2296 "smarty_internal_templateparser.php"
-#line 286 "smarty_internal_templateparser.y"
- function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; }
-#line 2299 "smarty_internal_templateparser.php"
-#line 293 "smarty_internal_templateparser.y"
- function yy_r50(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2302 "smarty_internal_templateparser.php"
-#line 307 "smarty_internal_templateparser.y"
- function yy_r54(){$this->_retvalue = ' & '; }
-#line 2305 "smarty_internal_templateparser.php"
-#line 315 "smarty_internal_templateparser.y"
- function yy_r59(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2308 "smarty_internal_templateparser.php"
+#line 2155 "smarty_internal_templateparser.php"
+#line 280 "smarty_internal_templateparser.y"
+ function yy_r45(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2158 "smarty_internal_templateparser.php"
+#line 282 "smarty_internal_templateparser.y"
+ function yy_r46(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; }
+#line 2161 "smarty_internal_templateparser.php"
+#line 289 "smarty_internal_templateparser.y"
+ function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2164 "smarty_internal_templateparser.php"
+#line 303 "smarty_internal_templateparser.y"
+ function yy_r52(){$this->_retvalue = ' & '; }
+#line 2167 "smarty_internal_templateparser.php"
+#line 311 "smarty_internal_templateparser.y"
+ function yy_r57(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2170 "smarty_internal_templateparser.php"
+#line 319 "smarty_internal_templateparser.y"
+ function yy_r61(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
+#line 2173 "smarty_internal_templateparser.php"
#line 323 "smarty_internal_templateparser.y"
- function yy_r63(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
-#line 2311 "smarty_internal_templateparser.php"
+ function yy_r63(){ $this->_retvalue = str_replace(array('."".','"".','.""'),array('.','',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); }
+#line 2176 "smarty_internal_templateparser.php"
+#line 324 "smarty_internal_templateparser.y"
+ function yy_r64(){ $this->_retvalue = "''"; }
+#line 2179 "smarty_internal_templateparser.php"
#line 326 "smarty_internal_templateparser.y"
- function yy_r65(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; }
-#line 2314 "smarty_internal_templateparser.php"
+ function yy_r65(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2182 "smarty_internal_templateparser.php"
#line 327 "smarty_internal_templateparser.y"
- function yy_r66(){ $this->_retvalue = "''"; }
-#line 2317 "smarty_internal_templateparser.php"
+ function yy_r66(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; }
+#line 2185 "smarty_internal_templateparser.php"
#line 329 "smarty_internal_templateparser.y"
- function yy_r67(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; }
-#line 2320 "smarty_internal_templateparser.php"
+ function yy_r67(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2188 "smarty_internal_templateparser.php"
+#line 330 "smarty_internal_templateparser.y"
+ function yy_r68(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2191 "smarty_internal_templateparser.php"
#line 332 "smarty_internal_templateparser.y"
- function yy_r69(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2323 "smarty_internal_templateparser.php"
-#line 333 "smarty_internal_templateparser.y"
- function yy_r70(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; }
-#line 2326 "smarty_internal_templateparser.php"
-#line 335 "smarty_internal_templateparser.y"
- function yy_r71(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2329 "smarty_internal_templateparser.php"
+ function yy_r69(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2194 "smarty_internal_templateparser.php"
+#line 334 "smarty_internal_templateparser.y"
+ function yy_r70(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2197 "smarty_internal_templateparser.php"
#line 336 "smarty_internal_templateparser.y"
- function yy_r72(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2332 "smarty_internal_templateparser.php"
+ function yy_r71(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2200 "smarty_internal_templateparser.php"
#line 338 "smarty_internal_templateparser.y"
- function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2335 "smarty_internal_templateparser.php"
-#line 340 "smarty_internal_templateparser.y"
- function yy_r74(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2338 "smarty_internal_templateparser.php"
-#line 342 "smarty_internal_templateparser.y"
- function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2341 "smarty_internal_templateparser.php"
-#line 344 "smarty_internal_templateparser.y"
- function yy_r76(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; }
-#line 2344 "smarty_internal_templateparser.php"
-#line 353 "smarty_internal_templateparser.y"
- function yy_r77(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else {
+ function yy_r72(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; }
+#line 2203 "smarty_internal_templateparser.php"
+#line 347 "smarty_internal_templateparser.y"
+ function yy_r73(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else {
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"))->nocache;} }
-#line 2348 "smarty_internal_templateparser.php"
-#line 356 "smarty_internal_templateparser.y"
- function yy_r78(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; }
-#line 2351 "smarty_internal_templateparser.php"
-#line 360 "smarty_internal_templateparser.y"
- function yy_r80(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; }
-#line 2354 "smarty_internal_templateparser.php"
-#line 361 "smarty_internal_templateparser.y"
- function yy_r81(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; }
-#line 2357 "smarty_internal_templateparser.php"
+#line 2207 "smarty_internal_templateparser.php"
+#line 350 "smarty_internal_templateparser.y"
+ function yy_r74(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; }
+#line 2210 "smarty_internal_templateparser.php"
+#line 354 "smarty_internal_templateparser.y"
+ function yy_r76(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; }
+#line 2213 "smarty_internal_templateparser.php"
+#line 355 "smarty_internal_templateparser.y"
+ function yy_r77(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; }
+#line 2216 "smarty_internal_templateparser.php"
+#line 358 "smarty_internal_templateparser.y"
+ function yy_r78(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); }
+#line 2219 "smarty_internal_templateparser.php"
#line 364 "smarty_internal_templateparser.y"
- function yy_r82(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2360 "smarty_internal_templateparser.php"
+ function yy_r79(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2222 "smarty_internal_templateparser.php"
+#line 366 "smarty_internal_templateparser.y"
+ function yy_r80(){return; }
+#line 2225 "smarty_internal_templateparser.php"
#line 370 "smarty_internal_templateparser.y"
- function yy_r83(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2363 "smarty_internal_templateparser.php"
-#line 372 "smarty_internal_templateparser.y"
- function yy_r84(){return; }
-#line 2366 "smarty_internal_templateparser.php"
+ function yy_r81(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; }
+#line 2228 "smarty_internal_templateparser.php"
+#line 373 "smarty_internal_templateparser.y"
+ function yy_r84(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; }
+#line 2231 "smarty_internal_templateparser.php"
+#line 374 "smarty_internal_templateparser.y"
+ function yy_r85(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor ."']"; }
+#line 2234 "smarty_internal_templateparser.php"
+#line 375 "smarty_internal_templateparser.y"
+ function yy_r86(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; }
+#line 2237 "smarty_internal_templateparser.php"
#line 376 "smarty_internal_templateparser.y"
- function yy_r85(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; }
-#line 2369 "smarty_internal_templateparser.php"
+ function yy_r87(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; }
+#line 2240 "smarty_internal_templateparser.php"
+#line 378 "smarty_internal_templateparser.y"
+ function yy_r88(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; }
+#line 2243 "smarty_internal_templateparser.php"
#line 379 "smarty_internal_templateparser.y"
- function yy_r88(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; }
-#line 2372 "smarty_internal_templateparser.php"
-#line 380 "smarty_internal_templateparser.y"
- function yy_r89(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor ."']"; }
-#line 2375 "smarty_internal_templateparser.php"
-#line 381 "smarty_internal_templateparser.y"
- function yy_r90(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; }
-#line 2378 "smarty_internal_templateparser.php"
-#line 382 "smarty_internal_templateparser.y"
- function yy_r91(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; }
-#line 2381 "smarty_internal_templateparser.php"
-#line 384 "smarty_internal_templateparser.y"
- function yy_r92(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; }
-#line 2384 "smarty_internal_templateparser.php"
-#line 385 "smarty_internal_templateparser.y"
- function yy_r93(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; }
-#line 2387 "smarty_internal_templateparser.php"
-#line 389 "smarty_internal_templateparser.y"
- function yy_r95(){$this->_retvalue = ''; }
-#line 2390 "smarty_internal_templateparser.php"
-#line 397 "smarty_internal_templateparser.y"
- function yy_r97(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2393 "smarty_internal_templateparser.php"
-#line 399 "smarty_internal_templateparser.y"
- function yy_r98(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
-#line 2396 "smarty_internal_templateparser.php"
-#line 401 "smarty_internal_templateparser.y"
- function yy_r99(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2399 "smarty_internal_templateparser.php"
-#line 406 "smarty_internal_templateparser.y"
- function yy_r100(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else {
+ function yy_r89(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; }
+#line 2246 "smarty_internal_templateparser.php"
+#line 383 "smarty_internal_templateparser.y"
+ function yy_r91(){$this->_retvalue = ''; }
+#line 2249 "smarty_internal_templateparser.php"
+#line 391 "smarty_internal_templateparser.y"
+ function yy_r93(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2252 "smarty_internal_templateparser.php"
+#line 393 "smarty_internal_templateparser.y"
+ function yy_r94(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
+#line 2255 "smarty_internal_templateparser.php"
+#line 395 "smarty_internal_templateparser.y"
+ function yy_r95(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; }
+#line 2258 "smarty_internal_templateparser.php"
+#line 400 "smarty_internal_templateparser.y"
+ function yy_r96(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else {
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"))->nocache;} }
-#line 2403 "smarty_internal_templateparser.php"
+#line 2262 "smarty_internal_templateparser.php"
+#line 403 "smarty_internal_templateparser.y"
+ function yy_r97(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
+#line 2265 "smarty_internal_templateparser.php"
+#line 405 "smarty_internal_templateparser.y"
+ function yy_r98(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2268 "smarty_internal_templateparser.php"
+#line 407 "smarty_internal_templateparser.y"
+ function yy_r99(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2271 "smarty_internal_templateparser.php"
+#line 408 "smarty_internal_templateparser.y"
+ function yy_r100(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
+#line 2274 "smarty_internal_templateparser.php"
#line 409 "smarty_internal_templateparser.y"
- function yy_r101(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2406 "smarty_internal_templateparser.php"
-#line 411 "smarty_internal_templateparser.y"
- function yy_r102(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2409 "smarty_internal_templateparser.php"
-#line 413 "smarty_internal_templateparser.y"
- function yy_r103(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2412 "smarty_internal_templateparser.php"
-#line 414 "smarty_internal_templateparser.y"
- function yy_r104(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
-#line 2415 "smarty_internal_templateparser.php"
-#line 415 "smarty_internal_templateparser.y"
- function yy_r105(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
-#line 2418 "smarty_internal_templateparser.php"
-#line 416 "smarty_internal_templateparser.y"
- function yy_r106(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
-#line 2421 "smarty_internal_templateparser.php"
+ function yy_r101(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
+#line 2277 "smarty_internal_templateparser.php"
+#line 410 "smarty_internal_templateparser.y"
+ function yy_r102(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
+#line 2280 "smarty_internal_templateparser.php"
+#line 412 "smarty_internal_templateparser.y"
+ function yy_r103(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2283 "smarty_internal_templateparser.php"
#line 418 "smarty_internal_templateparser.y"
- function yy_r107(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2424 "smarty_internal_templateparser.php"
-#line 424 "smarty_internal_templateparser.y"
- function yy_r108(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {
+ function yy_r104(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {
if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) {
$this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")";
} else {
$this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
} }
-#line 2433 "smarty_internal_templateparser.php"
-#line 435 "smarty_internal_templateparser.y"
- function yy_r109(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
-#line 2436 "smarty_internal_templateparser.php"
-#line 439 "smarty_internal_templateparser.y"
- function yy_r110(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; }
-#line 2439 "smarty_internal_templateparser.php"
+#line 2292 "smarty_internal_templateparser.php"
+#line 429 "smarty_internal_templateparser.y"
+ function yy_r105(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
+#line 2295 "smarty_internal_templateparser.php"
+#line 433 "smarty_internal_templateparser.y"
+ function yy_r106(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; }
+#line 2298 "smarty_internal_templateparser.php"
+#line 437 "smarty_internal_templateparser.y"
+ function yy_r108(){ return; }
+#line 2301 "smarty_internal_templateparser.php"
+#line 442 "smarty_internal_templateparser.y"
+ function yy_r109(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); }
+#line 2304 "smarty_internal_templateparser.php"
#line 443 "smarty_internal_templateparser.y"
- function yy_r112(){ return; }
-#line 2442 "smarty_internal_templateparser.php"
-#line 448 "smarty_internal_templateparser.y"
- function yy_r113(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); }
-#line 2445 "smarty_internal_templateparser.php"
-#line 449 "smarty_internal_templateparser.y"
- function yy_r114(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); }
-#line 2448 "smarty_internal_templateparser.php"
-#line 465 "smarty_internal_templateparser.y"
- function yy_r117(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2451 "smarty_internal_templateparser.php"
-#line 466 "smarty_internal_templateparser.y"
- function yy_r118(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
-#line 2454 "smarty_internal_templateparser.php"
-#line 473 "smarty_internal_templateparser.y"
- function yy_r120(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2457 "smarty_internal_templateparser.php"
+ function yy_r110(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); }
+#line 2307 "smarty_internal_templateparser.php"
+#line 459 "smarty_internal_templateparser.y"
+ function yy_r113(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2310 "smarty_internal_templateparser.php"
+#line 460 "smarty_internal_templateparser.y"
+ function yy_r114(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
+#line 2313 "smarty_internal_templateparser.php"
+#line 467 "smarty_internal_templateparser.y"
+ function yy_r116(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2316 "smarty_internal_templateparser.php"
+#line 472 "smarty_internal_templateparser.y"
+ function yy_r118(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; }
+#line 2319 "smarty_internal_templateparser.php"
+#line 474 "smarty_internal_templateparser.y"
+ function yy_r119(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2322 "smarty_internal_templateparser.php"
+#line 475 "smarty_internal_templateparser.y"
+ function yy_r120(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }
+#line 2325 "smarty_internal_templateparser.php"
+#line 476 "smarty_internal_templateparser.y"
+ function yy_r121(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }
+#line 2328 "smarty_internal_templateparser.php"
#line 478 "smarty_internal_templateparser.y"
- function yy_r122(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; }
-#line 2460 "smarty_internal_templateparser.php"
+ function yy_r123(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
+#line 2331 "smarty_internal_templateparser.php"
+#line 479 "smarty_internal_templateparser.y"
+ function yy_r124(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
+#line 2334 "smarty_internal_templateparser.php"
#line 480 "smarty_internal_templateparser.y"
- function yy_r123(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2463 "smarty_internal_templateparser.php"
+ function yy_r125(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
+#line 2337 "smarty_internal_templateparser.php"
#line 481 "smarty_internal_templateparser.y"
- function yy_r124(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2466 "smarty_internal_templateparser.php"
+ function yy_r126(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
+#line 2340 "smarty_internal_templateparser.php"
#line 482 "smarty_internal_templateparser.y"
- function yy_r125(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2469 "smarty_internal_templateparser.php"
-#line 484 "smarty_internal_templateparser.y"
- function yy_r127(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2472 "smarty_internal_templateparser.php"
-#line 485 "smarty_internal_templateparser.y"
- function yy_r128(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2475 "smarty_internal_templateparser.php"
-#line 486 "smarty_internal_templateparser.y"
- function yy_r129(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2478 "smarty_internal_templateparser.php"
-#line 487 "smarty_internal_templateparser.y"
- function yy_r130(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2481 "smarty_internal_templateparser.php"
-#line 488 "smarty_internal_templateparser.y"
- function yy_r131(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2484 "smarty_internal_templateparser.php"
+ function yy_r127(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
+#line 2343 "smarty_internal_templateparser.php"
+#line 483 "smarty_internal_templateparser.y"
+ function yy_r128(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
+#line 2346 "smarty_internal_templateparser.php"
#line 489 "smarty_internal_templateparser.y"
- function yy_r132(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2487 "smarty_internal_templateparser.php"
+ function yy_r134(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; }
+#line 2349 "smarty_internal_templateparser.php"
+#line 491 "smarty_internal_templateparser.y"
+ function yy_r135(){$this->_retvalue = '=='; }
+#line 2352 "smarty_internal_templateparser.php"
+#line 492 "smarty_internal_templateparser.y"
+ function yy_r136(){$this->_retvalue = '!='; }
+#line 2355 "smarty_internal_templateparser.php"
+#line 493 "smarty_internal_templateparser.y"
+ function yy_r137(){$this->_retvalue = '>'; }
+#line 2358 "smarty_internal_templateparser.php"
+#line 494 "smarty_internal_templateparser.y"
+ function yy_r138(){$this->_retvalue = '<'; }
+#line 2361 "smarty_internal_templateparser.php"
#line 495 "smarty_internal_templateparser.y"
- function yy_r138(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; }
-#line 2490 "smarty_internal_templateparser.php"
+ function yy_r139(){$this->_retvalue = '>='; }
+#line 2364 "smarty_internal_templateparser.php"
+#line 496 "smarty_internal_templateparser.y"
+ function yy_r140(){$this->_retvalue = '<='; }
+#line 2367 "smarty_internal_templateparser.php"
#line 497 "smarty_internal_templateparser.y"
- function yy_r139(){$this->_retvalue = '=='; }
-#line 2493 "smarty_internal_templateparser.php"
+ function yy_r141(){$this->_retvalue = '==='; }
+#line 2370 "smarty_internal_templateparser.php"
#line 498 "smarty_internal_templateparser.y"
- function yy_r140(){$this->_retvalue = '!='; }
-#line 2496 "smarty_internal_templateparser.php"
+ function yy_r142(){$this->_retvalue = '!=='; }
+#line 2373 "smarty_internal_templateparser.php"
#line 499 "smarty_internal_templateparser.y"
- function yy_r141(){$this->_retvalue = '>'; }
-#line 2499 "smarty_internal_templateparser.php"
-#line 500 "smarty_internal_templateparser.y"
- function yy_r142(){$this->_retvalue = '<'; }
-#line 2502 "smarty_internal_templateparser.php"
+ function yy_r143(){$this->_retvalue = '%'; }
+#line 2376 "smarty_internal_templateparser.php"
#line 501 "smarty_internal_templateparser.y"
- function yy_r143(){$this->_retvalue = '>='; }
-#line 2505 "smarty_internal_templateparser.php"
+ function yy_r144(){$this->_retvalue = '&&'; }
+#line 2379 "smarty_internal_templateparser.php"
#line 502 "smarty_internal_templateparser.y"
- function yy_r144(){$this->_retvalue = '<='; }
-#line 2508 "smarty_internal_templateparser.php"
+ function yy_r145(){$this->_retvalue = '||'; }
+#line 2382 "smarty_internal_templateparser.php"
#line 503 "smarty_internal_templateparser.y"
- function yy_r145(){$this->_retvalue = '==='; }
-#line 2511 "smarty_internal_templateparser.php"
-#line 504 "smarty_internal_templateparser.y"
- function yy_r146(){$this->_retvalue = '!=='; }
-#line 2514 "smarty_internal_templateparser.php"
-#line 505 "smarty_internal_templateparser.y"
- function yy_r147(){$this->_retvalue = '%'; }
-#line 2517 "smarty_internal_templateparser.php"
-#line 507 "smarty_internal_templateparser.y"
- function yy_r148(){$this->_retvalue = '&&'; }
-#line 2520 "smarty_internal_templateparser.php"
+ function yy_r146(){$this->_retvalue = ' XOR '; }
+#line 2385 "smarty_internal_templateparser.php"
#line 508 "smarty_internal_templateparser.y"
- function yy_r149(){$this->_retvalue = '||'; }
-#line 2523 "smarty_internal_templateparser.php"
-#line 509 "smarty_internal_templateparser.y"
- function yy_r150(){$this->_retvalue = ' XOR '; }
-#line 2526 "smarty_internal_templateparser.php"
-#line 514 "smarty_internal_templateparser.y"
- function yy_r151(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2529 "smarty_internal_templateparser.php"
-#line 516 "smarty_internal_templateparser.y"
- function yy_r153(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2532 "smarty_internal_templateparser.php"
-#line 517 "smarty_internal_templateparser.y"
- function yy_r154(){ return; }
-#line 2535 "smarty_internal_templateparser.php"
-#line 518 "smarty_internal_templateparser.y"
- function yy_r155(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2538 "smarty_internal_templateparser.php"
-#line 519 "smarty_internal_templateparser.y"
- function yy_r156(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2541 "smarty_internal_templateparser.php"
-#line 528 "smarty_internal_templateparser.y"
- function yy_r160(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; }
-#line 2544 "smarty_internal_templateparser.php"
-#line 529 "smarty_internal_templateparser.y"
- function yy_r161(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; }
-#line 2547 "smarty_internal_templateparser.php"
-#line 530 "smarty_internal_templateparser.y"
- function yy_r162(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; }
-#line 2550 "smarty_internal_templateparser.php"
-#line 531 "smarty_internal_templateparser.y"
- function yy_r163(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; }
-#line 2553 "smarty_internal_templateparser.php"
-#line 532 "smarty_internal_templateparser.y"
- function yy_r164(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; }
-#line 2556 "smarty_internal_templateparser.php"
-#line 533 "smarty_internal_templateparser.y"
- function yy_r165(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2559 "smarty_internal_templateparser.php"
-#line 535 "smarty_internal_templateparser.y"
- function yy_r167(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2562 "smarty_internal_templateparser.php"
+ function yy_r147(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }
+#line 2388 "smarty_internal_templateparser.php"
+#line 510 "smarty_internal_templateparser.y"
+ function yy_r149(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2391 "smarty_internal_templateparser.php"
+#line 511 "smarty_internal_templateparser.y"
+ function yy_r150(){ return; }
+#line 2394 "smarty_internal_templateparser.php"
+#line 512 "smarty_internal_templateparser.y"
+ function yy_r151(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2397 "smarty_internal_templateparser.php"
+#line 513 "smarty_internal_templateparser.y"
+ function yy_r152(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2400 "smarty_internal_templateparser.php"
+#line 522 "smarty_internal_templateparser.y"
+ function yy_r156(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; }
+#line 2403 "smarty_internal_templateparser.php"
+#line 523 "smarty_internal_templateparser.y"
+ function yy_r157(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; }
+#line 2406 "smarty_internal_templateparser.php"
+#line 525 "smarty_internal_templateparser.y"
+ function yy_r159(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; }
+#line 2409 "smarty_internal_templateparser.php"
+#line 526 "smarty_internal_templateparser.y"
+ function yy_r160(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; }
+#line 2412 "smarty_internal_templateparser.php"
/**
* placeholder for the left hand side in a reduce operation.
@@ -2671,7 +2521,7 @@ static public $yy_action = array(
$this->internalError = true;
$this->yymajor = $yymajor;
$this->compiler->trigger_template_error();
-#line 2680 "smarty_internal_templateparser.php"
+#line 2530 "smarty_internal_templateparser.php"
}
/**
@@ -2695,7 +2545,7 @@ static public $yy_action = array(
$this->internalError = false;
$this->retvalue = $this->_retvalue;
//echo $this->retvalue."\n\n";
-#line 2705 "smarty_internal_templateparser.php"
+#line 2555 "smarty_internal_templateparser.php"
}
/**