From 44feb88c191dbe8563167092353084f5ef705957 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Tue, 16 Feb 2010 20:20:49 +0000 Subject: [PATCH] - bugfix on tags for all php_handling modes - bugfix on parameter of variablefilter.htmlspecialchars.php plugin --- change_log.txt | 4 + .../variablefilter.htmlspecialchars.php | 4 +- .../smarty_internal_templatelexer.php | 34 +- .../smarty_internal_templateparser.php | 3135 +++++++++-------- 4 files changed, 1599 insertions(+), 1578 deletions(-) diff --git a/change_log.txt b/change_log.txt index a56d7f2b..02c53901 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,7 @@ +16/02/2010 +- bugfix on tags for all php_handling modes +- bugfix on parameter of variablefilter.htmlspecialchars.php plugin + 14/02/2010 - added missing _plugins property in smarty.class.php - bugfix $smarty.const... inside doublequoted strings and backticks was compiled into wrong PHP code diff --git a/libs/plugins/variablefilter.htmlspecialchars.php b/libs/plugins/variablefilter.htmlspecialchars.php index 08a57833..5f11b734 100644 --- a/libs/plugins/variablefilter.htmlspecialchars.php +++ b/libs/plugins/variablefilter.htmlspecialchars.php @@ -13,9 +13,9 @@ * @param object $ &$smarty Smarty object * @return string filtered output */ -function smarty_variablefilter_htmlspecialchars($source, &$smarty) +function smarty_variablefilter_htmlspecialchars($source, $smarty) { return htmlspecialchars($source, ENT_QUOTES); } -?> +?> \ No newline at end of file diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index 349197de..df7c36e4 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -144,13 +144,14 @@ class Smarty_Internal_Templatelexer 11 => 0, 12 => 0, 13 => 0, - 14 => 2, - 17 => 0, + 14 => 0, + 15 => 2, + 18 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>)))|^([\S\s]+)/"; + $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml.*\\?>)|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>)))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -213,6 +214,11 @@ class Smarty_Internal_Templatelexer function yy_r1_4($yy_subpatterns) { + $this->token = Smarty_Internal_Templateparser::TP_XMLTAG; + } + function yy_r1_5($yy_subpatterns) + { + if (in_array($this->value, Array('token = Smarty_Internal_Templateparser::TP_PHPSTARTTAG; } else { @@ -220,12 +226,12 @@ class Smarty_Internal_Templatelexer $this->value = substr($this->value, 0, 2); } } - function yy_r1_5($yy_subpatterns) + function yy_r1_6($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PHPENDTAG; } - function yy_r1_6($yy_subpatterns) + function yy_r1_7($yy_subpatterns) { if ($this->strip) { @@ -234,25 +240,25 @@ class Smarty_Internal_Templatelexer $this->token = Smarty_Internal_Templateparser::TP_OTHER; } } - function yy_r1_7($yy_subpatterns) + function yy_r1_8($yy_subpatterns) { $this->strip = true; return false; } - function yy_r1_8($yy_subpatterns) + function yy_r1_9($yy_subpatterns) { $this->strip = false; return false; } - function yy_r1_9($yy_subpatterns) + function yy_r1_10($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; $this->yypushstate(self::LITERAL); } - function yy_r1_10($yy_subpatterns) + function yy_r1_11($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -263,7 +269,7 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r1_11($yy_subpatterns) + function yy_r1_12($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -274,26 +280,26 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r1_12($yy_subpatterns) + function yy_r1_13($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_13($yy_subpatterns) + function yy_r1_14($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_14($yy_subpatterns) + function yy_r1_15($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } - function yy_r1_17($yy_subpatterns) + function yy_r1_18($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 8d99c00b..5372825c 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -136,642 +136,645 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php const TP_COMMENT = 1; const TP_PHPSTARTTAG = 2; const TP_PHPENDTAG = 3; - const TP_OTHER = 4; - const TP_FAKEPHPSTARTTAG = 5; - const TP_LITERALSTART = 6; - const TP_LITERALEND = 7; - const TP_LITERAL = 8; - const TP_LDEL = 9; - const TP_RDEL = 10; - const TP_DOLLAR = 11; - const TP_ID = 12; - const TP_EQUAL = 13; - const TP_FOREACH = 14; - const TP_PTR = 15; - const TP_IF = 16; - const TP_SPACE = 17; - const TP_UNIMATH = 18; - const TP_FOR = 19; - const TP_SEMICOLON = 20; - const TP_INCDEC = 21; - const TP_TO = 22; - const TP_STEP = 23; - const TP_AS = 24; - const TP_APTR = 25; - const TP_LDELSLASH = 26; - const TP_INTEGER = 27; - const TP_COMMA = 28; - const TP_COLON = 29; - const TP_MATH = 30; - const TP_ANDSYM = 31; - const TP_OPENP = 32; - const TP_CLOSEP = 33; - const TP_QMARK = 34; - const TP_NOT = 35; - const TP_TYPECAST = 36; - const TP_DOT = 37; - const TP_BOOLEAN = 38; - const TP_NULL = 39; - const TP_SINGLEQUOTESTRING = 40; - const TP_QUOTE = 41; - const TP_DOUBLECOLON = 42; - const TP_AT = 43; - const TP_HATCH = 44; - const TP_OPENB = 45; - const TP_CLOSEB = 46; - const TP_VERT = 47; - const TP_ISIN = 48; - const TP_ISDIVBY = 49; - const TP_ISNOTDIVBY = 50; - const TP_ISEVEN = 51; - const TP_ISNOTEVEN = 52; - const TP_ISEVENBY = 53; - const TP_ISNOTEVENBY = 54; - const TP_ISODD = 55; - const TP_ISNOTODD = 56; - const TP_ISODDBY = 57; - const TP_ISNOTODDBY = 58; - const TP_INSTANCEOF = 59; - const TP_EQUALS = 60; - const TP_NOTEQUALS = 61; - const TP_GREATERTHAN = 62; - const TP_LESSTHAN = 63; - const TP_GREATEREQUAL = 64; - const TP_LESSEQUAL = 65; - const TP_IDENTITY = 66; - const TP_NONEIDENTITY = 67; - const TP_MOD = 68; - const TP_LAND = 69; - const TP_LOR = 70; - const TP_LXOR = 71; - const TP_BACKTICK = 72; - const TP_DOLLARID = 73; - const YY_NO_ACTION = 588; - const YY_ACCEPT_ACTION = 587; - const YY_ERROR_ACTION = 586; + const TP_FAKEPHPSTARTTAG = 4; + const TP_XMLTAG = 5; + const TP_OTHER = 6; + const TP_LITERALSTART = 7; + const TP_LITERALEND = 8; + const TP_LITERAL = 9; + const TP_LDEL = 10; + const TP_RDEL = 11; + const TP_DOLLAR = 12; + const TP_ID = 13; + const TP_EQUAL = 14; + const TP_FOREACH = 15; + const TP_PTR = 16; + const TP_IF = 17; + const TP_SPACE = 18; + const TP_UNIMATH = 19; + const TP_FOR = 20; + const TP_SEMICOLON = 21; + const TP_INCDEC = 22; + const TP_TO = 23; + const TP_STEP = 24; + const TP_AS = 25; + const TP_APTR = 26; + const TP_LDELSLASH = 27; + const TP_INTEGER = 28; + const TP_COMMA = 29; + const TP_COLON = 30; + const TP_MATH = 31; + const TP_ANDSYM = 32; + const TP_OPENP = 33; + const TP_CLOSEP = 34; + const TP_QMARK = 35; + const TP_NOT = 36; + const TP_TYPECAST = 37; + const TP_DOT = 38; + const TP_BOOLEAN = 39; + const TP_NULL = 40; + const TP_SINGLEQUOTESTRING = 41; + const TP_QUOTE = 42; + const TP_DOUBLECOLON = 43; + const TP_AT = 44; + const TP_HATCH = 45; + const TP_OPENB = 46; + const TP_CLOSEB = 47; + const TP_VERT = 48; + const TP_ISIN = 49; + const TP_ISDIVBY = 50; + const TP_ISNOTDIVBY = 51; + const TP_ISEVEN = 52; + const TP_ISNOTEVEN = 53; + const TP_ISEVENBY = 54; + const TP_ISNOTEVENBY = 55; + const TP_ISODD = 56; + const TP_ISNOTODD = 57; + const TP_ISODDBY = 58; + const TP_ISNOTODDBY = 59; + const TP_INSTANCEOF = 60; + const TP_EQUALS = 61; + const TP_NOTEQUALS = 62; + const TP_GREATERTHAN = 63; + const TP_LESSTHAN = 64; + const TP_GREATEREQUAL = 65; + const TP_LESSEQUAL = 66; + const TP_IDENTITY = 67; + const TP_NONEIDENTITY = 68; + const TP_MOD = 69; + const TP_LAND = 70; + const TP_LOR = 71; + const TP_LXOR = 72; + const TP_BACKTICK = 73; + const TP_DOLLARID = 74; + const YY_NO_ACTION = 590; + const YY_ACCEPT_ACTION = 589; + const YY_ERROR_ACTION = 588; - const YY_SZ_ACTTAB = 1619; + const YY_SZ_ACTTAB = 1623; static public $yy_action = array( - /* 0 */ 20, 163, 85, 61, 290, 101, 288, 200, 154, 50, - /* 10 */ 210, 587, 60, 259, 321, 323, 185, 122, 248, 152, - /* 20 */ 99, 38, 207, 10, 307, 40, 54, 48, 31, 292, - /* 30 */ 291, 309, 62, 279, 260, 65, 17, 20, 374, 94, - /* 40 */ 188, 38, 352, 373, 307, 38, 50, 219, 307, 214, - /* 50 */ 94, 243, 203, 99, 122, 248, 27, 216, 94, 156, - /* 60 */ 30, 223, 133, 54, 48, 287, 292, 291, 309, 62, - /* 70 */ 23, 374, 65, 17, 278, 233, 20, 329, 93, 201, - /* 80 */ 146, 157, 373, 65, 271, 50, 386, 181, 214, 330, - /* 90 */ 327, 65, 99, 122, 248, 227, 329, 207, 2, 30, - /* 100 */ 385, 203, 54, 48, 287, 292, 291, 309, 62, 283, - /* 110 */ 374, 65, 17, 20, 232, 93, 195, 38, 151, 373, - /* 120 */ 307, 41, 50, 269, 237, 214, 253, 203, 99, 99, - /* 130 */ 122, 248, 38, 354, 38, 307, 30, 307, 41, 54, - /* 140 */ 48, 287, 292, 291, 309, 62, 374, 374, 65, 17, - /* 150 */ 20, 230, 93, 201, 45, 71, 90, 257, 51, 50, - /* 160 */ 333, 335, 270, 334, 168, 316, 325, 122, 248, 263, - /* 170 */ 52, 49, 282, 13, 19, 38, 18, 48, 307, 292, - /* 180 */ 291, 309, 62, 267, 280, 65, 17, 20, 245, 94, - /* 190 */ 197, 122, 4, 359, 38, 353, 50, 307, 217, 203, - /* 200 */ 207, 320, 321, 323, 122, 248, 284, 212, 224, 246, - /* 210 */ 30, 23, 187, 54, 48, 23, 292, 291, 309, 62, - /* 220 */ 43, 146, 65, 17, 20, 146, 94, 202, 38, 357, - /* 230 */ 203, 307, 63, 50, 254, 266, 255, 34, 250, 251, - /* 240 */ 37, 122, 248, 263, 218, 451, 57, 30, 19, 375, - /* 250 */ 54, 48, 451, 292, 291, 309, 62, 26, 78, 65, - /* 260 */ 17, 20, 23, 94, 196, 122, 222, 23, 187, 53, - /* 270 */ 50, 182, 146, 258, 275, 203, 43, 146, 122, 199, - /* 280 */ 265, 215, 51, 38, 30, 28, 307, 54, 48, 297, - /* 290 */ 292, 291, 309, 62, 52, 49, 65, 17, 20, 136, - /* 300 */ 93, 201, 454, 35, 22, 181, 302, 50, 203, 454, - /* 310 */ 23, 34, 250, 207, 329, 122, 248, 230, 178, 51, - /* 320 */ 146, 6, 366, 288, 18, 48, 128, 292, 291, 309, - /* 330 */ 62, 52, 49, 65, 17, 20, 42, 86, 201, 134, - /* 340 */ 142, 329, 131, 203, 50, 181, 181, 268, 180, 1, - /* 350 */ 14, 53, 122, 248, 329, 329, 16, 329, 13, 83, - /* 360 */ 245, 18, 48, 300, 292, 291, 309, 62, 33, 33, - /* 370 */ 65, 17, 20, 338, 93, 189, 130, 149, 132, 361, - /* 380 */ 377, 50, 183, 186, 29, 141, 207, 207, 172, 122, - /* 390 */ 248, 329, 329, 329, 235, 6, 171, 261, 18, 48, - /* 400 */ 329, 292, 291, 309, 62, 330, 389, 65, 17, 20, - /* 410 */ 144, 94, 202, 450, 272, 16, 362, 324, 50, 317, - /* 420 */ 207, 207, 306, 207, 294, 329, 122, 248, 298, 207, - /* 430 */ 294, 304, 30, 294, 203, 54, 48, 330, 292, 291, - /* 440 */ 309, 62, 39, 247, 65, 12, 5, 348, 349, 7, - /* 450 */ 8, 345, 344, 9, 11, 350, 174, 203, 47, 36, - /* 460 */ 203, 341, 207, 242, 204, 285, 340, 339, 207, 155, - /* 470 */ 387, 388, 384, 383, 379, 378, 380, 381, 382, 244, - /* 480 */ 53, 256, 21, 161, 329, 12, 5, 348, 349, 7, - /* 490 */ 8, 345, 344, 9, 11, 12, 5, 348, 349, 7, - /* 500 */ 8, 345, 344, 9, 11, 285, 340, 339, 3, 20, - /* 510 */ 57, 94, 208, 343, 351, 285, 340, 339, 50, 363, - /* 520 */ 207, 207, 184, 360, 310, 38, 122, 248, 231, 347, - /* 530 */ 207, 207, 30, 203, 266, 54, 48, 165, 292, 291, - /* 540 */ 309, 62, 288, 207, 65, 12, 5, 348, 349, 7, - /* 550 */ 8, 345, 344, 9, 11, 305, 328, 342, 181, 203, - /* 560 */ 240, 121, 207, 207, 207, 285, 340, 339, 207, 24, - /* 570 */ 181, 355, 264, 203, 207, 338, 12, 5, 348, 349, - /* 580 */ 7, 8, 345, 344, 9, 11, 44, 364, 203, 203, - /* 590 */ 229, 276, 332, 33, 207, 15, 285, 340, 339, 207, - /* 600 */ 12, 5, 348, 349, 7, 8, 345, 344, 9, 11, - /* 610 */ 12, 5, 348, 349, 7, 8, 345, 344, 9, 11, - /* 620 */ 285, 340, 339, 150, 38, 57, 299, 206, 286, 69, - /* 630 */ 285, 340, 339, 12, 5, 348, 349, 7, 8, 345, - /* 640 */ 344, 9, 11, 452, 303, 221, 125, 220, 203, 47, - /* 650 */ 452, 207, 450, 285, 340, 339, 95, 96, 299, 207, - /* 660 */ 338, 387, 388, 384, 383, 379, 378, 380, 381, 382, - /* 670 */ 326, 336, 358, 126, 79, 273, 148, 207, 207, 207, - /* 680 */ 203, 47, 4, 72, 88, 356, 252, 338, 338, 203, - /* 690 */ 47, 329, 228, 387, 388, 384, 383, 379, 378, 380, - /* 700 */ 381, 382, 387, 388, 384, 383, 379, 378, 380, 381, - /* 710 */ 382, 376, 102, 373, 21, 42, 16, 193, 207, 214, - /* 720 */ 73, 262, 111, 99, 363, 322, 319, 318, 314, 313, - /* 730 */ 168, 372, 160, 20, 192, 287, 274, 368, 203, 47, - /* 740 */ 173, 374, 294, 234, 301, 288, 346, 329, 203, 47, - /* 750 */ 122, 387, 388, 384, 383, 379, 378, 380, 381, 382, - /* 760 */ 120, 387, 388, 384, 383, 379, 378, 380, 381, 382, - /* 770 */ 170, 124, 373, 80, 338, 123, 205, 371, 214, 56, - /* 780 */ 100, 59, 99, 337, 232, 338, 104, 338, 277, 338, - /* 790 */ 372, 225, 373, 192, 287, 87, 311, 373, 214, 289, - /* 800 */ 374, 241, 99, 214, 76, 346, 108, 99, 129, 138, - /* 810 */ 211, 139, 84, 32, 287, 372, 207, 70, 192, 287, - /* 820 */ 374, 281, 91, 329, 329, 374, 329, 373, 299, 46, - /* 830 */ 346, 241, 331, 214, 55, 98, 58, 99, 103, 213, - /* 840 */ 158, 25, 44, 67, 290, 372, 315, 373, 192, 287, - /* 850 */ 330, 241, 77, 214, 76, 374, 119, 99, 315, 315, - /* 860 */ 346, 315, 315, 315, 315, 372, 315, 315, 192, 287, - /* 870 */ 315, 315, 373, 315, 315, 374, 241, 315, 214, 76, - /* 880 */ 346, 115, 99, 315, 315, 373, 315, 315, 315, 239, - /* 890 */ 372, 214, 176, 192, 287, 99, 315, 315, 315, 315, - /* 900 */ 374, 315, 315, 372, 315, 346, 192, 287, 315, 315, - /* 910 */ 373, 315, 315, 374, 241, 315, 214, 76, 315, 118, - /* 920 */ 99, 209, 367, 315, 315, 315, 315, 315, 372, 315, - /* 930 */ 373, 192, 287, 315, 241, 315, 214, 76, 374, 105, - /* 940 */ 99, 315, 315, 346, 315, 315, 315, 315, 372, 315, - /* 950 */ 315, 192, 287, 315, 315, 373, 315, 315, 374, 236, - /* 960 */ 315, 214, 76, 346, 117, 99, 315, 315, 373, 315, - /* 970 */ 315, 315, 293, 372, 214, 315, 192, 287, 99, 315, - /* 980 */ 315, 315, 315, 374, 315, 373, 315, 315, 346, 241, - /* 990 */ 287, 214, 76, 315, 112, 99, 374, 315, 315, 315, - /* 1000 */ 315, 315, 315, 372, 315, 315, 192, 287, 315, 315, - /* 1010 */ 373, 315, 315, 374, 241, 315, 214, 74, 346, 110, - /* 1020 */ 99, 315, 315, 315, 315, 315, 315, 315, 372, 315, - /* 1030 */ 373, 192, 287, 315, 241, 315, 214, 76, 374, 113, - /* 1040 */ 99, 315, 315, 346, 315, 315, 315, 315, 372, 315, - /* 1050 */ 315, 192, 287, 315, 315, 373, 315, 315, 374, 241, - /* 1060 */ 315, 214, 76, 346, 106, 99, 315, 315, 373, 315, - /* 1070 */ 315, 315, 369, 372, 214, 315, 192, 287, 99, 315, - /* 1080 */ 315, 315, 315, 374, 315, 373, 315, 315, 346, 241, - /* 1090 */ 287, 214, 75, 315, 107, 99, 374, 315, 315, 315, - /* 1100 */ 315, 315, 315, 372, 315, 315, 192, 287, 315, 315, - /* 1110 */ 373, 315, 315, 374, 241, 315, 214, 75, 346, 109, - /* 1120 */ 99, 315, 315, 315, 315, 315, 315, 315, 372, 315, - /* 1130 */ 373, 192, 287, 315, 241, 315, 214, 76, 374, 116, - /* 1140 */ 99, 315, 315, 346, 315, 315, 315, 315, 372, 315, - /* 1150 */ 315, 192, 287, 315, 315, 373, 315, 315, 374, 241, - /* 1160 */ 315, 214, 76, 346, 114, 99, 315, 315, 315, 315, - /* 1170 */ 315, 315, 315, 372, 373, 315, 192, 287, 89, 315, - /* 1180 */ 82, 64, 97, 374, 92, 315, 315, 315, 346, 315, - /* 1190 */ 315, 315, 372, 373, 315, 192, 287, 312, 315, 214, - /* 1200 */ 145, 315, 374, 99, 315, 315, 315, 315, 315, 315, - /* 1210 */ 315, 372, 315, 373, 192, 287, 315, 312, 238, 214, - /* 1220 */ 145, 374, 373, 99, 315, 315, 312, 315, 214, 145, - /* 1230 */ 315, 372, 99, 315, 192, 287, 315, 315, 226, 315, - /* 1240 */ 372, 374, 373, 192, 287, 315, 239, 370, 214, 176, - /* 1250 */ 374, 315, 99, 315, 315, 373, 315, 315, 315, 312, - /* 1260 */ 372, 214, 145, 192, 287, 99, 315, 315, 315, 315, - /* 1270 */ 374, 315, 315, 372, 315, 315, 192, 287, 373, 365, - /* 1280 */ 249, 315, 89, 374, 81, 68, 97, 315, 92, 315, - /* 1290 */ 315, 315, 315, 315, 315, 315, 372, 373, 315, 192, - /* 1300 */ 287, 312, 315, 214, 147, 315, 374, 99, 315, 315, - /* 1310 */ 373, 315, 315, 315, 312, 372, 214, 166, 192, 287, - /* 1320 */ 99, 315, 315, 373, 315, 374, 315, 312, 372, 214, - /* 1330 */ 167, 192, 287, 99, 315, 315, 315, 315, 374, 315, - /* 1340 */ 315, 372, 373, 315, 192, 287, 312, 315, 214, 66, - /* 1350 */ 315, 374, 99, 315, 315, 373, 315, 315, 315, 312, - /* 1360 */ 372, 214, 143, 192, 287, 99, 315, 315, 315, 315, - /* 1370 */ 374, 315, 315, 372, 315, 373, 192, 287, 315, 312, - /* 1380 */ 373, 214, 175, 374, 312, 99, 214, 179, 315, 315, - /* 1390 */ 99, 315, 315, 372, 315, 315, 192, 287, 372, 315, - /* 1400 */ 315, 192, 287, 374, 315, 315, 373, 315, 374, 315, - /* 1410 */ 312, 373, 214, 137, 315, 312, 99, 214, 159, 315, - /* 1420 */ 315, 99, 315, 315, 372, 315, 315, 192, 287, 372, - /* 1430 */ 315, 373, 192, 287, 374, 312, 315, 214, 162, 374, - /* 1440 */ 373, 99, 315, 315, 312, 315, 214, 140, 315, 372, - /* 1450 */ 99, 315, 192, 287, 315, 315, 315, 315, 372, 374, - /* 1460 */ 373, 192, 287, 315, 312, 373, 214, 135, 374, 312, - /* 1470 */ 99, 214, 153, 315, 315, 99, 315, 315, 372, 315, - /* 1480 */ 315, 192, 287, 372, 315, 373, 192, 287, 374, 312, - /* 1490 */ 373, 214, 164, 374, 312, 99, 198, 127, 315, 315, - /* 1500 */ 99, 315, 315, 372, 315, 315, 192, 287, 372, 315, - /* 1510 */ 373, 192, 287, 374, 312, 315, 214, 177, 374, 373, - /* 1520 */ 99, 315, 315, 312, 315, 214, 169, 315, 372, 99, - /* 1530 */ 315, 192, 287, 315, 315, 315, 315, 372, 374, 373, - /* 1540 */ 192, 287, 315, 312, 373, 214, 315, 374, 312, 99, - /* 1550 */ 214, 315, 315, 315, 99, 315, 315, 372, 315, 315, - /* 1560 */ 191, 287, 372, 315, 373, 190, 287, 374, 312, 373, - /* 1570 */ 214, 315, 374, 296, 99, 214, 315, 315, 315, 99, - /* 1580 */ 315, 315, 372, 315, 315, 194, 287, 315, 315, 373, - /* 1590 */ 373, 287, 374, 295, 308, 214, 214, 374, 315, 99, - /* 1600 */ 99, 315, 315, 315, 315, 315, 315, 315, 315, 315, - /* 1610 */ 315, 287, 287, 315, 315, 315, 315, 374, 374, + /* 0 */ 19, 172, 92, 61, 326, 99, 320, 209, 49, 52, + /* 10 */ 223, 589, 60, 293, 291, 296, 132, 122, 220, 279, + /* 20 */ 50, 51, 41, 15, 94, 136, 53, 48, 25, 339, + /* 30 */ 351, 387, 62, 227, 358, 66, 18, 19, 160, 94, + /* 40 */ 189, 205, 262, 318, 157, 348, 52, 281, 31, 225, + /* 50 */ 181, 375, 36, 102, 122, 220, 206, 66, 205, 328, + /* 60 */ 34, 302, 316, 53, 48, 347, 339, 351, 387, 62, + /* 70 */ 45, 324, 66, 18, 258, 19, 206, 85, 193, 25, + /* 80 */ 368, 364, 369, 456, 52, 173, 275, 366, 147, 160, + /* 90 */ 456, 183, 122, 220, 182, 102, 31, 205, 34, 375, + /* 100 */ 35, 53, 48, 328, 339, 351, 387, 62, 373, 313, + /* 110 */ 66, 18, 19, 324, 85, 203, 44, 42, 93, 277, + /* 120 */ 31, 52, 31, 375, 36, 375, 376, 206, 206, 122, + /* 130 */ 220, 211, 54, 205, 263, 34, 94, 239, 53, 48, + /* 140 */ 182, 339, 351, 387, 62, 276, 273, 66, 18, 19, + /* 150 */ 57, 85, 203, 32, 238, 318, 242, 252, 52, 214, + /* 160 */ 25, 225, 322, 206, 205, 102, 122, 220, 3, 66, + /* 170 */ 160, 31, 6, 228, 375, 13, 48, 347, 339, 351, + /* 180 */ 387, 62, 260, 324, 66, 18, 19, 25, 86, 203, + /* 190 */ 31, 321, 318, 375, 206, 52, 317, 160, 225, 292, + /* 200 */ 291, 296, 102, 122, 220, 238, 226, 31, 319, 6, + /* 210 */ 375, 186, 13, 48, 347, 339, 351, 387, 62, 37, + /* 220 */ 324, 66, 18, 19, 219, 94, 192, 31, 346, 318, + /* 230 */ 375, 371, 52, 350, 248, 225, 206, 374, 102, 102, + /* 240 */ 122, 197, 24, 221, 31, 334, 34, 375, 206, 53, + /* 250 */ 48, 347, 339, 351, 387, 62, 324, 324, 66, 18, + /* 260 */ 19, 269, 85, 191, 452, 170, 318, 222, 206, 52, + /* 270 */ 345, 205, 225, 167, 205, 348, 102, 122, 220, 1, + /* 280 */ 30, 57, 217, 9, 224, 232, 13, 48, 347, 339, + /* 290 */ 351, 387, 62, 182, 324, 66, 18, 19, 70, 94, + /* 300 */ 204, 184, 134, 318, 206, 169, 52, 272, 182, 225, + /* 310 */ 78, 352, 307, 102, 122, 220, 42, 328, 205, 205, + /* 320 */ 34, 4, 14, 53, 48, 347, 339, 351, 387, 62, + /* 330 */ 288, 324, 66, 18, 19, 348, 94, 199, 206, 146, + /* 340 */ 318, 140, 308, 52, 312, 180, 225, 182, 168, 205, + /* 350 */ 102, 122, 220, 320, 328, 267, 328, 34, 267, 187, + /* 360 */ 53, 48, 347, 339, 351, 387, 62, 43, 324, 66, + /* 370 */ 18, 19, 31, 85, 203, 202, 155, 318, 77, 54, + /* 380 */ 52, 337, 185, 225, 127, 176, 270, 102, 122, 220, + /* 390 */ 320, 328, 218, 266, 9, 71, 390, 13, 48, 347, + /* 400 */ 339, 351, 387, 62, 330, 324, 66, 18, 8, 5, + /* 410 */ 360, 385, 11, 16, 388, 382, 12, 17, 63, 362, + /* 420 */ 289, 81, 283, 141, 340, 284, 205, 335, 378, 354, + /* 430 */ 353, 205, 329, 31, 205, 359, 375, 236, 328, 205, + /* 440 */ 380, 250, 68, 8, 5, 360, 385, 11, 16, 388, + /* 450 */ 382, 12, 17, 8, 5, 360, 385, 11, 16, 388, + /* 460 */ 382, 12, 17, 378, 354, 353, 31, 229, 207, 237, + /* 470 */ 280, 133, 245, 378, 354, 353, 23, 216, 49, 8, + /* 480 */ 5, 360, 385, 11, 16, 388, 382, 12, 17, 357, + /* 490 */ 50, 51, 300, 131, 271, 206, 374, 344, 205, 378, + /* 500 */ 354, 353, 206, 47, 205, 8, 5, 360, 385, 11, + /* 510 */ 16, 388, 382, 12, 17, 303, 306, 315, 274, 256, + /* 520 */ 255, 254, 257, 253, 26, 378, 354, 353, 49, 125, + /* 530 */ 8, 5, 360, 385, 11, 16, 388, 382, 12, 17, + /* 540 */ 50, 51, 154, 359, 19, 121, 94, 204, 216, 152, + /* 550 */ 378, 354, 353, 52, 249, 182, 251, 328, 323, 359, + /* 560 */ 325, 122, 220, 19, 328, 94, 198, 34, 91, 331, + /* 570 */ 53, 48, 52, 339, 351, 387, 62, 386, 42, 66, + /* 580 */ 122, 220, 124, 162, 205, 120, 34, 123, 304, 53, + /* 590 */ 48, 261, 339, 351, 387, 62, 359, 24, 66, 359, + /* 600 */ 38, 359, 8, 5, 360, 385, 11, 16, 388, 382, + /* 610 */ 12, 17, 8, 5, 360, 385, 11, 16, 388, 382, + /* 620 */ 12, 17, 378, 354, 353, 138, 264, 104, 454, 137, + /* 630 */ 20, 57, 378, 354, 353, 454, 343, 40, 363, 54, + /* 640 */ 328, 244, 318, 205, 328, 205, 246, 122, 225, 76, + /* 650 */ 295, 107, 102, 187, 349, 213, 331, 149, 25, 145, + /* 660 */ 381, 43, 367, 196, 347, 206, 47, 278, 160, 355, + /* 670 */ 324, 309, 328, 206, 328, 370, 205, 79, 303, 306, + /* 680 */ 315, 274, 256, 255, 254, 257, 253, 7, 342, 7, + /* 690 */ 314, 359, 318, 33, 268, 205, 200, 205, 225, 56, + /* 700 */ 100, 58, 102, 297, 299, 310, 311, 301, 305, 173, + /* 710 */ 381, 332, 19, 196, 347, 336, 365, 264, 205, 356, + /* 720 */ 324, 20, 205, 205, 379, 370, 205, 206, 47, 122, + /* 730 */ 259, 205, 22, 377, 153, 72, 156, 205, 122, 87, + /* 740 */ 303, 306, 315, 274, 256, 255, 254, 257, 253, 328, + /* 750 */ 286, 328, 452, 265, 453, 338, 27, 80, 126, 205, + /* 760 */ 318, 453, 205, 331, 194, 28, 225, 73, 294, 113, + /* 770 */ 102, 359, 359, 318, 206, 2, 25, 389, 381, 225, + /* 780 */ 39, 196, 347, 102, 33, 268, 160, 179, 324, 206, + /* 790 */ 47, 249, 320, 370, 341, 347, 159, 26, 206, 240, + /* 800 */ 144, 324, 303, 306, 315, 274, 256, 255, 254, 257, + /* 810 */ 253, 328, 29, 206, 47, 328, 282, 212, 327, 210, + /* 820 */ 84, 128, 383, 234, 90, 235, 303, 306, 315, 274, + /* 830 */ 256, 255, 254, 257, 253, 348, 328, 163, 96, 318, + /* 840 */ 103, 326, 285, 246, 3, 225, 55, 98, 59, 102, + /* 850 */ 384, 215, 130, 88, 374, 205, 46, 381, 230, 101, + /* 860 */ 196, 347, 316, 7, 372, 21, 45, 324, 65, 331, + /* 870 */ 10, 361, 370, 317, 317, 317, 206, 47, 317, 317, + /* 880 */ 317, 317, 317, 317, 317, 317, 317, 317, 317, 303, + /* 890 */ 306, 315, 274, 256, 255, 254, 257, 253, 317, 317, + /* 900 */ 317, 317, 317, 317, 317, 317, 318, 317, 317, 317, + /* 910 */ 246, 317, 225, 76, 317, 112, 102, 317, 317, 317, + /* 920 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 930 */ 246, 317, 225, 76, 324, 116, 102, 317, 317, 370, + /* 940 */ 317, 317, 317, 317, 381, 317, 317, 196, 347, 317, + /* 950 */ 317, 317, 317, 317, 324, 317, 318, 317, 317, 370, + /* 960 */ 246, 317, 225, 76, 317, 111, 102, 317, 317, 317, + /* 970 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 980 */ 246, 317, 225, 74, 324, 109, 102, 317, 317, 370, + /* 990 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1000 */ 246, 317, 225, 75, 324, 110, 102, 317, 317, 370, + /* 1010 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1020 */ 246, 317, 225, 76, 324, 118, 102, 317, 317, 370, + /* 1030 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1040 */ 246, 317, 225, 76, 324, 119, 102, 317, 317, 370, + /* 1050 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1060 */ 241, 317, 225, 178, 324, 317, 102, 317, 317, 370, + /* 1070 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1080 */ 246, 317, 225, 76, 324, 115, 102, 317, 317, 317, + /* 1090 */ 317, 317, 201, 298, 381, 317, 318, 196, 347, 317, + /* 1100 */ 246, 317, 225, 74, 324, 105, 102, 317, 317, 370, + /* 1110 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1120 */ 246, 317, 225, 76, 324, 114, 102, 317, 317, 370, + /* 1130 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1140 */ 247, 317, 225, 76, 324, 117, 102, 317, 317, 370, + /* 1150 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1160 */ 246, 317, 225, 76, 324, 108, 102, 317, 317, 370, + /* 1170 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1180 */ 246, 317, 225, 76, 324, 106, 102, 317, 317, 370, + /* 1190 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1200 */ 333, 317, 225, 151, 324, 317, 102, 317, 317, 370, + /* 1210 */ 317, 317, 317, 317, 381, 317, 318, 196, 347, 317, + /* 1220 */ 333, 243, 225, 151, 324, 318, 102, 317, 317, 89, + /* 1230 */ 317, 83, 67, 97, 381, 95, 317, 196, 347, 317, + /* 1240 */ 317, 233, 317, 381, 324, 317, 196, 347, 317, 317, + /* 1250 */ 317, 317, 317, 324, 318, 317, 317, 317, 89, 317, + /* 1260 */ 82, 69, 97, 318, 95, 317, 317, 241, 317, 225, + /* 1270 */ 178, 317, 381, 102, 317, 196, 347, 317, 317, 317, + /* 1280 */ 317, 381, 324, 318, 196, 347, 317, 333, 317, 225, + /* 1290 */ 151, 324, 317, 102, 317, 317, 317, 317, 317, 317, + /* 1300 */ 287, 381, 317, 318, 196, 347, 317, 333, 290, 225, + /* 1310 */ 151, 324, 318, 102, 317, 317, 333, 317, 225, 175, + /* 1320 */ 317, 381, 102, 317, 196, 347, 317, 317, 231, 317, + /* 1330 */ 381, 324, 317, 196, 347, 317, 317, 317, 318, 317, + /* 1340 */ 324, 317, 333, 318, 225, 177, 317, 333, 102, 225, + /* 1350 */ 171, 317, 317, 102, 317, 317, 381, 317, 317, 196, + /* 1360 */ 347, 381, 317, 318, 196, 347, 324, 333, 317, 225, + /* 1370 */ 143, 324, 317, 102, 317, 317, 317, 317, 317, 317, + /* 1380 */ 317, 381, 317, 318, 196, 347, 317, 333, 318, 208, + /* 1390 */ 142, 324, 333, 102, 225, 165, 317, 317, 102, 317, + /* 1400 */ 317, 381, 317, 317, 196, 347, 381, 317, 318, 196, + /* 1410 */ 347, 324, 333, 318, 225, 158, 324, 333, 102, 225, + /* 1420 */ 174, 317, 317, 102, 317, 317, 381, 317, 317, 196, + /* 1430 */ 347, 381, 317, 318, 196, 347, 324, 333, 317, 225, + /* 1440 */ 139, 324, 317, 102, 317, 317, 318, 317, 317, 317, + /* 1450 */ 333, 381, 225, 129, 196, 347, 102, 317, 317, 317, + /* 1460 */ 317, 324, 317, 317, 381, 318, 317, 196, 347, 333, + /* 1470 */ 317, 225, 64, 317, 324, 102, 317, 317, 318, 317, + /* 1480 */ 317, 317, 333, 381, 225, 135, 196, 347, 102, 317, + /* 1490 */ 317, 318, 317, 324, 317, 333, 381, 225, 166, 196, + /* 1500 */ 347, 102, 317, 317, 317, 317, 324, 317, 317, 381, + /* 1510 */ 318, 317, 196, 347, 333, 317, 225, 161, 317, 324, + /* 1520 */ 102, 317, 317, 318, 317, 317, 317, 333, 381, 225, + /* 1530 */ 150, 196, 347, 102, 317, 317, 318, 317, 324, 317, + /* 1540 */ 333, 381, 225, 148, 196, 347, 102, 317, 317, 318, + /* 1550 */ 317, 324, 317, 333, 381, 225, 164, 196, 347, 102, + /* 1560 */ 317, 317, 318, 317, 324, 317, 333, 381, 225, 317, + /* 1570 */ 196, 347, 102, 317, 317, 318, 317, 324, 317, 333, + /* 1580 */ 381, 225, 317, 188, 347, 102, 317, 317, 317, 317, + /* 1590 */ 324, 317, 317, 381, 318, 317, 195, 347, 333, 317, + /* 1600 */ 225, 317, 317, 324, 102, 317, 317, 317, 317, 317, + /* 1610 */ 317, 317, 381, 317, 317, 190, 347, 317, 317, 317, + /* 1620 */ 317, 317, 324, ); static public $yy_lookahead = array( - /* 0 */ 9, 104, 11, 12, 107, 14, 109, 16, 105, 18, - /* 10 */ 19, 75, 76, 77, 78, 79, 84, 26, 27, 105, - /* 20 */ 88, 9, 17, 32, 12, 13, 35, 36, 23, 38, - /* 30 */ 39, 40, 41, 21, 102, 44, 45, 9, 106, 11, - /* 40 */ 12, 9, 10, 78, 12, 9, 18, 82, 12, 84, - /* 50 */ 11, 12, 47, 88, 26, 27, 9, 25, 11, 12, - /* 60 */ 32, 96, 83, 35, 36, 100, 38, 39, 40, 41, - /* 70 */ 32, 106, 44, 45, 46, 37, 9, 98, 11, 12, - /* 80 */ 42, 83, 78, 44, 46, 18, 82, 89, 84, 110, - /* 90 */ 10, 44, 88, 26, 27, 15, 98, 17, 13, 32, - /* 100 */ 96, 47, 35, 36, 100, 38, 39, 40, 41, 33, - /* 110 */ 106, 44, 45, 9, 29, 11, 12, 9, 105, 78, - /* 120 */ 12, 13, 18, 82, 84, 84, 72, 47, 88, 88, - /* 130 */ 26, 27, 9, 10, 9, 12, 32, 12, 13, 35, - /* 140 */ 36, 100, 38, 39, 40, 41, 106, 106, 44, 45, - /* 150 */ 9, 43, 11, 12, 9, 90, 11, 12, 18, 18, - /* 160 */ 2, 3, 10, 5, 6, 7, 8, 26, 27, 4, - /* 170 */ 30, 31, 27, 32, 9, 9, 35, 36, 12, 38, - /* 180 */ 39, 40, 41, 38, 39, 44, 45, 9, 37, 11, - /* 190 */ 12, 26, 13, 10, 9, 10, 18, 12, 15, 47, - /* 200 */ 17, 77, 78, 79, 26, 27, 41, 11, 12, 43, - /* 210 */ 32, 32, 37, 35, 36, 32, 38, 39, 40, 41, - /* 220 */ 45, 42, 44, 45, 9, 42, 11, 12, 9, 10, - /* 230 */ 47, 12, 12, 18, 14, 78, 16, 72, 73, 19, - /* 240 */ 22, 26, 27, 4, 25, 10, 15, 32, 9, 44, - /* 250 */ 35, 36, 17, 38, 39, 40, 41, 29, 101, 44, - /* 260 */ 45, 9, 32, 11, 12, 26, 12, 32, 37, 59, - /* 270 */ 18, 10, 42, 116, 10, 47, 45, 42, 26, 27, - /* 280 */ 41, 27, 18, 9, 32, 34, 12, 35, 36, 27, - /* 290 */ 38, 39, 40, 41, 30, 31, 44, 45, 9, 83, - /* 300 */ 11, 12, 10, 25, 28, 89, 10, 18, 47, 17, - /* 310 */ 32, 72, 73, 17, 98, 26, 27, 43, 104, 18, - /* 320 */ 42, 32, 46, 109, 35, 36, 83, 38, 39, 40, - /* 330 */ 41, 30, 31, 44, 45, 9, 13, 11, 12, 83, - /* 340 */ 83, 98, 83, 47, 18, 89, 89, 46, 89, 17, - /* 350 */ 18, 59, 26, 27, 98, 98, 113, 98, 32, 94, - /* 360 */ 37, 35, 36, 12, 38, 39, 40, 41, 112, 112, - /* 370 */ 44, 45, 9, 108, 11, 12, 83, 83, 83, 10, - /* 380 */ 10, 18, 89, 89, 34, 83, 17, 17, 20, 26, - /* 390 */ 27, 98, 98, 98, 43, 32, 28, 10, 35, 36, - /* 400 */ 98, 38, 39, 40, 41, 110, 10, 44, 45, 9, - /* 410 */ 83, 11, 12, 10, 10, 113, 10, 79, 18, 81, - /* 420 */ 17, 17, 10, 17, 21, 98, 26, 27, 12, 17, - /* 430 */ 21, 10, 32, 21, 47, 35, 36, 110, 38, 39, - /* 440 */ 40, 41, 29, 33, 44, 49, 50, 51, 52, 53, - /* 450 */ 54, 55, 56, 57, 58, 10, 20, 47, 48, 9, - /* 460 */ 47, 10, 17, 91, 92, 69, 70, 71, 17, 83, - /* 470 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 33, - /* 480 */ 59, 72, 32, 90, 98, 49, 50, 51, 52, 53, - /* 490 */ 54, 55, 56, 57, 58, 49, 50, 51, 52, 53, - /* 500 */ 54, 55, 56, 57, 58, 69, 70, 71, 13, 9, - /* 510 */ 15, 11, 12, 10, 10, 69, 70, 71, 18, 33, - /* 520 */ 17, 17, 10, 10, 10, 9, 26, 27, 12, 33, - /* 530 */ 17, 17, 32, 47, 78, 35, 36, 104, 38, 39, - /* 540 */ 40, 41, 109, 17, 44, 49, 50, 51, 52, 53, - /* 550 */ 54, 55, 56, 57, 58, 10, 10, 10, 89, 47, - /* 560 */ 33, 94, 17, 17, 17, 69, 70, 71, 17, 28, - /* 570 */ 89, 10, 116, 47, 17, 108, 49, 50, 51, 52, - /* 580 */ 53, 54, 55, 56, 57, 58, 29, 10, 47, 47, - /* 590 */ 93, 17, 10, 112, 17, 93, 69, 70, 71, 17, - /* 600 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - /* 610 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - /* 620 */ 69, 70, 71, 105, 9, 15, 108, 12, 109, 90, - /* 630 */ 69, 70, 71, 49, 50, 51, 52, 53, 54, 55, - /* 640 */ 56, 57, 58, 10, 10, 95, 94, 24, 47, 48, - /* 650 */ 17, 17, 10, 69, 70, 71, 11, 11, 108, 17, - /* 660 */ 108, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 670 */ 10, 10, 10, 94, 94, 10, 83, 17, 17, 17, - /* 680 */ 47, 48, 13, 12, 11, 10, 10, 108, 108, 47, - /* 690 */ 48, 98, 24, 60, 61, 62, 63, 64, 65, 66, - /* 700 */ 67, 68, 60, 61, 62, 63, 64, 65, 66, 67, - /* 710 */ 68, 10, 17, 78, 32, 13, 113, 82, 17, 84, - /* 720 */ 85, 86, 87, 88, 33, 1, 2, 3, 4, 5, - /* 730 */ 6, 96, 83, 9, 99, 100, 46, 33, 47, 48, - /* 740 */ 104, 106, 21, 12, 12, 109, 111, 98, 47, 48, - /* 750 */ 26, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 760 */ 94, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 770 */ 12, 94, 78, 94, 108, 94, 82, 44, 84, 85, - /* 780 */ 86, 87, 88, 12, 29, 108, 33, 108, 10, 108, - /* 790 */ 96, 12, 78, 99, 100, 11, 82, 78, 84, 12, - /* 800 */ 106, 82, 88, 84, 85, 111, 87, 88, 83, 83, - /* 810 */ 91, 83, 11, 25, 100, 96, 17, 90, 99, 100, - /* 820 */ 106, 91, 11, 98, 98, 106, 98, 78, 108, 17, - /* 830 */ 111, 82, 98, 84, 85, 86, 87, 88, 102, 97, - /* 840 */ 105, 32, 29, 105, 107, 96, 7, 78, 99, 100, - /* 850 */ 110, 82, 80, 84, 85, 106, 87, 88, 117, 117, - /* 860 */ 111, 117, 117, 117, 117, 96, 117, 117, 99, 100, - /* 870 */ 117, 117, 78, 117, 117, 106, 82, 117, 84, 85, - /* 880 */ 111, 87, 88, 117, 117, 78, 117, 117, 117, 82, - /* 890 */ 96, 84, 85, 99, 100, 88, 117, 117, 117, 117, - /* 900 */ 106, 117, 117, 96, 117, 111, 99, 100, 117, 117, - /* 910 */ 78, 117, 117, 106, 82, 117, 84, 85, 117, 87, - /* 920 */ 88, 114, 115, 117, 117, 117, 117, 117, 96, 117, - /* 930 */ 78, 99, 100, 117, 82, 117, 84, 85, 106, 87, - /* 940 */ 88, 117, 117, 111, 117, 117, 117, 117, 96, 117, - /* 950 */ 117, 99, 100, 117, 117, 78, 117, 117, 106, 82, - /* 960 */ 117, 84, 85, 111, 87, 88, 117, 117, 78, 117, - /* 970 */ 117, 117, 82, 96, 84, 117, 99, 100, 88, 117, - /* 980 */ 117, 117, 117, 106, 117, 78, 117, 117, 111, 82, - /* 990 */ 100, 84, 85, 117, 87, 88, 106, 117, 117, 117, - /* 1000 */ 117, 117, 117, 96, 117, 117, 99, 100, 117, 117, - /* 1010 */ 78, 117, 117, 106, 82, 117, 84, 85, 111, 87, - /* 1020 */ 88, 117, 117, 117, 117, 117, 117, 117, 96, 117, - /* 1030 */ 78, 99, 100, 117, 82, 117, 84, 85, 106, 87, - /* 1040 */ 88, 117, 117, 111, 117, 117, 117, 117, 96, 117, - /* 1050 */ 117, 99, 100, 117, 117, 78, 117, 117, 106, 82, - /* 1060 */ 117, 84, 85, 111, 87, 88, 117, 117, 78, 117, - /* 1070 */ 117, 117, 82, 96, 84, 117, 99, 100, 88, 117, - /* 1080 */ 117, 117, 117, 106, 117, 78, 117, 117, 111, 82, - /* 1090 */ 100, 84, 85, 117, 87, 88, 106, 117, 117, 117, - /* 1100 */ 117, 117, 117, 96, 117, 117, 99, 100, 117, 117, - /* 1110 */ 78, 117, 117, 106, 82, 117, 84, 85, 111, 87, - /* 1120 */ 88, 117, 117, 117, 117, 117, 117, 117, 96, 117, - /* 1130 */ 78, 99, 100, 117, 82, 117, 84, 85, 106, 87, - /* 1140 */ 88, 117, 117, 111, 117, 117, 117, 117, 96, 117, - /* 1150 */ 117, 99, 100, 117, 117, 78, 117, 117, 106, 82, - /* 1160 */ 117, 84, 85, 111, 87, 88, 117, 117, 117, 117, - /* 1170 */ 117, 117, 117, 96, 78, 117, 99, 100, 82, 117, - /* 1180 */ 84, 85, 86, 106, 88, 117, 117, 117, 111, 117, - /* 1190 */ 117, 117, 96, 78, 117, 99, 100, 82, 117, 84, - /* 1200 */ 85, 117, 106, 88, 117, 117, 117, 117, 117, 117, - /* 1210 */ 117, 96, 117, 78, 99, 100, 117, 82, 103, 84, - /* 1220 */ 85, 106, 78, 88, 117, 117, 82, 117, 84, 85, - /* 1230 */ 117, 96, 88, 117, 99, 100, 117, 117, 103, 117, - /* 1240 */ 96, 106, 78, 99, 100, 117, 82, 103, 84, 85, - /* 1250 */ 106, 117, 88, 117, 117, 78, 117, 117, 117, 82, - /* 1260 */ 96, 84, 85, 99, 100, 88, 117, 117, 117, 117, - /* 1270 */ 106, 117, 117, 96, 117, 117, 99, 100, 78, 115, - /* 1280 */ 103, 117, 82, 106, 84, 85, 86, 117, 88, 117, - /* 1290 */ 117, 117, 117, 117, 117, 117, 96, 78, 117, 99, - /* 1300 */ 100, 82, 117, 84, 85, 117, 106, 88, 117, 117, - /* 1310 */ 78, 117, 117, 117, 82, 96, 84, 85, 99, 100, - /* 1320 */ 88, 117, 117, 78, 117, 106, 117, 82, 96, 84, - /* 1330 */ 85, 99, 100, 88, 117, 117, 117, 117, 106, 117, - /* 1340 */ 117, 96, 78, 117, 99, 100, 82, 117, 84, 85, - /* 1350 */ 117, 106, 88, 117, 117, 78, 117, 117, 117, 82, - /* 1360 */ 96, 84, 85, 99, 100, 88, 117, 117, 117, 117, - /* 1370 */ 106, 117, 117, 96, 117, 78, 99, 100, 117, 82, - /* 1380 */ 78, 84, 85, 106, 82, 88, 84, 85, 117, 117, - /* 1390 */ 88, 117, 117, 96, 117, 117, 99, 100, 96, 117, - /* 1400 */ 117, 99, 100, 106, 117, 117, 78, 117, 106, 117, - /* 1410 */ 82, 78, 84, 85, 117, 82, 88, 84, 85, 117, - /* 1420 */ 117, 88, 117, 117, 96, 117, 117, 99, 100, 96, - /* 1430 */ 117, 78, 99, 100, 106, 82, 117, 84, 85, 106, - /* 1440 */ 78, 88, 117, 117, 82, 117, 84, 85, 117, 96, - /* 1450 */ 88, 117, 99, 100, 117, 117, 117, 117, 96, 106, - /* 1460 */ 78, 99, 100, 117, 82, 78, 84, 85, 106, 82, - /* 1470 */ 88, 84, 85, 117, 117, 88, 117, 117, 96, 117, - /* 1480 */ 117, 99, 100, 96, 117, 78, 99, 100, 106, 82, - /* 1490 */ 78, 84, 85, 106, 82, 88, 84, 85, 117, 117, - /* 1500 */ 88, 117, 117, 96, 117, 117, 99, 100, 96, 117, - /* 1510 */ 78, 99, 100, 106, 82, 117, 84, 85, 106, 78, - /* 1520 */ 88, 117, 117, 82, 117, 84, 85, 117, 96, 88, - /* 1530 */ 117, 99, 100, 117, 117, 117, 117, 96, 106, 78, - /* 1540 */ 99, 100, 117, 82, 78, 84, 117, 106, 82, 88, - /* 1550 */ 84, 117, 117, 117, 88, 117, 117, 96, 117, 117, - /* 1560 */ 99, 100, 96, 117, 78, 99, 100, 106, 82, 78, - /* 1570 */ 84, 117, 106, 82, 88, 84, 117, 117, 117, 88, - /* 1580 */ 117, 117, 96, 117, 117, 99, 100, 117, 117, 78, - /* 1590 */ 78, 100, 106, 82, 82, 84, 84, 106, 117, 88, - /* 1600 */ 88, 117, 117, 117, 117, 117, 117, 117, 117, 117, - /* 1610 */ 117, 100, 100, 117, 117, 117, 117, 106, 106, + /* 0 */ 10, 105, 12, 13, 108, 15, 110, 17, 19, 19, + /* 10 */ 20, 76, 77, 78, 79, 80, 106, 27, 28, 11, + /* 20 */ 31, 32, 10, 33, 12, 13, 36, 37, 33, 39, + /* 30 */ 40, 41, 42, 38, 11, 45, 46, 10, 43, 12, + /* 40 */ 13, 18, 47, 79, 84, 22, 19, 83, 10, 85, + /* 50 */ 90, 13, 14, 89, 27, 28, 48, 45, 18, 99, + /* 60 */ 33, 97, 34, 36, 37, 101, 39, 40, 41, 42, + /* 70 */ 30, 107, 45, 46, 47, 10, 48, 12, 13, 33, + /* 80 */ 2, 3, 4, 11, 19, 7, 8, 9, 84, 43, + /* 90 */ 18, 85, 27, 28, 90, 89, 10, 18, 33, 13, + /* 100 */ 14, 36, 37, 99, 39, 40, 41, 42, 22, 103, + /* 110 */ 45, 46, 10, 107, 12, 13, 10, 113, 12, 13, + /* 120 */ 10, 19, 10, 13, 14, 13, 11, 48, 48, 27, + /* 130 */ 28, 16, 60, 18, 28, 33, 12, 13, 36, 37, + /* 140 */ 90, 39, 40, 41, 42, 39, 40, 45, 46, 10, + /* 150 */ 16, 12, 13, 26, 44, 79, 44, 11, 19, 83, + /* 160 */ 33, 85, 110, 48, 18, 89, 27, 28, 14, 45, + /* 170 */ 43, 10, 33, 97, 13, 36, 37, 101, 39, 40, + /* 180 */ 41, 42, 8, 107, 45, 46, 10, 33, 12, 13, + /* 190 */ 10, 11, 79, 13, 48, 19, 83, 43, 85, 78, + /* 200 */ 79, 80, 89, 27, 28, 44, 26, 10, 11, 33, + /* 210 */ 13, 11, 36, 37, 101, 39, 40, 41, 42, 10, + /* 220 */ 107, 45, 46, 10, 96, 12, 13, 10, 11, 79, + /* 230 */ 13, 11, 19, 83, 85, 85, 48, 109, 89, 89, + /* 240 */ 27, 28, 33, 26, 10, 11, 33, 13, 48, 36, + /* 250 */ 37, 101, 39, 40, 41, 42, 107, 107, 45, 46, + /* 260 */ 10, 73, 12, 13, 11, 21, 79, 13, 48, 19, + /* 270 */ 83, 18, 85, 29, 18, 22, 89, 27, 28, 14, + /* 280 */ 24, 16, 28, 33, 12, 13, 36, 37, 101, 39, + /* 290 */ 40, 41, 42, 90, 107, 45, 46, 10, 91, 12, + /* 300 */ 13, 11, 84, 79, 48, 91, 19, 83, 90, 85, + /* 310 */ 81, 11, 11, 89, 27, 28, 113, 99, 18, 18, + /* 320 */ 33, 18, 19, 36, 37, 101, 39, 40, 41, 42, + /* 330 */ 11, 107, 45, 46, 10, 22, 12, 13, 48, 84, + /* 340 */ 79, 84, 11, 19, 83, 90, 85, 90, 105, 18, + /* 350 */ 89, 27, 28, 110, 99, 79, 99, 33, 79, 38, + /* 360 */ 36, 37, 101, 39, 40, 41, 42, 46, 107, 45, + /* 370 */ 46, 10, 10, 12, 13, 13, 84, 79, 102, 60, + /* 380 */ 19, 83, 90, 85, 106, 105, 73, 89, 27, 28, + /* 390 */ 110, 99, 34, 117, 33, 91, 117, 36, 37, 101, + /* 400 */ 39, 40, 41, 42, 11, 107, 45, 46, 50, 51, + /* 410 */ 52, 53, 54, 55, 56, 57, 58, 59, 13, 11, + /* 420 */ 15, 95, 17, 84, 11, 20, 18, 11, 70, 71, + /* 430 */ 72, 18, 11, 10, 18, 109, 13, 34, 99, 18, + /* 440 */ 11, 13, 91, 50, 51, 52, 53, 54, 55, 56, + /* 450 */ 57, 58, 59, 50, 51, 52, 53, 54, 55, 56, + /* 460 */ 57, 58, 59, 70, 71, 72, 10, 92, 93, 13, + /* 470 */ 11, 106, 44, 70, 71, 72, 29, 38, 19, 50, + /* 480 */ 51, 52, 53, 54, 55, 56, 57, 58, 59, 34, + /* 490 */ 31, 32, 80, 106, 82, 48, 109, 11, 18, 70, + /* 500 */ 71, 72, 48, 49, 18, 50, 51, 52, 53, 54, + /* 510 */ 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, + /* 520 */ 66, 67, 68, 69, 14, 70, 71, 72, 19, 95, + /* 530 */ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + /* 540 */ 31, 32, 84, 109, 10, 95, 12, 13, 38, 84, + /* 550 */ 70, 71, 72, 19, 30, 90, 47, 99, 45, 109, + /* 560 */ 13, 27, 28, 10, 99, 12, 13, 33, 12, 111, + /* 570 */ 36, 37, 19, 39, 40, 41, 42, 11, 113, 45, + /* 580 */ 27, 28, 95, 21, 18, 95, 33, 95, 34, 36, + /* 590 */ 37, 47, 39, 40, 41, 42, 109, 33, 45, 109, + /* 600 */ 35, 109, 50, 51, 52, 53, 54, 55, 56, 57, + /* 610 */ 58, 59, 50, 51, 52, 53, 54, 55, 56, 57, + /* 620 */ 58, 59, 70, 71, 72, 84, 6, 34, 11, 84, + /* 630 */ 10, 16, 70, 71, 72, 18, 11, 26, 11, 60, + /* 640 */ 99, 16, 79, 18, 99, 18, 83, 27, 85, 86, + /* 650 */ 45, 88, 89, 38, 13, 92, 111, 84, 33, 84, + /* 660 */ 97, 46, 42, 100, 101, 48, 49, 13, 43, 11, + /* 670 */ 107, 34, 99, 48, 99, 112, 18, 95, 61, 62, + /* 680 */ 63, 64, 65, 66, 67, 68, 69, 114, 11, 114, + /* 690 */ 11, 109, 79, 73, 74, 18, 83, 18, 85, 86, + /* 700 */ 87, 88, 89, 1, 2, 3, 4, 5, 6, 7, + /* 710 */ 97, 11, 10, 100, 101, 11, 11, 6, 18, 11, + /* 720 */ 107, 10, 18, 18, 11, 112, 18, 48, 49, 27, + /* 730 */ 11, 18, 29, 13, 84, 13, 84, 18, 27, 12, + /* 740 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 99, + /* 750 */ 47, 99, 11, 42, 11, 11, 30, 95, 95, 18, + /* 760 */ 79, 18, 18, 111, 83, 23, 85, 86, 87, 88, + /* 770 */ 89, 109, 109, 79, 48, 14, 33, 83, 97, 85, + /* 780 */ 30, 100, 101, 89, 73, 74, 43, 105, 107, 48, + /* 790 */ 49, 30, 110, 112, 28, 101, 84, 14, 48, 34, + /* 800 */ 84, 107, 61, 62, 63, 64, 65, 66, 67, 68, + /* 810 */ 69, 99, 35, 48, 49, 99, 11, 25, 11, 13, + /* 820 */ 12, 84, 11, 13, 12, 25, 61, 62, 63, 64, + /* 830 */ 65, 66, 67, 68, 69, 22, 99, 13, 12, 79, + /* 840 */ 18, 108, 11, 83, 14, 85, 86, 87, 88, 89, + /* 850 */ 99, 98, 106, 12, 109, 18, 18, 97, 94, 103, + /* 860 */ 100, 101, 34, 114, 18, 33, 30, 107, 106, 111, + /* 870 */ 94, 92, 112, 118, 118, 118, 48, 49, 118, 118, + /* 880 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 61, + /* 890 */ 62, 63, 64, 65, 66, 67, 68, 69, 118, 118, + /* 900 */ 118, 118, 118, 118, 118, 118, 79, 118, 118, 118, + /* 910 */ 83, 118, 85, 86, 118, 88, 89, 118, 118, 118, + /* 920 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 930 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 940 */ 118, 118, 118, 118, 97, 118, 118, 100, 101, 118, + /* 950 */ 118, 118, 118, 118, 107, 118, 79, 118, 118, 112, + /* 960 */ 83, 118, 85, 86, 118, 88, 89, 118, 118, 118, + /* 970 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 980 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 990 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1000 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1010 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1020 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1030 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1040 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1050 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1060 */ 83, 118, 85, 86, 107, 118, 89, 118, 118, 112, + /* 1070 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1080 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 118, + /* 1090 */ 118, 118, 115, 116, 97, 118, 79, 100, 101, 118, + /* 1100 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1110 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1120 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1130 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1140 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1150 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1160 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1170 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1180 */ 83, 118, 85, 86, 107, 88, 89, 118, 118, 112, + /* 1190 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1200 */ 83, 118, 85, 86, 107, 118, 89, 118, 118, 112, + /* 1210 */ 118, 118, 118, 118, 97, 118, 79, 100, 101, 118, + /* 1220 */ 83, 104, 85, 86, 107, 79, 89, 118, 118, 83, + /* 1230 */ 118, 85, 86, 87, 97, 89, 118, 100, 101, 118, + /* 1240 */ 118, 104, 118, 97, 107, 118, 100, 101, 118, 118, + /* 1250 */ 118, 118, 118, 107, 79, 118, 118, 118, 83, 118, + /* 1260 */ 85, 86, 87, 79, 89, 118, 118, 83, 118, 85, + /* 1270 */ 86, 118, 97, 89, 118, 100, 101, 118, 118, 118, + /* 1280 */ 118, 97, 107, 79, 100, 101, 118, 83, 118, 85, + /* 1290 */ 86, 107, 118, 89, 118, 118, 118, 118, 118, 118, + /* 1300 */ 116, 97, 118, 79, 100, 101, 118, 83, 104, 85, + /* 1310 */ 86, 107, 79, 89, 118, 118, 83, 118, 85, 86, + /* 1320 */ 118, 97, 89, 118, 100, 101, 118, 118, 104, 118, + /* 1330 */ 97, 107, 118, 100, 101, 118, 118, 118, 79, 118, + /* 1340 */ 107, 118, 83, 79, 85, 86, 118, 83, 89, 85, + /* 1350 */ 86, 118, 118, 89, 118, 118, 97, 118, 118, 100, + /* 1360 */ 101, 97, 118, 79, 100, 101, 107, 83, 118, 85, + /* 1370 */ 86, 107, 118, 89, 118, 118, 118, 118, 118, 118, + /* 1380 */ 118, 97, 118, 79, 100, 101, 118, 83, 79, 85, + /* 1390 */ 86, 107, 83, 89, 85, 86, 118, 118, 89, 118, + /* 1400 */ 118, 97, 118, 118, 100, 101, 97, 118, 79, 100, + /* 1410 */ 101, 107, 83, 79, 85, 86, 107, 83, 89, 85, + /* 1420 */ 86, 118, 118, 89, 118, 118, 97, 118, 118, 100, + /* 1430 */ 101, 97, 118, 79, 100, 101, 107, 83, 118, 85, + /* 1440 */ 86, 107, 118, 89, 118, 118, 79, 118, 118, 118, + /* 1450 */ 83, 97, 85, 86, 100, 101, 89, 118, 118, 118, + /* 1460 */ 118, 107, 118, 118, 97, 79, 118, 100, 101, 83, + /* 1470 */ 118, 85, 86, 118, 107, 89, 118, 118, 79, 118, + /* 1480 */ 118, 118, 83, 97, 85, 86, 100, 101, 89, 118, + /* 1490 */ 118, 79, 118, 107, 118, 83, 97, 85, 86, 100, + /* 1500 */ 101, 89, 118, 118, 118, 118, 107, 118, 118, 97, + /* 1510 */ 79, 118, 100, 101, 83, 118, 85, 86, 118, 107, + /* 1520 */ 89, 118, 118, 79, 118, 118, 118, 83, 97, 85, + /* 1530 */ 86, 100, 101, 89, 118, 118, 79, 118, 107, 118, + /* 1540 */ 83, 97, 85, 86, 100, 101, 89, 118, 118, 79, + /* 1550 */ 118, 107, 118, 83, 97, 85, 86, 100, 101, 89, + /* 1560 */ 118, 118, 79, 118, 107, 118, 83, 97, 85, 118, + /* 1570 */ 100, 101, 89, 118, 118, 79, 118, 107, 118, 83, + /* 1580 */ 97, 85, 118, 100, 101, 89, 118, 118, 118, 118, + /* 1590 */ 107, 118, 118, 97, 79, 118, 100, 101, 83, 118, + /* 1600 */ 85, 118, 118, 107, 89, 118, 118, 118, 118, 118, + /* 1610 */ 118, 118, 97, 118, 118, 100, 101, 118, 118, 118, + /* 1620 */ 118, 118, 107, ); - const YY_SHIFT_USE_DFLT = -10; + const YY_SHIFT_USE_DFLT = -12; const YY_SHIFT_MAX = 249; static public $yy_shift_ofst = array( - /* 0 */ 724, 326, 289, 289, 363, 141, 141, 141, 141, 141, - /* 10 */ 141, 141, 141, 141, 141, 141, 141, 104, 141, -9, - /* 20 */ -9, 67, 104, 67, 67, 67, 67, 67, 67, 67, - /* 30 */ 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, - /* 40 */ 67, 67, 67, 28, 178, 215, 252, 215, 400, 400, - /* 50 */ 400, 400, 400, 500, 400, 642, 701, 47, 551, 551, - /* 60 */ 724, 183, 239, 80, 296, 39, 5, 231, 526, 557, - /* 70 */ 557, 557, 526, 633, 691, 410, 601, 158, 165, 108, - /* 80 */ 12, 403, 412, 274, 36, 615, 516, 36, 36, 661, - /* 90 */ 36, 36, 495, 516, 36, 36, 36, 799, 799, 610, - /* 100 */ 799, 812, 811, 610, 610, 396, 436, 446, 561, 527, - /* 110 */ 496, 584, 584, 584, 584, 584, 584, 584, 584, 584, - /* 120 */ 32, 219, 220, 166, 125, 185, 123, 54, 445, 503, - /* 130 */ 504, 513, 406, 369, 370, 228, 404, 152, 451, 662, - /* 140 */ 413, 577, 547, 387, 546, 541, 196, 512, 582, 660, - /* 150 */ 175, 175, 175, 486, 175, 634, 450, 545, 175, 261, - /* 160 */ 514, 813, 542, 610, 542, 610, 542, 542, 839, 542, - /* 170 */ 809, 811, 574, 610, 574, 542, 542, 542, 610, 542, - /* 180 */ -10, -10, -10, -10, -10, -10, -10, 145, 38, 235, - /* 190 */ 264, 301, 140, 292, 140, 278, 179, 230, 409, 323, - /* 200 */ 332, 230, 230, 351, 368, 421, 85, 254, 230, 276, - /* 210 */ 695, 675, 758, 676, 721, 702, 673, 671, 645, 623, - /* 220 */ 646, 665, 669, 668, 682, 778, 753, 779, 784, 801, - /* 230 */ 787, 755, 771, 731, 690, 732, 210, 733, 704, 788, - /* 240 */ 251, 210, 218, 205, 251, 262, 416, 350, 151, 76, + /* 0 */ 702, 361, 361, 250, 176, 139, 139, 139, 139, 139, + /* 10 */ 139, 139, 139, 139, 139, 139, 139, 139, 65, -10, + /* 20 */ -10, 102, 65, 102, 102, 102, 102, 102, 102, 102, + /* 30 */ 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, + /* 40 */ 102, 102, 102, 27, 287, 324, 213, 287, 534, 534, + /* 50 */ 534, 534, 534, 534, 553, 741, 679, 12, 480, 480, + /* 60 */ 702, 625, 711, 115, 256, 615, 124, 146, 40, 79, + /* 70 */ 40, 40, 79, 617, 765, 828, 454, 620, 78, 86, + /* 80 */ 110, 161, 253, 23, 423, 456, 456, 423, 423, 708, + /* 90 */ 423, 423, 362, 423, 423, 265, 423, 837, 837, 838, + /* 100 */ 837, 134, 134, 841, 134, 358, 562, 393, 429, 403, + /* 110 */ 455, 552, 552, 552, 552, 552, 552, 552, 552, 552, + /* 120 */ 217, 180, 405, 38, 112, 197, 234, 321, 700, 290, + /* 130 */ 321, 321, 321, 321, 658, 200, 209, 421, 566, 220, + /* 140 */ 627, 408, 188, 8, 301, 719, 713, 331, 750, 744, + /* 150 */ 726, 447, 416, 486, 704, 705, 677, 413, 28, 300, + /* 160 */ 272, 80, 846, 832, 80, 80, 80, 841, 134, 836, + /* 170 */ 846, 80, 134, 174, 80, 80, 134, 80, 80, 134, + /* 180 */ -12, -12, -12, -12, -12, -12, -12, 106, 509, -5, + /* 190 */ 459, 743, 154, 127, 72, -11, -11, 510, 46, 46, + /* 200 */ 319, 703, 761, 46, 46, 254, 428, 244, 313, 303, + /* 210 */ 831, 806, 808, 807, 792, 805, 766, 783, 777, 811, + /* 220 */ 439, 826, 830, 822, 824, 813, 812, 810, 800, 742, + /* 230 */ 727, 554, 564, 593, 544, 556, 777, 524, 547, 513, + /* 240 */ 565, 611, 720, 637, 722, 654, 579, 579, 605, 641, ); - const YY_REDUCE_USE_DFLT = -104; + const YY_REDUCE_USE_DFLT = -105; const YY_REDUCE_MAX = 186; static public $yy_reduce_ofst = array( - /* 0 */ -64, 719, 694, 749, 635, 832, 1007, 769, 1052, 1077, - /* 10 */ 1032, 794, 907, 932, 852, 977, 952, 807, 877, 1096, - /* 20 */ 1200, 1177, 1164, 1115, 1144, 1135, 1353, 1333, 1362, 1382, - /* 30 */ 1387, 1328, 1302, 1245, 1412, 1232, 1219, 1264, 1277, 1297, - /* 40 */ 1407, 1441, 1432, 1461, 1486, 1466, -35, 4, 1491, 41, - /* 50 */ 890, 1512, 714, 990, 1511, 257, 256, -68, 243, 302, - /* 60 */ 124, 293, 157, 294, -2, 40, 216, -103, -2, -21, - /* 70 */ 327, 295, 259, 481, 481, 481, 481, 338, 456, 518, - /* 80 */ 550, 649, 649, 518, 679, 265, 580, 666, 579, 593, - /* 90 */ 681, 677, 214, 265, 265, 552, 467, 386, 725, 214, - /* 100 */ 726, 728, 372, 636, 433, 603, 603, 603, 603, 603, - /* 110 */ 603, 603, 603, 603, 603, 603, 603, 603, 603, 603, - /* 120 */ 720, 720, 742, 720, 720, 720, 720, 469, 734, 734, - /* 130 */ 734, 734, 734, 734, 734, 469, 734, 469, 734, 734, - /* 140 */ 469, 734, 734, 469, 734, 469, 736, 469, 734, 734, - /* 150 */ 737, 737, 737, 469, 737, 734, 735, 734, 737, 469, - /* 160 */ 734, 740, 469, 519, 469, 519, 469, 469, 772, 469, - /* 170 */ 738, 730, 502, 519, 497, 469, 469, 469, 519, 469, - /* 180 */ 539, 393, -97, 65, 13, -86, 727, + /* 0 */ -65, 760, 613, 681, 563, 877, 917, 847, 827, 897, + /* 10 */ 1097, 1037, 937, 1057, 1077, 1017, 997, 957, 977, 1175, + /* 20 */ 1146, 1137, 1184, 1204, 1224, 1117, 1334, 1412, 1386, 1444, + /* 30 */ 1354, 1284, 1264, 1304, 1329, 1309, 1259, 1367, 1457, 1431, + /* 40 */ 1233, 1399, 1470, 1483, 1515, 1496, 76, -36, 298, 694, + /* 50 */ 113, 224, 150, 187, 261, 465, 4, 6, 575, 573, + /* 60 */ 121, -40, 276, 255, 257, -104, 149, 218, 545, 218, + /* 70 */ 458, 652, 292, 203, 203, 203, 203, 279, 412, 128, + /* 80 */ 387, 387, 541, 541, 490, 326, 662, 582, 492, 339, + /* 90 */ 434, 450, 326, 487, 326, 243, 663, 716, 712, 650, + /* 100 */ 737, 682, 243, 375, 280, 749, 749, 749, 749, 749, + /* 110 */ 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, + /* 120 */ 745, 745, 753, 745, 745, 745, 745, 733, 751, 50, + /* 130 */ 733, 733, 733, 733, 751, 50, 746, 751, 751, 50, + /* 140 */ 751, 751, 50, 50, 751, 751, 751, 751, 50, 751, + /* 150 */ 50, 50, 751, 751, 751, 751, 751, 751, 50, 751, + /* 160 */ 756, 50, 764, 762, 50, 50, 50, 779, 52, 758, + /* 170 */ 776, 50, 52, 229, 50, 50, 52, 50, 50, 52, + /* 180 */ 351, 207, 214, -90, 278, 304, 365, ); static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 3, 4, 5, 6, 9, 26, ), - /* 1 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 2 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 3 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 4 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 5 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 6 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 7 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 8 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 9 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 10 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 11 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 12 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 13 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 14 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 15 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 16 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 17 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 18 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 19 */ array(9, 11, 12, 14, 16, 18, 19, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 20 */ array(9, 11, 12, 14, 16, 18, 19, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 21 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 22 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 23 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 24 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 25 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 26 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 27 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 28 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 29 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 30 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 31 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 32 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 33 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 34 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 35 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 36 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 37 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 38 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 39 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 40 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 41 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 42 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 43 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, 46, ), - /* 44 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 45 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 46 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 47 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), - /* 48 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), - /* 49 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), - /* 50 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), - /* 51 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), - /* 52 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), - /* 53 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), - /* 54 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), - /* 55 */ array(10, 17, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), - /* 56 */ array(10, 17, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), - /* 57 */ array(9, 11, 12, 44, ), - /* 58 */ array(17, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 59 */ array(17, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 60 */ array(1, 2, 3, 4, 5, 6, 9, 26, ), - /* 61 */ array(10, 15, 17, 32, 42, 47, ), - /* 62 */ array(4, 9, 26, 41, 72, 73, ), - /* 63 */ array(10, 15, 17, 47, ), - /* 64 */ array(10, 17, 47, ), - /* 65 */ array(11, 12, 44, ), - /* 66 */ array(17, 23, 47, ), - /* 67 */ array(15, 37, 45, ), - /* 68 */ array(17, 47, ), - /* 69 */ array(17, 29, ), - /* 70 */ array(17, 29, ), - /* 71 */ array(17, 29, ), - /* 72 */ array(17, 47, ), - /* 73 */ array(10, 17, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), - /* 74 */ array(33, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), - /* 75 */ array(33, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), - /* 76 */ array(47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), - /* 77 */ array(2, 3, 5, 6, 7, 8, ), - /* 78 */ array(4, 9, 26, 41, 72, 73, ), - /* 79 */ array(9, 12, 13, 43, ), - /* 80 */ array(9, 12, 13, 21, ), - /* 81 */ array(10, 17, 21, ), - /* 82 */ array(10, 17, 21, ), - /* 83 */ array(9, 12, 43, ), - /* 84 */ array(9, 12, ), - /* 85 */ array(9, 12, ), - /* 86 */ array(9, 12, ), - /* 87 */ array(9, 12, ), - /* 88 */ array(9, 12, ), - /* 89 */ array(10, 17, ), - /* 90 */ array(9, 12, ), - /* 91 */ array(9, 12, ), - /* 92 */ array(13, 15, ), - /* 93 */ array(9, 12, ), - /* 94 */ array(9, 12, ), - /* 95 */ array(9, 12, ), - /* 96 */ array(9, 12, ), - /* 97 */ array(17, ), - /* 98 */ array(17, ), - /* 99 */ array(15, ), - /* 100 */ array(17, ), - /* 101 */ array(17, ), - /* 102 */ array(11, ), - /* 103 */ array(15, ), - /* 104 */ array(15, ), - /* 105 */ array(10, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 106 */ array(20, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 107 */ array(33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 108 */ array(10, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 109 */ array(33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 110 */ array(33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 111 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 112 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 113 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 114 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 115 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 116 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 117 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 118 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 119 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), - /* 120 */ array(9, 10, 12, 25, ), - /* 121 */ array(9, 10, 12, 25, ), - /* 122 */ array(12, 14, 16, 19, ), - /* 123 */ array(9, 12, 43, ), - /* 124 */ array(9, 12, 13, ), - /* 125 */ array(9, 10, 12, ), - /* 126 */ array(9, 10, 12, ), - /* 127 */ array(47, 72, ), - /* 128 */ array(10, 17, ), - /* 129 */ array(10, 17, ), - /* 130 */ array(10, 17, ), - /* 131 */ array(10, 17, ), - /* 132 */ array(10, 17, ), - /* 133 */ array(10, 17, ), - /* 134 */ array(10, 17, ), - /* 135 */ array(29, 47, ), - /* 136 */ array(10, 17, ), - /* 137 */ array(10, 47, ), - /* 138 */ array(10, 17, ), - /* 139 */ array(10, 17, ), - /* 140 */ array(29, 47, ), - /* 141 */ array(10, 17, ), - /* 142 */ array(10, 17, ), - /* 143 */ array(10, 47, ), - /* 144 */ array(10, 17, ), - /* 145 */ array(28, 47, ), - /* 146 */ array(11, 12, ), - /* 147 */ array(10, 47, ), - /* 148 */ array(10, 17, ), - /* 149 */ array(10, 17, ), - /* 150 */ array(37, 45, ), - /* 151 */ array(37, 45, ), - /* 152 */ array(37, 45, ), - /* 153 */ array(33, 47, ), - /* 154 */ array(37, 45, ), - /* 155 */ array(10, 17, ), - /* 156 */ array(9, 32, ), - /* 157 */ array(10, 17, ), - /* 158 */ array(37, 45, ), - /* 159 */ array(10, 47, ), - /* 160 */ array(10, 17, ), - /* 161 */ array(29, ), - /* 162 */ array(47, ), - /* 163 */ array(15, ), - /* 164 */ array(47, ), - /* 165 */ array(15, ), - /* 166 */ array(47, ), - /* 167 */ array(47, ), - /* 168 */ array(7, ), - /* 169 */ array(47, ), - /* 170 */ array(32, ), - /* 171 */ array(11, ), - /* 172 */ array(17, ), - /* 173 */ array(15, ), - /* 174 */ array(17, ), - /* 175 */ array(47, ), - /* 176 */ array(47, ), - /* 177 */ array(47, ), - /* 178 */ array(15, ), - /* 179 */ array(47, ), + /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 10, 27, ), + /* 1 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 2 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 3 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 4 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 5 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 6 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 7 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 8 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 9 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 10 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 11 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 12 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 13 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 14 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 15 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 16 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 17 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 18 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 19 */ array(10, 12, 13, 15, 17, 19, 20, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 20 */ array(10, 12, 13, 15, 17, 19, 20, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 21 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 22 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 23 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 24 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 25 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 26 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 27 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 28 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 29 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 30 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 31 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 32 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 33 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 34 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 35 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 36 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 37 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 38 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 39 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 40 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 41 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 42 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 43 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, 47, ), + /* 44 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 45 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 46 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 47 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, 46, ), + /* 48 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, ), + /* 49 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, ), + /* 50 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, ), + /* 51 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, ), + /* 52 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, ), + /* 53 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, ), + /* 54 */ array(10, 12, 13, 19, 27, 28, 33, 36, 37, 39, 40, 41, 42, 45, ), + /* 55 */ array(11, 18, 48, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 56 */ array(11, 18, 48, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 57 */ array(10, 12, 13, 45, ), + /* 58 */ array(18, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 59 */ array(18, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 60 */ array(1, 2, 3, 4, 5, 6, 7, 10, 27, ), + /* 61 */ array(11, 16, 18, 33, 43, 48, ), + /* 62 */ array(6, 10, 27, 42, 73, 74, ), + /* 63 */ array(11, 16, 18, 48, ), + /* 64 */ array(18, 24, 48, ), + /* 65 */ array(16, 38, 46, ), + /* 66 */ array(12, 13, 45, ), + /* 67 */ array(11, 18, 48, ), + /* 68 */ array(18, 30, ), + /* 69 */ array(18, 48, ), + /* 70 */ array(18, 30, ), + /* 71 */ array(18, 30, ), + /* 72 */ array(18, 48, ), + /* 73 */ array(11, 18, 48, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 74 */ array(34, 48, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 75 */ array(34, 48, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 76 */ array(48, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 77 */ array(6, 10, 27, 42, 73, 74, ), + /* 78 */ array(2, 3, 4, 7, 8, 9, ), + /* 79 */ array(10, 13, 14, 22, ), + /* 80 */ array(10, 13, 14, 44, ), + /* 81 */ array(10, 13, 44, ), + /* 82 */ array(11, 18, 22, ), + /* 83 */ array(11, 18, 22, ), + /* 84 */ array(10, 13, ), + /* 85 */ array(10, 13, ), + /* 86 */ array(10, 13, ), + /* 87 */ array(10, 13, ), + /* 88 */ array(10, 13, ), + /* 89 */ array(11, 18, ), + /* 90 */ array(10, 13, ), + /* 91 */ array(10, 13, ), + /* 92 */ array(10, 13, ), + /* 93 */ array(10, 13, ), + /* 94 */ array(10, 13, ), + /* 95 */ array(14, 16, ), + /* 96 */ array(10, 13, ), + /* 97 */ array(18, ), + /* 98 */ array(18, ), + /* 99 */ array(18, ), + /* 100 */ array(18, ), + /* 101 */ array(16, ), + /* 102 */ array(16, ), + /* 103 */ array(12, ), + /* 104 */ array(16, ), + /* 105 */ array(34, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 106 */ array(21, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 107 */ array(11, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 108 */ array(11, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 109 */ array(34, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 110 */ array(34, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 111 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 112 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 113 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 114 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 115 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 116 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 117 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 118 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 119 */ array(50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 70, 71, 72, ), + /* 120 */ array(10, 11, 13, 26, ), + /* 121 */ array(10, 11, 13, 26, ), + /* 122 */ array(13, 15, 17, 20, ), + /* 123 */ array(10, 13, 14, ), + /* 124 */ array(10, 13, 44, ), + /* 125 */ array(10, 11, 13, ), + /* 126 */ array(10, 11, 13, ), + /* 127 */ array(38, 46, ), + /* 128 */ array(11, 18, ), + /* 129 */ array(11, 48, ), + /* 130 */ array(38, 46, ), + /* 131 */ array(38, 46, ), + /* 132 */ array(38, 46, ), + /* 133 */ array(38, 46, ), + /* 134 */ array(11, 18, ), + /* 135 */ array(11, 48, ), + /* 136 */ array(10, 33, ), + /* 137 */ array(11, 18, ), + /* 138 */ array(11, 18, ), + /* 139 */ array(11, 48, ), + /* 140 */ array(11, 18, ), + /* 141 */ array(11, 18, ), + /* 142 */ array(48, 73, ), + /* 143 */ array(11, 48, ), + /* 144 */ array(11, 18, ), + /* 145 */ array(11, 18, ), + /* 146 */ array(11, 18, ), + /* 147 */ array(11, 18, ), + /* 148 */ array(30, 48, ), + /* 149 */ array(11, 18, ), + /* 150 */ array(30, 48, ), + /* 151 */ array(29, 48, ), + /* 152 */ array(11, 18, ), + /* 153 */ array(11, 18, ), + /* 154 */ array(11, 18, ), + /* 155 */ array(11, 18, ), + /* 156 */ array(11, 18, ), + /* 157 */ array(11, 18, ), + /* 158 */ array(34, 48, ), + /* 159 */ array(11, 18, ), + /* 160 */ array(12, 13, ), + /* 161 */ array(48, ), + /* 162 */ array(18, ), + /* 163 */ array(33, ), + /* 164 */ array(48, ), + /* 165 */ array(48, ), + /* 166 */ array(48, ), + /* 167 */ array(12, ), + /* 168 */ array(16, ), + /* 169 */ array(30, ), + /* 170 */ array(18, ), + /* 171 */ array(48, ), + /* 172 */ array(16, ), + /* 173 */ array(8, ), + /* 174 */ array(48, ), + /* 175 */ array(48, ), + /* 176 */ array(16, ), + /* 177 */ array(48, ), + /* 178 */ array(48, ), + /* 179 */ array(16, ), /* 180 */ array(), /* 181 */ array(), /* 182 */ array(), @@ -779,69 +782,69 @@ static public $yy_action = array( /* 184 */ array(), /* 185 */ array(), /* 186 */ array(), - /* 187 */ array(9, 11, 12, 27, 38, 39, ), - /* 188 */ array(32, 37, 42, 46, ), - /* 189 */ array(10, 17, 32, 42, ), - /* 190 */ array(10, 18, 30, 31, ), - /* 191 */ array(18, 30, 31, 46, ), - /* 192 */ array(18, 30, 31, ), - /* 193 */ array(10, 17, 59, ), - /* 194 */ array(18, 30, 31, ), - /* 195 */ array(25, 32, 42, ), - /* 196 */ array(13, 32, 42, ), - /* 197 */ array(32, 42, ), - /* 198 */ array(21, 72, ), - /* 199 */ array(13, 37, ), - /* 200 */ array(17, 18, ), - /* 201 */ array(32, 42, ), - /* 202 */ array(32, 42, ), - /* 203 */ array(12, 43, ), - /* 204 */ array(20, 28, ), - /* 205 */ array(10, 59, ), - /* 206 */ array(13, 29, ), - /* 207 */ array(12, 27, ), - /* 208 */ array(32, 42, ), - /* 209 */ array(28, 46, ), - /* 210 */ array(17, ), - /* 211 */ array(10, ), + /* 187 */ array(10, 12, 13, 28, 39, 40, ), + /* 188 */ array(19, 31, 32, 47, ), + /* 189 */ array(33, 38, 43, 47, ), + /* 190 */ array(11, 19, 31, 32, ), + /* 191 */ array(11, 18, 33, 43, ), + /* 192 */ array(14, 33, 43, ), + /* 193 */ array(26, 33, 43, ), + /* 194 */ array(11, 18, 60, ), + /* 195 */ array(19, 31, 32, ), + /* 196 */ array(19, 31, 32, ), + /* 197 */ array(14, 38, ), + /* 198 */ array(33, 43, ), + /* 199 */ array(33, 43, ), + /* 200 */ array(11, 60, ), + /* 201 */ array(29, 47, ), + /* 202 */ array(14, 30, ), + /* 203 */ array(33, 43, ), + /* 204 */ array(33, 43, ), + /* 205 */ array(13, 28, ), + /* 206 */ array(13, 44, ), + /* 207 */ array(21, 29, ), + /* 208 */ array(22, 73, ), + /* 209 */ array(18, 19, ), + /* 210 */ array(11, ), + /* 211 */ array(13, ), /* 212 */ array(12, ), - /* 213 */ array(10, ), - /* 214 */ array(21, ), - /* 215 */ array(13, ), - /* 216 */ array(11, ), - /* 217 */ array(12, ), - /* 218 */ array(11, ), - /* 219 */ array(24, ), - /* 220 */ array(11, ), - /* 221 */ array(10, ), - /* 222 */ array(13, ), - /* 223 */ array(24, ), - /* 224 */ array(32, ), - /* 225 */ array(10, ), - /* 226 */ array(33, ), - /* 227 */ array(12, ), - /* 228 */ array(11, ), - /* 229 */ array(11, ), + /* 213 */ array(11, ), + /* 214 */ array(25, ), + /* 215 */ array(11, ), + /* 216 */ array(28, ), + /* 217 */ array(14, ), + /* 218 */ array(35, ), + /* 219 */ array(11, ), + /* 220 */ array(38, ), + /* 221 */ array(12, ), + /* 222 */ array(14, ), + /* 223 */ array(18, ), + /* 224 */ array(13, ), + /* 225 */ array(22, ), + /* 226 */ array(12, ), + /* 227 */ array(13, ), + /* 228 */ array(25, ), + /* 229 */ array(23, ), /* 230 */ array(12, ), - /* 231 */ array(29, ), - /* 232 */ array(12, ), - /* 233 */ array(12, ), - /* 234 */ array(46, ), + /* 231 */ array(34, ), + /* 232 */ array(33, ), + /* 233 */ array(34, ), + /* 234 */ array(47, ), /* 235 */ array(12, ), - /* 236 */ array(59, ), - /* 237 */ array(44, ), - /* 238 */ array(33, ), - /* 239 */ array(25, ), - /* 240 */ array(34, ), - /* 241 */ array(59, ), - /* 242 */ array(22, ), - /* 243 */ array(44, ), - /* 244 */ array(34, ), - /* 245 */ array(27, ), - /* 246 */ array(12, ), - /* 247 */ array(34, ), - /* 248 */ array(37, ), - /* 249 */ array(33, ), + /* 236 */ array(35, ), + /* 237 */ array(30, ), + /* 238 */ array(13, ), + /* 239 */ array(45, ), + /* 240 */ array(35, ), + /* 241 */ array(26, ), + /* 242 */ array(13, ), + /* 243 */ array(34, ), + /* 244 */ array(13, ), + /* 245 */ array(13, ), + /* 246 */ array(60, ), + /* 247 */ array(60, ), + /* 248 */ array(45, ), + /* 249 */ array(13, ), /* 250 */ array(), /* 251 */ array(), /* 252 */ array(), @@ -982,53 +985,55 @@ static public $yy_action = array( /* 387 */ array(), /* 388 */ array(), /* 389 */ array(), + /* 390 */ array(), ); static public $yy_default = array( - /* 0 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, - /* 10 */ 586, 586, 586, 586, 586, 586, 586, 571, 586, 586, - /* 20 */ 586, 529, 586, 529, 529, 529, 586, 586, 586, 586, - /* 30 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, - /* 40 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, - /* 50 */ 586, 586, 586, 586, 586, 539, 539, 586, 450, 450, - /* 60 */ 390, 586, 586, 586, 586, 586, 450, 491, 450, 450, - /* 70 */ 450, 450, 450, 539, 539, 539, 539, 586, 586, 501, - /* 80 */ 586, 472, 472, 501, 586, 586, 586, 586, 586, 465, - /* 90 */ 586, 586, 494, 586, 586, 586, 586, 450, 450, 494, - /* 100 */ 450, 450, 586, 486, 487, 586, 586, 586, 586, 586, - /* 110 */ 586, 453, 544, 543, 552, 553, 549, 537, 545, 548, - /* 120 */ 586, 586, 586, 502, 586, 586, 586, 586, 586, 586, - /* 130 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, - /* 140 */ 586, 586, 586, 586, 586, 528, 586, 586, 586, 586, - /* 150 */ 499, 523, 521, 586, 522, 586, 501, 586, 520, 586, - /* 160 */ 586, 464, 471, 492, 432, 489, 573, 540, 403, 460, - /* 170 */ 501, 586, 585, 488, 585, 470, 574, 457, 517, 572, - /* 180 */ 533, 533, 501, 533, 501, 501, 533, 586, 586, 461, - /* 190 */ 586, 586, 462, 465, 534, 461, 456, 535, 472, 477, - /* 200 */ 586, 461, 586, 586, 586, 465, 515, 586, 554, 586, - /* 210 */ 586, 586, 586, 586, 472, 586, 586, 586, 586, 586, - /* 220 */ 586, 586, 456, 586, 490, 586, 586, 586, 586, 586, - /* 230 */ 586, 515, 586, 586, 586, 586, 465, 586, 586, 465, - /* 240 */ 586, 465, 458, 586, 538, 586, 586, 482, 477, 586, - /* 250 */ 579, 443, 441, 578, 444, 442, 577, 504, 576, 391, - /* 260 */ 524, 516, 455, 583, 575, 485, 582, 505, 511, 468, - /* 270 */ 435, 509, 434, 431, 510, 508, 584, 447, 512, 433, - /* 280 */ 506, 459, 507, 526, 484, 565, 519, 481, 518, 495, - /* 290 */ 500, 480, 479, 473, 476, 474, 475, 478, 503, 514, - /* 300 */ 531, 530, 581, 413, 414, 412, 580, 515, 467, 483, - /* 310 */ 411, 466, 465, 399, 398, 400, 401, 402, 397, 396, - /* 320 */ 392, 393, 394, 395, 404, 405, 445, 440, 446, 449, - /* 330 */ 532, 448, 410, 406, 407, 408, 409, 463, 513, 567, - /* 340 */ 566, 418, 419, 420, 551, 550, 536, 538, 546, 547, - /* 350 */ 421, 422, 438, 437, 439, 428, 430, 436, 423, 424, - /* 360 */ 425, 427, 426, 482, 417, 570, 568, 569, 525, 555, - /* 370 */ 527, 498, 469, 493, 496, 497, 415, 416, 561, 560, - /* 380 */ 562, 563, 564, 559, 558, 541, 542, 556, 557, 429, + /* 0 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, + /* 10 */ 588, 588, 588, 588, 588, 588, 588, 588, 573, 588, + /* 20 */ 588, 531, 588, 531, 531, 531, 588, 588, 588, 588, + /* 30 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, + /* 40 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, + /* 50 */ 588, 588, 588, 588, 588, 541, 541, 588, 452, 452, + /* 60 */ 391, 588, 588, 588, 452, 493, 588, 588, 452, 452, + /* 70 */ 452, 452, 452, 541, 541, 541, 541, 588, 588, 588, + /* 80 */ 503, 503, 474, 474, 588, 588, 588, 588, 588, 467, + /* 90 */ 588, 588, 588, 588, 588, 496, 588, 452, 452, 452, + /* 100 */ 452, 488, 496, 588, 489, 588, 588, 588, 588, 588, + /* 110 */ 588, 547, 546, 455, 550, 551, 545, 539, 554, 555, + /* 120 */ 588, 588, 588, 588, 504, 588, 588, 525, 588, 588, + /* 130 */ 522, 501, 523, 524, 588, 588, 503, 588, 588, 588, + /* 140 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, + /* 150 */ 588, 530, 588, 588, 588, 588, 588, 588, 588, 588, + /* 160 */ 588, 473, 587, 503, 542, 434, 472, 588, 519, 466, + /* 170 */ 587, 575, 494, 405, 459, 574, 491, 462, 576, 490, + /* 180 */ 535, 535, 535, 503, 503, 535, 503, 588, 588, 588, + /* 190 */ 588, 463, 458, 463, 467, 536, 464, 479, 556, 537, + /* 200 */ 467, 588, 517, 463, 588, 588, 588, 588, 474, 588, + /* 210 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, + /* 220 */ 479, 588, 458, 588, 588, 474, 588, 588, 588, 460, + /* 230 */ 588, 588, 492, 588, 588, 588, 540, 517, 588, 588, + /* 240 */ 484, 467, 588, 588, 588, 588, 467, 467, 588, 588, + /* 250 */ 533, 513, 583, 566, 564, 563, 562, 565, 514, 419, + /* 260 */ 402, 512, 511, 509, 585, 487, 578, 584, 581, 580, + /* 270 */ 579, 404, 470, 508, 561, 403, 507, 506, 532, 518, + /* 280 */ 510, 544, 443, 444, 445, 449, 570, 572, 416, 446, + /* 290 */ 529, 394, 393, 392, 457, 500, 396, 395, 571, 397, + /* 300 */ 406, 400, 543, 558, 528, 401, 559, 415, 418, 527, + /* 310 */ 398, 399, 557, 526, 417, 560, 484, 468, 495, 441, + /* 320 */ 520, 440, 521, 499, 498, 497, 502, 432, 451, 448, + /* 330 */ 430, 534, 420, 467, 439, 421, 428, 477, 423, 481, + /* 340 */ 424, 480, 429, 426, 425, 476, 438, 483, 478, 465, + /* 350 */ 475, 482, 422, 569, 568, 414, 411, 540, 582, 515, + /* 360 */ 548, 461, 412, 436, 410, 427, 407, 486, 408, 409, + /* 370 */ 538, 437, 586, 435, 516, 517, 442, 505, 567, 447, + /* 380 */ 431, 471, 553, 433, 450, 549, 413, 485, 552, 469, + /* 390 */ 577, ); - const YYNOCODE = 118; + const YYNOCODE = 119; const YYSTACKDEPTH = 100; - const YYNSTATE = 390; - const YYNRULE = 196; - const YYERRORSYMBOL = 74; + const YYNSTATE = 391; + const YYNRULE = 197; + const YYERRORSYMBOL = 75; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; static public $yyFallback = array( @@ -1058,35 +1063,35 @@ static public $yy_action = array( public $yyTokenName = array( '$', 'COMMENT', 'PHPSTARTTAG', 'PHPENDTAG', - 'OTHER', 'FAKEPHPSTARTTAG', 'LITERALSTART', 'LITERALEND', - 'LITERAL', 'LDEL', 'RDEL', 'DOLLAR', - 'ID', 'EQUAL', 'FOREACH', 'PTR', - 'IF', 'SPACE', 'UNIMATH', 'FOR', - 'SEMICOLON', 'INCDEC', 'TO', 'STEP', - 'AS', 'APTR', 'LDELSLASH', 'INTEGER', - 'COMMA', 'COLON', 'MATH', 'ANDSYM', - 'OPENP', 'CLOSEP', 'QMARK', 'NOT', - 'TYPECAST', 'DOT', 'BOOLEAN', 'NULL', - 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', 'AT', - 'HATCH', 'OPENB', 'CLOSEB', 'VERT', - 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN', - 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD', - 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF', - 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', - 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', - 'MOD', 'LAND', 'LOR', 'LXOR', - 'BACKTICK', 'DOLLARID', 'error', 'start', - 'template', 'template_element', 'smartytag', 'literal', - 'literal_elements', 'literal_element', 'value', 'attributes', - 'variable', 'expr', 'ternary', 'ifexprs', - 'varindexed', 'modifier', 'modparameters', 'statement', - 'statements', 'optspace', 'varvar', 'foraction', - 'array', 'specialclose', 'attribute', 'exprs', - 'function', 'doublequoted', 'method', 'params', - 'objectchain', 'arrayindex', 'object', 'indexdef', - 'varvarele', 'objectelement', 'modparameter', 'ifexpr', - 'ifcond', 'lop', 'arrayelements', 'arrayelement', - 'doublequotedcontent', + 'FAKEPHPSTARTTAG', 'XMLTAG', 'OTHER', 'LITERALSTART', + 'LITERALEND', 'LITERAL', 'LDEL', 'RDEL', + 'DOLLAR', 'ID', 'EQUAL', 'FOREACH', + 'PTR', 'IF', 'SPACE', 'UNIMATH', + 'FOR', 'SEMICOLON', 'INCDEC', 'TO', + 'STEP', 'AS', 'APTR', 'LDELSLASH', + 'INTEGER', 'COMMA', 'COLON', 'MATH', + 'ANDSYM', 'OPENP', 'CLOSEP', 'QMARK', + 'NOT', 'TYPECAST', 'DOT', 'BOOLEAN', + 'NULL', 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', + 'AT', 'HATCH', 'OPENB', 'CLOSEB', + 'VERT', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', + 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', + 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', + 'INSTANCEOF', 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', + 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', + 'NONEIDENTITY', 'MOD', 'LAND', 'LOR', + 'LXOR', 'BACKTICK', 'DOLLARID', 'error', + 'start', 'template', 'template_element', 'smartytag', + 'literal', 'literal_elements', 'literal_element', 'value', + 'attributes', 'variable', 'expr', 'ternary', + 'ifexprs', 'varindexed', 'modifier', 'modparameters', + 'statement', 'statements', 'optspace', 'varvar', + 'foraction', 'array', 'specialclose', 'attribute', + 'exprs', 'function', 'doublequoted', 'method', + 'params', 'objectchain', 'arrayindex', 'object', + 'indexdef', 'varvarele', 'objectelement', 'modparameter', + 'ifexpr', 'ifcond', 'lop', 'arrayelements', + 'arrayelement', 'doublequotedcontent', ); static public $yyRuleName = array( @@ -1098,194 +1103,195 @@ static public $yy_action = array( /* 5 */ "template_element ::= literal", /* 6 */ "template_element ::= PHPSTARTTAG", /* 7 */ "template_element ::= PHPENDTAG", - /* 8 */ "template_element ::= OTHER", - /* 9 */ "template_element ::= FAKEPHPSTARTTAG", - /* 10 */ "literal ::= LITERALSTART LITERALEND", - /* 11 */ "literal ::= LITERALSTART literal_elements LITERALEND", - /* 12 */ "literal_elements ::= literal_elements literal_element", - /* 13 */ "literal_elements ::=", - /* 14 */ "literal_element ::= literal", - /* 15 */ "literal_element ::= LITERAL", - /* 16 */ "literal_element ::= PHPSTARTTAG", - /* 17 */ "literal_element ::= FAKEPHPSTARTTAG", - /* 18 */ "literal_element ::= PHPENDTAG", - /* 19 */ "smartytag ::= LDEL value RDEL", - /* 20 */ "smartytag ::= LDEL value attributes RDEL", - /* 21 */ "smartytag ::= LDEL variable attributes RDEL", - /* 22 */ "smartytag ::= LDEL expr attributes RDEL", - /* 23 */ "smartytag ::= LDEL ternary attributes RDEL", - /* 24 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", - /* 25 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", - /* 26 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", - /* 27 */ "smartytag ::= LDEL DOLLAR ID EQUAL ifexprs attributes RDEL", - /* 28 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL", - /* 29 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", - /* 30 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", - /* 31 */ "smartytag ::= LDEL varindexed EQUAL ifexprs attributes RDEL", - /* 32 */ "smartytag ::= LDEL ID attributes RDEL", - /* 33 */ "smartytag ::= LDEL FOREACH attributes RDEL", - /* 34 */ "smartytag ::= LDEL ID RDEL", - /* 35 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", - /* 36 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", - /* 37 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", - /* 38 */ "smartytag ::= LDEL IF SPACE ifexprs RDEL", - /* 39 */ "smartytag ::= LDEL IF UNIMATH ifexprs RDEL", - /* 40 */ "smartytag ::= LDEL IF SPACE statement RDEL", - /* 41 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL", - /* 42 */ "foraction ::= EQUAL expr", - /* 43 */ "foraction ::= INCDEC", - /* 44 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL", - /* 45 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL", - /* 46 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", - /* 47 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 48 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", - /* 49 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 50 */ "smartytag ::= LDELSLASH ID RDEL", - /* 51 */ "smartytag ::= LDELSLASH specialclose RDEL", - /* 52 */ "specialclose ::= IF", - /* 53 */ "specialclose ::= FOR", - /* 54 */ "specialclose ::= FOREACH", - /* 55 */ "smartytag ::= LDELSLASH ID attributes RDEL", - /* 56 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", - /* 57 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 58 */ "attributes ::= attributes attribute", - /* 59 */ "attributes ::= attribute", - /* 60 */ "attributes ::=", - /* 61 */ "attribute ::= SPACE ID EQUAL ID", - /* 62 */ "attribute ::= SPACE ID EQUAL expr", - /* 63 */ "attribute ::= SPACE ID EQUAL ifexprs", - /* 64 */ "attribute ::= SPACE ID EQUAL value", - /* 65 */ "attribute ::= SPACE ID EQUAL ternary", - /* 66 */ "attribute ::= SPACE ID", - /* 67 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 68 */ "statements ::= statement", - /* 69 */ "statements ::= statements COMMA statement", - /* 70 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 71 */ "expr ::= ID", - /* 72 */ "expr ::= exprs", - /* 73 */ "expr ::= DOLLAR ID COLON ID", - /* 74 */ "expr ::= expr modifier modparameters", - /* 75 */ "exprs ::= value", - /* 76 */ "exprs ::= exprs MATH value", - /* 77 */ "exprs ::= exprs UNIMATH value", - /* 78 */ "exprs ::= exprs ANDSYM value", - /* 79 */ "exprs ::= array", - /* 80 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", - /* 81 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 82 */ "value ::= variable", - /* 83 */ "value ::= UNIMATH value", - /* 84 */ "value ::= NOT value", - /* 85 */ "value ::= TYPECAST value", - /* 86 */ "value ::= variable INCDEC", - /* 87 */ "value ::= INTEGER", - /* 88 */ "value ::= INTEGER DOT INTEGER", - /* 89 */ "value ::= BOOLEAN", - /* 90 */ "value ::= NULL", - /* 91 */ "value ::= function", - /* 92 */ "value ::= OPENP expr CLOSEP", - /* 93 */ "value ::= SINGLEQUOTESTRING", - /* 94 */ "value ::= QUOTE doublequoted QUOTE", - /* 95 */ "value ::= QUOTE QUOTE", - /* 96 */ "value ::= ID DOUBLECOLON method", - /* 97 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 98 */ "value ::= ID DOUBLECOLON method objectchain", - /* 99 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 100 */ "value ::= ID DOUBLECOLON ID", - /* 101 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 102 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 103 */ "value ::= smartytag", - /* 104 */ "variable ::= varindexed", - /* 105 */ "variable ::= DOLLAR varvar AT ID", - /* 106 */ "variable ::= object", - /* 107 */ "variable ::= HATCH ID HATCH", - /* 108 */ "variable ::= HATCH variable HATCH", - /* 109 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 110 */ "arrayindex ::= arrayindex indexdef", - /* 111 */ "arrayindex ::=", - /* 112 */ "indexdef ::= DOT DOLLAR varvar", - /* 113 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 114 */ "indexdef ::= DOT ID", - /* 115 */ "indexdef ::= DOT BOOLEAN", - /* 116 */ "indexdef ::= DOT NULL", - /* 117 */ "indexdef ::= DOT INTEGER", - /* 118 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 119 */ "indexdef ::= OPENB ID CLOSEB", - /* 120 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 121 */ "indexdef ::= OPENB exprs CLOSEB", - /* 122 */ "indexdef ::= OPENB CLOSEB", - /* 123 */ "varvar ::= varvarele", - /* 124 */ "varvar ::= varvar varvarele", - /* 125 */ "varvarele ::= ID", - /* 126 */ "varvarele ::= LDEL expr RDEL", - /* 127 */ "object ::= varindexed objectchain", - /* 128 */ "objectchain ::= objectelement", - /* 129 */ "objectchain ::= objectchain objectelement", - /* 130 */ "objectelement ::= PTR ID arrayindex", - /* 131 */ "objectelement ::= PTR variable arrayindex", - /* 132 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 133 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 134 */ "objectelement ::= PTR method", - /* 135 */ "function ::= ID OPENP params CLOSEP", - /* 136 */ "method ::= ID OPENP params CLOSEP", - /* 137 */ "params ::= expr COMMA params", - /* 138 */ "params ::= expr", - /* 139 */ "params ::=", - /* 140 */ "modifier ::= VERT AT ID", - /* 141 */ "modifier ::= VERT ID", - /* 142 */ "modparameters ::= modparameters modparameter", - /* 143 */ "modparameters ::=", - /* 144 */ "modparameter ::= COLON exprs", - /* 145 */ "modparameter ::= COLON ID", - /* 146 */ "ifexprs ::= ifexpr", - /* 147 */ "ifexprs ::= NOT ifexprs", - /* 148 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 149 */ "ifexpr ::= expr", - /* 150 */ "ifexpr ::= expr ifcond expr", - /* 151 */ "ifexpr ::= expr ISIN array", - /* 152 */ "ifexpr ::= expr ISIN value", - /* 153 */ "ifexpr ::= ifexprs lop ifexprs", - /* 154 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 155 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 156 */ "ifexpr ::= ifexprs ISEVEN", - /* 157 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 158 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 159 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 160 */ "ifexpr ::= ifexprs ISODD", - /* 161 */ "ifexpr ::= ifexprs ISNOTODD", - /* 162 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 163 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 164 */ "ifexpr ::= value INSTANCEOF ID", - /* 165 */ "ifexpr ::= value INSTANCEOF value", - /* 166 */ "ifcond ::= EQUALS", - /* 167 */ "ifcond ::= NOTEQUALS", - /* 168 */ "ifcond ::= GREATERTHAN", - /* 169 */ "ifcond ::= LESSTHAN", - /* 170 */ "ifcond ::= GREATEREQUAL", - /* 171 */ "ifcond ::= LESSEQUAL", - /* 172 */ "ifcond ::= IDENTITY", - /* 173 */ "ifcond ::= NONEIDENTITY", - /* 174 */ "ifcond ::= MOD", - /* 175 */ "lop ::= LAND", - /* 176 */ "lop ::= LOR", - /* 177 */ "lop ::= LXOR", - /* 178 */ "array ::= OPENB arrayelements CLOSEB", - /* 179 */ "arrayelements ::= arrayelement", - /* 180 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 181 */ "arrayelements ::=", - /* 182 */ "arrayelement ::= value APTR expr", - /* 183 */ "arrayelement ::= ID APTR expr", - /* 184 */ "arrayelement ::= expr", - /* 185 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 186 */ "doublequoted ::= doublequotedcontent", - /* 187 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 188 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 189 */ "doublequotedcontent ::= DOLLARID", - /* 190 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 191 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 192 */ "doublequotedcontent ::= smartytag", - /* 193 */ "doublequotedcontent ::= OTHER", - /* 194 */ "optspace ::= SPACE", - /* 195 */ "optspace ::=", + /* 8 */ "template_element ::= FAKEPHPSTARTTAG", + /* 9 */ "template_element ::= XMLTAG", + /* 10 */ "template_element ::= OTHER", + /* 11 */ "literal ::= LITERALSTART LITERALEND", + /* 12 */ "literal ::= LITERALSTART literal_elements LITERALEND", + /* 13 */ "literal_elements ::= literal_elements literal_element", + /* 14 */ "literal_elements ::=", + /* 15 */ "literal_element ::= literal", + /* 16 */ "literal_element ::= LITERAL", + /* 17 */ "literal_element ::= PHPSTARTTAG", + /* 18 */ "literal_element ::= FAKEPHPSTARTTAG", + /* 19 */ "literal_element ::= PHPENDTAG", + /* 20 */ "smartytag ::= LDEL value RDEL", + /* 21 */ "smartytag ::= LDEL value attributes RDEL", + /* 22 */ "smartytag ::= LDEL variable attributes RDEL", + /* 23 */ "smartytag ::= LDEL expr attributes RDEL", + /* 24 */ "smartytag ::= LDEL ternary attributes RDEL", + /* 25 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", + /* 26 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", + /* 27 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", + /* 28 */ "smartytag ::= LDEL DOLLAR ID EQUAL ifexprs attributes RDEL", + /* 29 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL", + /* 30 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", + /* 31 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", + /* 32 */ "smartytag ::= LDEL varindexed EQUAL ifexprs attributes RDEL", + /* 33 */ "smartytag ::= LDEL ID attributes RDEL", + /* 34 */ "smartytag ::= LDEL FOREACH attributes RDEL", + /* 35 */ "smartytag ::= LDEL ID RDEL", + /* 36 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", + /* 37 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", + /* 38 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", + /* 39 */ "smartytag ::= LDEL IF SPACE ifexprs RDEL", + /* 40 */ "smartytag ::= LDEL IF UNIMATH ifexprs RDEL", + /* 41 */ "smartytag ::= LDEL IF SPACE statement RDEL", + /* 42 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL", + /* 43 */ "foraction ::= EQUAL expr", + /* 44 */ "foraction ::= INCDEC", + /* 45 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL", + /* 46 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL", + /* 47 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", + /* 48 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 49 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", + /* 50 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 51 */ "smartytag ::= LDELSLASH ID RDEL", + /* 52 */ "smartytag ::= LDELSLASH specialclose RDEL", + /* 53 */ "specialclose ::= IF", + /* 54 */ "specialclose ::= FOR", + /* 55 */ "specialclose ::= FOREACH", + /* 56 */ "smartytag ::= LDELSLASH ID attributes RDEL", + /* 57 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", + /* 58 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 59 */ "attributes ::= attributes attribute", + /* 60 */ "attributes ::= attribute", + /* 61 */ "attributes ::=", + /* 62 */ "attribute ::= SPACE ID EQUAL ID", + /* 63 */ "attribute ::= SPACE ID EQUAL expr", + /* 64 */ "attribute ::= SPACE ID EQUAL ifexprs", + /* 65 */ "attribute ::= SPACE ID EQUAL value", + /* 66 */ "attribute ::= SPACE ID EQUAL ternary", + /* 67 */ "attribute ::= SPACE ID", + /* 68 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 69 */ "statements ::= statement", + /* 70 */ "statements ::= statements COMMA statement", + /* 71 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 72 */ "expr ::= ID", + /* 73 */ "expr ::= exprs", + /* 74 */ "expr ::= DOLLAR ID COLON ID", + /* 75 */ "expr ::= expr modifier modparameters", + /* 76 */ "exprs ::= value", + /* 77 */ "exprs ::= exprs MATH value", + /* 78 */ "exprs ::= exprs UNIMATH value", + /* 79 */ "exprs ::= exprs ANDSYM value", + /* 80 */ "exprs ::= array", + /* 81 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", + /* 82 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 83 */ "value ::= variable", + /* 84 */ "value ::= UNIMATH value", + /* 85 */ "value ::= NOT value", + /* 86 */ "value ::= TYPECAST value", + /* 87 */ "value ::= variable INCDEC", + /* 88 */ "value ::= INTEGER", + /* 89 */ "value ::= INTEGER DOT INTEGER", + /* 90 */ "value ::= BOOLEAN", + /* 91 */ "value ::= NULL", + /* 92 */ "value ::= function", + /* 93 */ "value ::= OPENP expr CLOSEP", + /* 94 */ "value ::= SINGLEQUOTESTRING", + /* 95 */ "value ::= QUOTE doublequoted QUOTE", + /* 96 */ "value ::= QUOTE QUOTE", + /* 97 */ "value ::= ID DOUBLECOLON method", + /* 98 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 99 */ "value ::= ID DOUBLECOLON method objectchain", + /* 100 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 101 */ "value ::= ID DOUBLECOLON ID", + /* 102 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 103 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 104 */ "value ::= smartytag", + /* 105 */ "variable ::= varindexed", + /* 106 */ "variable ::= DOLLAR varvar AT ID", + /* 107 */ "variable ::= object", + /* 108 */ "variable ::= HATCH ID HATCH", + /* 109 */ "variable ::= HATCH variable HATCH", + /* 110 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 111 */ "arrayindex ::= arrayindex indexdef", + /* 112 */ "arrayindex ::=", + /* 113 */ "indexdef ::= DOT DOLLAR varvar", + /* 114 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 115 */ "indexdef ::= DOT ID", + /* 116 */ "indexdef ::= DOT BOOLEAN", + /* 117 */ "indexdef ::= DOT NULL", + /* 118 */ "indexdef ::= DOT INTEGER", + /* 119 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 120 */ "indexdef ::= OPENB ID CLOSEB", + /* 121 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 122 */ "indexdef ::= OPENB exprs CLOSEB", + /* 123 */ "indexdef ::= OPENB CLOSEB", + /* 124 */ "varvar ::= varvarele", + /* 125 */ "varvar ::= varvar varvarele", + /* 126 */ "varvarele ::= ID", + /* 127 */ "varvarele ::= LDEL expr RDEL", + /* 128 */ "object ::= varindexed objectchain", + /* 129 */ "objectchain ::= objectelement", + /* 130 */ "objectchain ::= objectchain objectelement", + /* 131 */ "objectelement ::= PTR ID arrayindex", + /* 132 */ "objectelement ::= PTR variable arrayindex", + /* 133 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 134 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 135 */ "objectelement ::= PTR method", + /* 136 */ "function ::= ID OPENP params CLOSEP", + /* 137 */ "method ::= ID OPENP params CLOSEP", + /* 138 */ "params ::= expr COMMA params", + /* 139 */ "params ::= expr", + /* 140 */ "params ::=", + /* 141 */ "modifier ::= VERT AT ID", + /* 142 */ "modifier ::= VERT ID", + /* 143 */ "modparameters ::= modparameters modparameter", + /* 144 */ "modparameters ::=", + /* 145 */ "modparameter ::= COLON exprs", + /* 146 */ "modparameter ::= COLON ID", + /* 147 */ "ifexprs ::= ifexpr", + /* 148 */ "ifexprs ::= NOT ifexprs", + /* 149 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 150 */ "ifexpr ::= expr", + /* 151 */ "ifexpr ::= expr ifcond expr", + /* 152 */ "ifexpr ::= expr ISIN array", + /* 153 */ "ifexpr ::= expr ISIN value", + /* 154 */ "ifexpr ::= ifexprs lop ifexprs", + /* 155 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 156 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 157 */ "ifexpr ::= ifexprs ISEVEN", + /* 158 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 159 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 160 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 161 */ "ifexpr ::= ifexprs ISODD", + /* 162 */ "ifexpr ::= ifexprs ISNOTODD", + /* 163 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 164 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 165 */ "ifexpr ::= value INSTANCEOF ID", + /* 166 */ "ifexpr ::= value INSTANCEOF value", + /* 167 */ "ifcond ::= EQUALS", + /* 168 */ "ifcond ::= NOTEQUALS", + /* 169 */ "ifcond ::= GREATERTHAN", + /* 170 */ "ifcond ::= LESSTHAN", + /* 171 */ "ifcond ::= GREATEREQUAL", + /* 172 */ "ifcond ::= LESSEQUAL", + /* 173 */ "ifcond ::= IDENTITY", + /* 174 */ "ifcond ::= NONEIDENTITY", + /* 175 */ "ifcond ::= MOD", + /* 176 */ "lop ::= LAND", + /* 177 */ "lop ::= LOR", + /* 178 */ "lop ::= LXOR", + /* 179 */ "array ::= OPENB arrayelements CLOSEB", + /* 180 */ "arrayelements ::= arrayelement", + /* 181 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 182 */ "arrayelements ::=", + /* 183 */ "arrayelement ::= value APTR expr", + /* 184 */ "arrayelement ::= ID APTR expr", + /* 185 */ "arrayelement ::= expr", + /* 186 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 187 */ "doublequoted ::= doublequotedcontent", + /* 188 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 189 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", + /* 190 */ "doublequotedcontent ::= DOLLARID", + /* 191 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 192 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 193 */ "doublequotedcontent ::= smartytag", + /* 194 */ "doublequotedcontent ::= OTHER", + /* 195 */ "optspace ::= SPACE", + /* 196 */ "optspace ::=", ); function tokenName($tokenType) @@ -1559,221 +1565,222 @@ static public $yy_action = array( } static public $yyRuleInfo = array( - array( 'lhs' => 75, 'rhs' => 1 ), array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 2 ), array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 2 ), - array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), array( 'lhs' => 80, 'rhs' => 2 ), - array( 'lhs' => 80, 'rhs' => 0 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 7 ), - array( 'lhs' => 78, 'rhs' => 7 ), - array( 'lhs' => 78, 'rhs' => 7 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 8 ), - array( 'lhs' => 78, 'rhs' => 5 ), - array( 'lhs' => 78, 'rhs' => 5 ), - array( 'lhs' => 78, 'rhs' => 5 ), - array( 'lhs' => 78, 'rhs' => 13 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 8 ), - array( 'lhs' => 78, 'rhs' => 9 ), - array( 'lhs' => 78, 'rhs' => 8 ), - array( 'lhs' => 78, 'rhs' => 11 ), - array( 'lhs' => 78, 'rhs' => 8 ), - array( 'lhs' => 78, 'rhs' => 11 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 6 ), - array( 'lhs' => 78, 'rhs' => 5 ), + array( 'lhs' => 80, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 2 ), + array( 'lhs' => 81, 'rhs' => 0 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 7 ), + array( 'lhs' => 79, 'rhs' => 7 ), + array( 'lhs' => 79, 'rhs' => 7 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 8 ), + array( 'lhs' => 79, 'rhs' => 5 ), + array( 'lhs' => 79, 'rhs' => 5 ), + array( 'lhs' => 79, 'rhs' => 5 ), + array( 'lhs' => 79, 'rhs' => 13 ), + array( 'lhs' => 96, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 8 ), + array( 'lhs' => 79, 'rhs' => 9 ), + array( 'lhs' => 79, 'rhs' => 8 ), + array( 'lhs' => 79, 'rhs' => 11 ), + array( 'lhs' => 79, 'rhs' => 8 ), + array( 'lhs' => 79, 'rhs' => 11 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 6 ), + array( 'lhs' => 79, 'rhs' => 5 ), + array( 'lhs' => 84, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 0 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 4 ), + array( 'lhs' => 86, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 7 ), + array( 'lhs' => 87, 'rhs' => 7 ), + array( 'lhs' => 83, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 2 ), array( 'lhs' => 83, 'rhs' => 2 ), array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 0 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 1 ), - array( 'lhs' => 92, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 4 ), - array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 7 ), + array( 'lhs' => 83, 'rhs' => 4 ), + array( 'lhs' => 83, 'rhs' => 8 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 5 ), + array( 'lhs' => 83, 'rhs' => 6 ), + array( 'lhs' => 83, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 4 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 3 ), array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 7 ), - array( 'lhs' => 86, 'rhs' => 7 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 7 ), - array( 'lhs' => 82, 'rhs' => 4 ), - array( 'lhs' => 82, 'rhs' => 8 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 5 ), - array( 'lhs' => 82, 'rhs' => 6 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 4 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 88, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 0 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 5 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 4 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 5 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 2 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 1 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 5 ), - array( 'lhs' => 109, 'rhs' => 6 ), - array( 'lhs' => 109, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 4 ), - array( 'lhs' => 102, 'rhs' => 4 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 0 ), array( 'lhs' => 89, 'rhs' => 3 ), - array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 0 ), + array( 'lhs' => 108, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 5 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 108, 'rhs' => 4 ), + array( 'lhs' => 108, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 5 ), + array( 'lhs' => 108, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 1 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 5 ), + array( 'lhs' => 110, 'rhs' => 6 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 4 ), + array( 'lhs' => 103, 'rhs' => 4 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 0 ), + array( 'lhs' => 90, 'rhs' => 3 ), array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 0 ), - array( 'lhs' => 110, 'rhs' => 2 ), - array( 'lhs' => 110, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 0 ), array( 'lhs' => 111, 'rhs' => 2 ), array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 3 ), array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), array( 'lhs' => 113, 'rhs' => 1 ), array( 'lhs' => 113, 'rhs' => 1 ), array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 3 ), array( 'lhs' => 114, 'rhs' => 1 ), - array( 'lhs' => 114, 'rhs' => 3 ), - array( 'lhs' => 114, 'rhs' => 0 ), - array( 'lhs' => 115, 'rhs' => 3 ), - array( 'lhs' => 115, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 3 ), array( 'lhs' => 115, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 115, 'rhs' => 3 ), + array( 'lhs' => 115, 'rhs' => 0 ), array( 'lhs' => 116, 'rhs' => 3 ), array( 'lhs' => 116, 'rhs' => 3 ), array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 3 ), - array( 'lhs' => 116, 'rhs' => 3 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 0 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 1 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 1 ), + array( 'lhs' => 117, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 0 ), ); static public $yyReduceMap = array( 0 => 0, 5 => 0, - 14 => 0, 15 => 0, - 52 => 0, + 16 => 0, 53 => 0, 54 => 0, - 75 => 0, - 82 => 0, - 87 => 0, - 89 => 0, + 55 => 0, + 76 => 0, + 83 => 0, + 88 => 0, 90 => 0, 91 => 0, - 93 => 0, - 106 => 0, - 179 => 0, + 92 => 0, + 94 => 0, + 107 => 0, + 180 => 0, 1 => 1, 2 => 2, 3 => 3, @@ -1783,85 +1790,85 @@ static public $yy_action = array( 8 => 8, 9 => 9, 10 => 10, - 13 => 10, 11 => 11, + 14 => 11, 12 => 12, - 83 => 12, - 85 => 12, - 86 => 12, - 16 => 16, - 17 => 16, - 18 => 18, + 13 => 13, + 84 => 13, + 86 => 13, + 87 => 13, + 17 => 17, + 18 => 17, 19 => 19, 20 => 20, - 21 => 20, - 22 => 20, - 23 => 20, - 24 => 24, - 25 => 24, - 26 => 26, - 27 => 26, - 28 => 26, - 29 => 29, - 30 => 29, - 31 => 29, - 32 => 32, - 33 => 32, - 34 => 34, + 21 => 21, + 22 => 21, + 23 => 21, + 24 => 21, + 25 => 25, + 26 => 25, + 27 => 27, + 28 => 27, + 29 => 27, + 30 => 30, + 31 => 30, + 32 => 30, + 33 => 33, + 34 => 33, 35 => 35, 36 => 36, 37 => 37, 38 => 38, - 40 => 38, 39 => 39, - 41 => 41, + 41 => 39, + 40 => 40, 42 => 42, 43 => 43, - 59 => 43, - 138 => 43, - 184 => 43, 44 => 44, + 60 => 44, + 139 => 44, + 185 => 44, 45 => 45, 46 => 46, 47 => 47, 48 => 48, 49 => 49, 50 => 50, - 51 => 50, - 55 => 55, + 51 => 51, + 52 => 51, 56 => 56, 57 => 57, 58 => 58, - 60 => 60, + 59 => 59, 61 => 61, 62 => 62, - 63 => 62, - 64 => 62, - 65 => 62, - 67 => 62, - 66 => 66, - 68 => 68, + 63 => 63, + 64 => 63, + 65 => 63, + 66 => 63, + 68 => 63, + 67 => 67, 69 => 69, 70 => 70, 71 => 71, 72 => 72, - 79 => 72, - 123 => 72, - 146 => 72, - 186 => 72, - 193 => 72, - 194 => 72, 73 => 73, + 80 => 73, + 124 => 73, + 147 => 73, + 187 => 73, + 194 => 73, + 195 => 73, 74 => 74, - 76 => 76, - 77 => 76, - 78 => 76, - 80 => 80, - 81 => 80, - 84 => 84, - 88 => 88, - 92 => 92, - 94 => 94, + 75 => 75, + 77 => 77, + 78 => 77, + 79 => 77, + 81 => 81, + 82 => 81, + 85 => 85, + 89 => 89, + 93 => 93, 95 => 95, 96 => 96, 97 => 97, @@ -1873,30 +1880,30 @@ static public $yy_action = array( 103 => 103, 104 => 104, 105 => 105, - 107 => 107, + 106 => 106, 108 => 108, 109 => 109, 110 => 110, - 185 => 110, 111 => 111, - 143 => 111, + 186 => 111, 112 => 112, + 144 => 112, 113 => 113, 114 => 114, - 115 => 114, - 116 => 114, - 117 => 117, + 115 => 115, + 116 => 115, + 117 => 115, 118 => 118, - 121 => 118, 119 => 119, + 122 => 119, 120 => 120, - 122 => 122, - 195 => 122, - 124 => 124, + 121 => 121, + 123 => 123, + 196 => 123, 125 => 125, 126 => 126, - 148 => 126, 127 => 127, + 149 => 127, 128 => 128, 129 => 129, 130 => 130, @@ -1907,30 +1914,30 @@ static public $yy_action = array( 135 => 135, 136 => 136, 137 => 137, - 139 => 139, + 138 => 138, 140 => 140, - 141 => 140, - 142 => 142, - 144 => 144, + 141 => 141, + 142 => 141, + 143 => 143, 145 => 145, - 147 => 147, - 149 => 149, + 146 => 146, + 148 => 148, 150 => 150, - 153 => 150, - 164 => 150, 151 => 151, + 154 => 151, + 165 => 151, 152 => 152, - 154 => 154, + 153 => 153, 155 => 155, 156 => 156, - 161 => 156, 157 => 157, - 160 => 157, + 162 => 157, 158 => 158, - 163 => 158, + 161 => 158, 159 => 159, - 162 => 159, - 165 => 165, + 164 => 159, + 160 => 160, + 163 => 160, 166 => 166, 167 => 167, 168 => 168, @@ -1944,20 +1951,21 @@ static public $yy_action = array( 176 => 176, 177 => 177, 178 => 178, - 180 => 180, + 179 => 179, 181 => 181, 182 => 182, 183 => 183, - 187 => 187, + 184 => 184, 188 => 188, 189 => 189, 190 => 190, 191 => 191, 192 => 192, + 193 => 193, ); #line 82 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1955 "smarty_internal_templateparser.php" +#line 1963 "smarty_internal_templateparser.php" #line 88 "smarty_internal_templateparser.y" function yy_r1(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; @@ -1966,7 +1974,7 @@ static public $yy_action = array( $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor; } } -#line 1964 "smarty_internal_templateparser.php" +#line 1972 "smarty_internal_templateparser.php" #line 96 "smarty_internal_templateparser.y" function yy_r2(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; @@ -1976,7 +1984,7 @@ static public $yy_action = array( $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } } -#line 1974 "smarty_internal_templateparser.php" +#line 1982 "smarty_internal_templateparser.php" #line 109 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->allowed_php) { @@ -1986,10 +1994,10 @@ static public $yy_action = array( $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->compiler->has_variable_string = false; } -#line 1984 "smarty_internal_templateparser.php" +#line 1992 "smarty_internal_templateparser.php" #line 119 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 1987 "smarty_internal_templateparser.php" +#line 1995 "smarty_internal_templateparser.php" #line 125 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { @@ -2006,7 +2014,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2004 "smarty_internal_templateparser.php" +#line 2012 "smarty_internal_templateparser.php" #line 141 "smarty_internal_templateparser.y" function yy_r7(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { @@ -2020,438 +2028,441 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2018 "smarty_internal_templateparser.php" -#line 156 "smarty_internal_templateparser.y" - function yy_r8(){if ($this->lex->strip) { - $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); - } else { - $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; - } - } #line 2026 "smarty_internal_templateparser.php" -#line 162 "smarty_internal_templateparser.y" - function yy_r9(){if ($this->lex->strip) { +#line 154 "smarty_internal_templateparser.y" + function yy_r8(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } else { $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } } #line 2034 "smarty_internal_templateparser.php" -#line 174 "smarty_internal_templateparser.y" - function yy_r10(){ $this->_retvalue = ''; } +#line 163 "smarty_internal_templateparser.y" + function yy_r9(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->compiler->processNocacheCode("", $this->compiler, true) . substr($this->yystack[$this->yyidx + 0]->minor,5,strlen($this->yystack[$this->yyidx + 0]->minor)-7) . $this->compiler->processNocacheCode("';?>\n", $this->compiler, true); } #line 2037 "smarty_internal_templateparser.php" -#line 175 "smarty_internal_templateparser.y" - function yy_r11(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2040 "smarty_internal_templateparser.php" +#line 166 "smarty_internal_templateparser.y" + function yy_r10(){if ($this->lex->strip) { + $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); + } else { + $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; + } + } +#line 2045 "smarty_internal_templateparser.php" #line 177 "smarty_internal_templateparser.y" - function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2043 "smarty_internal_templateparser.php" -#line 182 "smarty_internal_templateparser.y" - function yy_r16(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2046 "smarty_internal_templateparser.php" -#line 184 "smarty_internal_templateparser.y" - function yy_r18(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2049 "smarty_internal_templateparser.php" -#line 192 "smarty_internal_templateparser.y" - function yy_r19(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2052 "smarty_internal_templateparser.php" -#line 193 "smarty_internal_templateparser.y" - function yy_r20(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2055 "smarty_internal_templateparser.php" -#line 204 "smarty_internal_templateparser.y" - function yy_r24(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2058 "smarty_internal_templateparser.php" -#line 206 "smarty_internal_templateparser.y" - function yy_r26(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2061 "smarty_internal_templateparser.php" + function yy_r11(){ $this->_retvalue = ''; } +#line 2048 "smarty_internal_templateparser.php" +#line 178 "smarty_internal_templateparser.y" + function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 2051 "smarty_internal_templateparser.php" +#line 180 "smarty_internal_templateparser.y" + function yy_r13(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2054 "smarty_internal_templateparser.php" +#line 185 "smarty_internal_templateparser.y" + function yy_r17(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } +#line 2057 "smarty_internal_templateparser.php" +#line 187 "smarty_internal_templateparser.y" + function yy_r19(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } +#line 2060 "smarty_internal_templateparser.php" +#line 195 "smarty_internal_templateparser.y" + function yy_r20(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2063 "smarty_internal_templateparser.php" +#line 196 "smarty_internal_templateparser.y" + function yy_r21(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2066 "smarty_internal_templateparser.php" +#line 207 "smarty_internal_templateparser.y" + function yy_r25(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } +#line 2069 "smarty_internal_templateparser.php" #line 209 "smarty_internal_templateparser.y" - function yy_r29(){ $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 2064 "smarty_internal_templateparser.php" -#line 213 "smarty_internal_templateparser.y" - function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2067 "smarty_internal_templateparser.php" -#line 215 "smarty_internal_templateparser.y" - function yy_r34(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2070 "smarty_internal_templateparser.php" -#line 217 "smarty_internal_templateparser.y" - function yy_r35(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2073 "smarty_internal_templateparser.php" -#line 219 "smarty_internal_templateparser.y" - function yy_r36(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2072 "smarty_internal_templateparser.php" +#line 212 "smarty_internal_templateparser.y" + function yy_r30(){ $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 2075 "smarty_internal_templateparser.php" +#line 216 "smarty_internal_templateparser.y" + function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } +#line 2078 "smarty_internal_templateparser.php" +#line 218 "smarty_internal_templateparser.y" + function yy_r35(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } +#line 2081 "smarty_internal_templateparser.php" +#line 220 "smarty_internal_templateparser.y" + function yy_r36(){ $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 2084 "smarty_internal_templateparser.php" +#line 222 "smarty_internal_templateparser.y" + function yy_r37(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2078 "smarty_internal_templateparser.php" -#line 223 "smarty_internal_templateparser.y" - function yy_r37(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2083 "smarty_internal_templateparser.php" -#line 227 "smarty_internal_templateparser.y" - function yy_r38(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2086 "smarty_internal_templateparser.php" -#line 228 "smarty_internal_templateparser.y" - function yy_r39(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>trim($this->yystack[$this->yyidx + -2]->minor).$this->yystack[$this->yyidx + -1]->minor)); } -#line 2089 "smarty_internal_templateparser.php" +#line 2094 "smarty_internal_templateparser.php" +#line 230 "smarty_internal_templateparser.y" + function yy_r39(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2097 "smarty_internal_templateparser.php" #line 231 "smarty_internal_templateparser.y" - function yy_r41(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2093 "smarty_internal_templateparser.php" -#line 233 "smarty_internal_templateparser.y" - function yy_r42(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2096 "smarty_internal_templateparser.php" + function yy_r40(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>trim($this->yystack[$this->yyidx + -2]->minor).$this->yystack[$this->yyidx + -1]->minor)); } +#line 2100 "smarty_internal_templateparser.php" #line 234 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2099 "smarty_internal_templateparser.php" -#line 235 "smarty_internal_templateparser.y" - function yy_r44(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2102 "smarty_internal_templateparser.php" + function yy_r42(){ + $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 2104 "smarty_internal_templateparser.php" #line 236 "smarty_internal_templateparser.y" - function yy_r45(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -7]->minor,array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2105 "smarty_internal_templateparser.php" + function yy_r43(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } +#line 2107 "smarty_internal_templateparser.php" +#line 237 "smarty_internal_templateparser.y" + function yy_r44(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2110 "smarty_internal_templateparser.php" #line 238 "smarty_internal_templateparser.y" - function yy_r46(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2109 "smarty_internal_templateparser.php" -#line 240 "smarty_internal_templateparser.y" - function yy_r47(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } + function yy_r45(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } #line 2113 "smarty_internal_templateparser.php" -#line 242 "smarty_internal_templateparser.y" - function yy_r48(){ +#line 239 "smarty_internal_templateparser.y" + function yy_r46(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -7]->minor,array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2116 "smarty_internal_templateparser.php" +#line 241 "smarty_internal_templateparser.y" + function yy_r47(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2117 "smarty_internal_templateparser.php" -#line 244 "smarty_internal_templateparser.y" - function yy_r49(){ +#line 2120 "smarty_internal_templateparser.php" +#line 243 "smarty_internal_templateparser.y" + function yy_r48(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2121 "smarty_internal_templateparser.php" -#line 248 "smarty_internal_templateparser.y" - function yy_r50(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } #line 2124 "smarty_internal_templateparser.php" -#line 253 "smarty_internal_templateparser.y" - function yy_r55(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2127 "smarty_internal_templateparser.php" -#line 254 "smarty_internal_templateparser.y" - function yy_r56(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2128 "smarty_internal_templateparser.php" +#line 247 "smarty_internal_templateparser.y" + function yy_r50(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2132 "smarty_internal_templateparser.php" +#line 251 "smarty_internal_templateparser.y" + function yy_r51(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } +#line 2135 "smarty_internal_templateparser.php" +#line 256 "smarty_internal_templateparser.y" + function yy_r56(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 2138 "smarty_internal_templateparser.php" +#line 257 "smarty_internal_templateparser.y" + function yy_r57(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2132 "smarty_internal_templateparser.php" -#line 258 "smarty_internal_templateparser.y" - function yy_r57(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2135 "smarty_internal_templateparser.php" -#line 265 "smarty_internal_templateparser.y" - function yy_r58(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2138 "smarty_internal_templateparser.php" -#line 269 "smarty_internal_templateparser.y" - function yy_r60(){ $this->_retvalue = array(); } -#line 2141 "smarty_internal_templateparser.php" +#line 2143 "smarty_internal_templateparser.php" +#line 261 "smarty_internal_templateparser.y" + function yy_r58(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2146 "smarty_internal_templateparser.php" +#line 268 "smarty_internal_templateparser.y" + function yy_r59(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2149 "smarty_internal_templateparser.php" #line 272 "smarty_internal_templateparser.y" - function yy_r61(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2144 "smarty_internal_templateparser.php" -#line 273 "smarty_internal_templateparser.y" - function yy_r62(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2147 "smarty_internal_templateparser.php" -#line 277 "smarty_internal_templateparser.y" - function yy_r66(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2150 "smarty_internal_templateparser.php" -#line 284 "smarty_internal_templateparser.y" - function yy_r68(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2153 "smarty_internal_templateparser.php" -#line 285 "smarty_internal_templateparser.y" - function yy_r69(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2156 "smarty_internal_templateparser.php" + function yy_r61(){ $this->_retvalue = array(); } +#line 2152 "smarty_internal_templateparser.php" +#line 275 "smarty_internal_templateparser.y" + function yy_r62(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } +#line 2155 "smarty_internal_templateparser.php" +#line 276 "smarty_internal_templateparser.y" + function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2158 "smarty_internal_templateparser.php" +#line 280 "smarty_internal_templateparser.y" + function yy_r67(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2161 "smarty_internal_templateparser.php" #line 287 "smarty_internal_templateparser.y" - function yy_r70(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2159 "smarty_internal_templateparser.php" -#line 293 "smarty_internal_templateparser.y" - function yy_r71(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2162 "smarty_internal_templateparser.php" -#line 294 "smarty_internal_templateparser.y" - function yy_r72(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2165 "smarty_internal_templateparser.php" + function yy_r69(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2164 "smarty_internal_templateparser.php" +#line 288 "smarty_internal_templateparser.y" + function yy_r70(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2167 "smarty_internal_templateparser.php" +#line 290 "smarty_internal_templateparser.y" + function yy_r71(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2170 "smarty_internal_templateparser.php" #line 296 "smarty_internal_templateparser.y" - function yy_r73(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2168 "smarty_internal_templateparser.php" + function yy_r72(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2173 "smarty_internal_templateparser.php" #line 297 "smarty_internal_templateparser.y" - function yy_r74(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } -#line 2171 "smarty_internal_templateparser.php" -#line 302 "smarty_internal_templateparser.y" - function yy_r76(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2174 "smarty_internal_templateparser.php" -#line 315 "smarty_internal_templateparser.y" - function yy_r80(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2177 "smarty_internal_templateparser.php" -#line 324 "smarty_internal_templateparser.y" - function yy_r84(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2180 "smarty_internal_templateparser.php" -#line 329 "smarty_internal_templateparser.y" - function yy_r88(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2183 "smarty_internal_templateparser.php" -#line 339 "smarty_internal_templateparser.y" - function yy_r92(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2186 "smarty_internal_templateparser.php" -#line 343 "smarty_internal_templateparser.y" - function yy_r94(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); + function yy_r73(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2176 "smarty_internal_templateparser.php" +#line 299 "smarty_internal_templateparser.y" + function yy_r74(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2179 "smarty_internal_templateparser.php" +#line 300 "smarty_internal_templateparser.y" + function yy_r75(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } +#line 2182 "smarty_internal_templateparser.php" +#line 305 "smarty_internal_templateparser.y" + function yy_r77(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } +#line 2185 "smarty_internal_templateparser.php" +#line 318 "smarty_internal_templateparser.y" + function yy_r81(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2188 "smarty_internal_templateparser.php" +#line 327 "smarty_internal_templateparser.y" + function yy_r85(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2191 "smarty_internal_templateparser.php" +#line 332 "smarty_internal_templateparser.y" + function yy_r89(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2194 "smarty_internal_templateparser.php" +#line 342 "smarty_internal_templateparser.y" + function yy_r93(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2197 "smarty_internal_templateparser.php" +#line 346 "smarty_internal_templateparser.y" + function yy_r95(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); if (substr($_s,0,3) == '"".') { $this->_retvalue = substr($_s,3); } else { $this->_retvalue = $_s; } } -#line 2195 "smarty_internal_templateparser.php" -#line 350 "smarty_internal_templateparser.y" - function yy_r95(){ $this->_retvalue = "''"; } -#line 2198 "smarty_internal_templateparser.php" -#line 352 "smarty_internal_templateparser.y" - function yy_r96(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2201 "smarty_internal_templateparser.php" +#line 2206 "smarty_internal_templateparser.php" #line 353 "smarty_internal_templateparser.y" - function yy_r97(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2204 "smarty_internal_templateparser.php" + function yy_r96(){ $this->_retvalue = "''"; } +#line 2209 "smarty_internal_templateparser.php" #line 355 "smarty_internal_templateparser.y" - function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2207 "smarty_internal_templateparser.php" + function yy_r97(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2212 "smarty_internal_templateparser.php" #line 356 "smarty_internal_templateparser.y" - function yy_r99(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2210 "smarty_internal_templateparser.php" + function yy_r98(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2215 "smarty_internal_templateparser.php" #line 358 "smarty_internal_templateparser.y" - function yy_r100(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2213 "smarty_internal_templateparser.php" -#line 360 "smarty_internal_templateparser.y" - function yy_r101(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2216 "smarty_internal_templateparser.php" -#line 362 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2219 "smarty_internal_templateparser.php" -#line 364 "smarty_internal_templateparser.y" - function yy_r103(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2222 "smarty_internal_templateparser.php" -#line 373 "smarty_internal_templateparser.y" - function yy_r104(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);} else { - $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2226 "smarty_internal_templateparser.php" + function yy_r99(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2218 "smarty_internal_templateparser.php" +#line 359 "smarty_internal_templateparser.y" + function yy_r100(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2221 "smarty_internal_templateparser.php" +#line 361 "smarty_internal_templateparser.y" + function yy_r101(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2224 "smarty_internal_templateparser.php" +#line 363 "smarty_internal_templateparser.y" + function yy_r102(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2227 "smarty_internal_templateparser.php" +#line 365 "smarty_internal_templateparser.y" + function yy_r103(){ $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 2230 "smarty_internal_templateparser.php" +#line 367 "smarty_internal_templateparser.y" + function yy_r104(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } +#line 2233 "smarty_internal_templateparser.php" #line 376 "smarty_internal_templateparser.y" - function yy_r105(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2229 "smarty_internal_templateparser.php" -#line 380 "smarty_internal_templateparser.y" - function yy_r107(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2232 "smarty_internal_templateparser.php" -#line 381 "smarty_internal_templateparser.y" - function yy_r108(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2235 "smarty_internal_templateparser.php" + function yy_r105(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);} else { + $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } +#line 2237 "smarty_internal_templateparser.php" +#line 379 "smarty_internal_templateparser.y" + function yy_r106(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } +#line 2240 "smarty_internal_templateparser.php" +#line 383 "smarty_internal_templateparser.y" + function yy_r108(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2243 "smarty_internal_templateparser.php" #line 384 "smarty_internal_templateparser.y" - function yy_r109(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2238 "smarty_internal_templateparser.php" -#line 390 "smarty_internal_templateparser.y" - function yy_r110(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2241 "smarty_internal_templateparser.php" -#line 392 "smarty_internal_templateparser.y" - function yy_r111(){return; } -#line 2244 "smarty_internal_templateparser.php" -#line 396 "smarty_internal_templateparser.y" - function yy_r112(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } -#line 2247 "smarty_internal_templateparser.php" -#line 397 "smarty_internal_templateparser.y" - function yy_r113(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2250 "smarty_internal_templateparser.php" + function yy_r109(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2246 "smarty_internal_templateparser.php" +#line 387 "smarty_internal_templateparser.y" + function yy_r110(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2249 "smarty_internal_templateparser.php" +#line 393 "smarty_internal_templateparser.y" + function yy_r111(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2252 "smarty_internal_templateparser.php" +#line 395 "smarty_internal_templateparser.y" + function yy_r112(){return; } +#line 2255 "smarty_internal_templateparser.php" +#line 399 "smarty_internal_templateparser.y" + function yy_r113(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } +#line 2258 "smarty_internal_templateparser.php" #line 400 "smarty_internal_templateparser.y" - function yy_r114(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2253 "smarty_internal_templateparser.php" -#line 404 "smarty_internal_templateparser.y" - function yy_r117(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2256 "smarty_internal_templateparser.php" -#line 405 "smarty_internal_templateparser.y" - function yy_r118(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2259 "smarty_internal_templateparser.php" + function yy_r114(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } +#line 2261 "smarty_internal_templateparser.php" +#line 403 "smarty_internal_templateparser.y" + function yy_r115(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2264 "smarty_internal_templateparser.php" #line 407 "smarty_internal_templateparser.y" - function yy_r119(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2262 "smarty_internal_templateparser.php" + function yy_r118(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2267 "smarty_internal_templateparser.php" #line 408 "smarty_internal_templateparser.y" - function yy_r120(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2265 "smarty_internal_templateparser.php" -#line 412 "smarty_internal_templateparser.y" - function yy_r122(){$this->_retvalue = ''; } -#line 2268 "smarty_internal_templateparser.php" -#line 420 "smarty_internal_templateparser.y" - function yy_r124(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2271 "smarty_internal_templateparser.php" -#line 422 "smarty_internal_templateparser.y" - function yy_r125(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2274 "smarty_internal_templateparser.php" + function yy_r119(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2270 "smarty_internal_templateparser.php" +#line 410 "smarty_internal_templateparser.y" + function yy_r120(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2273 "smarty_internal_templateparser.php" +#line 411 "smarty_internal_templateparser.y" + function yy_r121(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2276 "smarty_internal_templateparser.php" +#line 415 "smarty_internal_templateparser.y" + function yy_r123(){$this->_retvalue = ''; } +#line 2279 "smarty_internal_templateparser.php" +#line 423 "smarty_internal_templateparser.y" + function yy_r125(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2282 "smarty_internal_templateparser.php" #line 425 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2277 "smarty_internal_templateparser.php" -#line 430 "smarty_internal_templateparser.y" - function yy_r127(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { - $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2281 "smarty_internal_templateparser.php" + function yy_r126(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2285 "smarty_internal_templateparser.php" +#line 428 "smarty_internal_templateparser.y" + function yy_r127(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2288 "smarty_internal_templateparser.php" #line 433 "smarty_internal_templateparser.y" - function yy_r128(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2284 "smarty_internal_templateparser.php" -#line 435 "smarty_internal_templateparser.y" - function yy_r129(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2287 "smarty_internal_templateparser.php" -#line 437 "smarty_internal_templateparser.y" - function yy_r130(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2290 "smarty_internal_templateparser.php" + function yy_r128(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { + $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } +#line 2292 "smarty_internal_templateparser.php" +#line 436 "smarty_internal_templateparser.y" + function yy_r129(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2295 "smarty_internal_templateparser.php" #line 438 "smarty_internal_templateparser.y" - function yy_r131(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2293 "smarty_internal_templateparser.php" -#line 439 "smarty_internal_templateparser.y" - function yy_r132(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2296 "smarty_internal_templateparser.php" + function yy_r130(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2298 "smarty_internal_templateparser.php" #line 440 "smarty_internal_templateparser.y" - function yy_r133(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2299 "smarty_internal_templateparser.php" + function yy_r131(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2301 "smarty_internal_templateparser.php" +#line 441 "smarty_internal_templateparser.y" + function yy_r132(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2304 "smarty_internal_templateparser.php" #line 442 "smarty_internal_templateparser.y" - function yy_r134(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2302 "smarty_internal_templateparser.php" -#line 448 "smarty_internal_templateparser.y" - function yy_r135(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r133(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2307 "smarty_internal_templateparser.php" +#line 443 "smarty_internal_templateparser.y" + function yy_r134(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2310 "smarty_internal_templateparser.php" +#line 445 "smarty_internal_templateparser.y" + function yy_r135(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2313 "smarty_internal_templateparser.php" +#line 451 "smarty_internal_templateparser.y" + function yy_r136(){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 2311 "smarty_internal_templateparser.php" -#line 459 "smarty_internal_templateparser.y" - function yy_r136(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2314 "smarty_internal_templateparser.php" -#line 463 "smarty_internal_templateparser.y" - function yy_r137(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2317 "smarty_internal_templateparser.php" -#line 467 "smarty_internal_templateparser.y" - function yy_r139(){ return; } -#line 2320 "smarty_internal_templateparser.php" -#line 472 "smarty_internal_templateparser.y" - function yy_r140(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2323 "smarty_internal_templateparser.php" -#line 485 "smarty_internal_templateparser.y" - function yy_r142(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2326 "smarty_internal_templateparser.php" -#line 489 "smarty_internal_templateparser.y" - function yy_r144(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2329 "smarty_internal_templateparser.php" -#line 490 "smarty_internal_templateparser.y" - function yy_r145(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2332 "smarty_internal_templateparser.php" -#line 497 "smarty_internal_templateparser.y" - function yy_r147(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2335 "smarty_internal_templateparser.php" -#line 502 "smarty_internal_templateparser.y" - function yy_r149(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2338 "smarty_internal_templateparser.php" -#line 503 "smarty_internal_templateparser.y" - function yy_r150(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2341 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r151(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2344 "smarty_internal_templateparser.php" +#line 2322 "smarty_internal_templateparser.php" +#line 462 "smarty_internal_templateparser.y" + function yy_r137(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2325 "smarty_internal_templateparser.php" +#line 466 "smarty_internal_templateparser.y" + function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2328 "smarty_internal_templateparser.php" +#line 470 "smarty_internal_templateparser.y" + function yy_r140(){ return; } +#line 2331 "smarty_internal_templateparser.php" +#line 475 "smarty_internal_templateparser.y" + function yy_r141(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2334 "smarty_internal_templateparser.php" +#line 488 "smarty_internal_templateparser.y" + function yy_r143(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2337 "smarty_internal_templateparser.php" +#line 492 "smarty_internal_templateparser.y" + function yy_r145(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2340 "smarty_internal_templateparser.php" +#line 493 "smarty_internal_templateparser.y" + function yy_r146(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2343 "smarty_internal_templateparser.php" +#line 500 "smarty_internal_templateparser.y" + function yy_r148(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2346 "smarty_internal_templateparser.php" #line 505 "smarty_internal_templateparser.y" - function yy_r152(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2347 "smarty_internal_templateparser.php" + function yy_r150(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 2349 "smarty_internal_templateparser.php" +#line 506 "smarty_internal_templateparser.y" + function yy_r151(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2352 "smarty_internal_templateparser.php" #line 507 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2350 "smarty_internal_templateparser.php" + function yy_r152(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2355 "smarty_internal_templateparser.php" #line 508 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2353 "smarty_internal_templateparser.php" -#line 509 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2356 "smarty_internal_templateparser.php" + function yy_r153(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2358 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2359 "smarty_internal_templateparser.php" + function yy_r155(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2361 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2362 "smarty_internal_templateparser.php" + function yy_r156(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2364 "smarty_internal_templateparser.php" #line 512 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2365 "smarty_internal_templateparser.php" -#line 518 "smarty_internal_templateparser.y" - function yy_r165(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2368 "smarty_internal_templateparser.php" -#line 520 "smarty_internal_templateparser.y" - function yy_r166(){$this->_retvalue = '=='; } -#line 2371 "smarty_internal_templateparser.php" + function yy_r157(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2367 "smarty_internal_templateparser.php" +#line 513 "smarty_internal_templateparser.y" + function yy_r158(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2370 "smarty_internal_templateparser.php" +#line 514 "smarty_internal_templateparser.y" + function yy_r159(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2373 "smarty_internal_templateparser.php" +#line 515 "smarty_internal_templateparser.y" + function yy_r160(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2376 "smarty_internal_templateparser.php" #line 521 "smarty_internal_templateparser.y" - function yy_r167(){$this->_retvalue = '!='; } -#line 2374 "smarty_internal_templateparser.php" -#line 522 "smarty_internal_templateparser.y" - function yy_r168(){$this->_retvalue = '>'; } -#line 2377 "smarty_internal_templateparser.php" + function yy_r166(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } +#line 2379 "smarty_internal_templateparser.php" #line 523 "smarty_internal_templateparser.y" - function yy_r169(){$this->_retvalue = '<'; } -#line 2380 "smarty_internal_templateparser.php" + function yy_r167(){$this->_retvalue = '=='; } +#line 2382 "smarty_internal_templateparser.php" #line 524 "smarty_internal_templateparser.y" - function yy_r170(){$this->_retvalue = '>='; } -#line 2383 "smarty_internal_templateparser.php" + function yy_r168(){$this->_retvalue = '!='; } +#line 2385 "smarty_internal_templateparser.php" #line 525 "smarty_internal_templateparser.y" - function yy_r171(){$this->_retvalue = '<='; } -#line 2386 "smarty_internal_templateparser.php" + function yy_r169(){$this->_retvalue = '>'; } +#line 2388 "smarty_internal_templateparser.php" #line 526 "smarty_internal_templateparser.y" - function yy_r172(){$this->_retvalue = '==='; } -#line 2389 "smarty_internal_templateparser.php" + function yy_r170(){$this->_retvalue = '<'; } +#line 2391 "smarty_internal_templateparser.php" #line 527 "smarty_internal_templateparser.y" - function yy_r173(){$this->_retvalue = '!=='; } -#line 2392 "smarty_internal_templateparser.php" + function yy_r171(){$this->_retvalue = '>='; } +#line 2394 "smarty_internal_templateparser.php" #line 528 "smarty_internal_templateparser.y" - function yy_r174(){$this->_retvalue = '%'; } -#line 2395 "smarty_internal_templateparser.php" + function yy_r172(){$this->_retvalue = '<='; } +#line 2397 "smarty_internal_templateparser.php" +#line 529 "smarty_internal_templateparser.y" + function yy_r173(){$this->_retvalue = '==='; } +#line 2400 "smarty_internal_templateparser.php" #line 530 "smarty_internal_templateparser.y" - function yy_r175(){$this->_retvalue = '&&'; } -#line 2398 "smarty_internal_templateparser.php" + function yy_r174(){$this->_retvalue = '!=='; } +#line 2403 "smarty_internal_templateparser.php" #line 531 "smarty_internal_templateparser.y" - function yy_r176(){$this->_retvalue = '||'; } -#line 2401 "smarty_internal_templateparser.php" -#line 532 "smarty_internal_templateparser.y" - function yy_r177(){$this->_retvalue = ' XOR '; } -#line 2404 "smarty_internal_templateparser.php" -#line 537 "smarty_internal_templateparser.y" - function yy_r178(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2407 "smarty_internal_templateparser.php" -#line 539 "smarty_internal_templateparser.y" - function yy_r180(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2410 "smarty_internal_templateparser.php" + function yy_r175(){$this->_retvalue = '%'; } +#line 2406 "smarty_internal_templateparser.php" +#line 533 "smarty_internal_templateparser.y" + function yy_r176(){$this->_retvalue = '&&'; } +#line 2409 "smarty_internal_templateparser.php" +#line 534 "smarty_internal_templateparser.y" + function yy_r177(){$this->_retvalue = '||'; } +#line 2412 "smarty_internal_templateparser.php" +#line 535 "smarty_internal_templateparser.y" + function yy_r178(){$this->_retvalue = ' XOR '; } +#line 2415 "smarty_internal_templateparser.php" #line 540 "smarty_internal_templateparser.y" - function yy_r181(){ return; } -#line 2413 "smarty_internal_templateparser.php" -#line 541 "smarty_internal_templateparser.y" - function yy_r182(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2416 "smarty_internal_templateparser.php" + function yy_r179(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2418 "smarty_internal_templateparser.php" #line 542 "smarty_internal_templateparser.y" - function yy_r183(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2419 "smarty_internal_templateparser.php" -#line 551 "smarty_internal_templateparser.y" - function yy_r187(){if (substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '\'' || substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '@') { + function yy_r181(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2421 "smarty_internal_templateparser.php" +#line 543 "smarty_internal_templateparser.y" + function yy_r182(){ return; } +#line 2424 "smarty_internal_templateparser.php" +#line 544 "smarty_internal_templateparser.y" + function yy_r183(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2427 "smarty_internal_templateparser.php" +#line 545 "smarty_internal_templateparser.y" + function yy_r184(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2430 "smarty_internal_templateparser.php" +#line 554 "smarty_internal_templateparser.y" + function yy_r188(){if (substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '\'' || substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '@') { $this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; } else { $this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; } $this->compiler->has_variable_string = true; } -#line 2428 "smarty_internal_templateparser.php" -#line 558 "smarty_internal_templateparser.y" - function yy_r188(){$this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; $this->compiler->has_variable_string = true; } -#line 2431 "smarty_internal_templateparser.php" -#line 559 "smarty_internal_templateparser.y" - function yy_r189(){$this->_retvalue = '{$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } -#line 2434 "smarty_internal_templateparser.php" -#line 560 "smarty_internal_templateparser.y" - function yy_r190(){if (substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '\'') { +#line 2439 "smarty_internal_templateparser.php" +#line 561 "smarty_internal_templateparser.y" + function yy_r189(){$this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; $this->compiler->has_variable_string = true; } +#line 2442 "smarty_internal_templateparser.php" +#line 562 "smarty_internal_templateparser.y" + function yy_r190(){$this->_retvalue = '{$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } +#line 2445 "smarty_internal_templateparser.php" +#line 563 "smarty_internal_templateparser.y" + function yy_r191(){if (substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '\'') { $this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; } else { $this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; } $this->compiler->has_variable_string = true; } -#line 2443 "smarty_internal_templateparser.php" -#line 567 "smarty_internal_templateparser.y" - function yy_r191(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2446 "smarty_internal_templateparser.php" -#line 568 "smarty_internal_templateparser.y" - function yy_r192(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '{$_tmp'.$this->prefix_number.'}'; $this->compiler->has_variable_string = true; } -#line 2449 "smarty_internal_templateparser.php" +#line 2454 "smarty_internal_templateparser.php" +#line 570 "smarty_internal_templateparser.y" + function yy_r192(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2457 "smarty_internal_templateparser.php" +#line 571 "smarty_internal_templateparser.y" + function yy_r193(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '{$_tmp'.$this->prefix_number.'}'; $this->compiler->has_variable_string = true; } +#line 2460 "smarty_internal_templateparser.php" private $_retvalue; @@ -2513,7 +2524,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2512 "smarty_internal_templateparser.php" +#line 2523 "smarty_internal_templateparser.php" } function yy_accept() @@ -2530,7 +2541,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2530 "smarty_internal_templateparser.php" +#line 2541 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)