From fa269d418fb4d3687558746e67e054c225628d13 Mon Sep 17 00:00:00 2001 From: Uwe Tews Date: Mon, 1 Jun 2015 22:26:45 +0200 Subject: [PATCH] - bugfix including template variables broken since 3.1.22 https://github.com/smarty-php/smarty/issues/47 --- change_log.txt | 3 + lexer/smarty_internal_templatelexer.plex | 8 +- lexer/smarty_internal_templateparser.y | 7 + libs/Smarty.class.php | 2 +- .../smarty_internal_compile_private_php.php | 9 +- .../smarty_internal_templatelexer.php | 10 +- .../smarty_internal_templateparser.php | 1444 ++++++++--------- 7 files changed, 754 insertions(+), 729 deletions(-) diff --git a/change_log.txt b/change_log.txt index f657da6f..cc394bf6 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,4 +1,7 @@  ===== 3.1.25-dev===== (xx.xx.2015) + 01.06.2105 + - bugfix including template variables broken since 3.1.22 https://github.com/smarty-php/smarty/issues/47 + 27.05.2015 - bugfix {include} with variable file name must not create by default individual cache file (since 3.1.22) https://github.com/smarty-php/smarty/issues/43 diff --git a/lexer/smarty_internal_templatelexer.plex b/lexer/smarty_internal_templatelexer.plex index ef5a8dd0..c6164813 100644 --- a/lexer/smarty_internal_templatelexer.plex +++ b/lexer/smarty_internal_templatelexer.plex @@ -128,9 +128,15 @@ class Smarty_Internal_Templatelexer * * @var string */ - public $yyTracePrompt; + /** + * XML flag true while processing xml + * + * @var bool + */ + public $is_xml = false; + /** * state names * diff --git a/lexer/smarty_internal_templateparser.y b/lexer/smarty_internal_templateparser.y index 1e515e37..c41dfc4e 100644 --- a/lexer/smarty_internal_templateparser.y +++ b/lexer/smarty_internal_templateparser.y @@ -252,6 +252,13 @@ template_element(res)::= PHP(o). { } } + // nocache code +template_element(res)::= NOCACHE(c). { + $this->compiler->tag_nocache = true; + $save = $this->template->has_nocache_code; + res = new Smarty_Internal_ParseTree_Tag($this, $this->compiler->processNocacheCode("\n", $this->compiler, true)); + $this->template->has_nocache_code = $save; +} // template text template_element(res)::= text_content(t). { res = $this->compiler->processText(t); diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 453821f1..74372786 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -111,7 +111,7 @@ class Smarty extends Smarty_Internal_TemplateBase /** * smarty version */ - const SMARTY_VERSION = '3.1.25-dev/2'; + const SMARTY_VERSION = '3.1.25-dev/3'; /** * define variable scopes diff --git a/libs/sysplugins/smarty_internal_compile_private_php.php b/libs/sysplugins/smarty_internal_compile_private_php.php index 15cf5182..0b795819 100644 --- a/libs/sysplugins/smarty_internal_compile_private_php.php +++ b/libs/sysplugins/smarty_internal_compile_private_php.php @@ -106,7 +106,9 @@ class Smarty_Internal_Compile_Private_Php extends Smarty_Internal_CompileBase $lex->taglineno = $lex->line; $closeTag = '?>'; if (strpos($lex->value, 'phpType = 'xml'; + $lex->is_xml = true; + $lex->token = Smarty_Internal_Templateparser::TP_NOCACHE; + return; } elseif (strpos($lex->value, 'phpType = 'php'; } elseif (strpos($lex->value, '<%') === 0) { @@ -115,6 +117,11 @@ class Smarty_Internal_Compile_Private_Php extends Smarty_Internal_CompileBase } elseif (strpos($lex->value, '%>') === 0) { $lex->phpType = 'unmatched'; } elseif (strpos($lex->value, '?>') === 0) { + if ($lex->is_xml) { + $lex->is_xml = false; + $lex->token = Smarty_Internal_Templateparser::TP_NOCACHE; + return; + } $lex->phpType = 'unmatched'; } elseif (strpos($lex->value, 'phpType = 'script'; diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index f440a00f..d349f9c3 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -19,7 +19,6 @@ */ class Smarty_Internal_Templatelexer { - /** * Source * @@ -143,9 +142,15 @@ class Smarty_Internal_Templatelexer * * @var string */ - public $yyTracePrompt; + /** + * XML flag true while processing xml + * + * @var bool + */ + public $is_xml = false; + /** * state names * @@ -1318,6 +1323,7 @@ class Smarty_Internal_Templatelexer $this->value = substr($this->data, $this->counter, $to - $this->counter); $this->token = Smarty_Internal_Templateparser::TP_BLOCKSOURCE; } + } \ No newline at end of file diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index af748ba0..e7b90734 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -2,7 +2,6 @@ class TP_yyToken implements ArrayAccess { - public $string = ''; public $metadata = array(); @@ -68,7 +67,6 @@ class TP_yyToken implements ArrayAccess class TP_yyStackEntry { - public $stateno; /* The state-number */ public $major; /* The major token value. This is the code ** number for the token at this stack level */ @@ -92,7 +90,6 @@ class TP_yyStackEntry */ class Smarty_Internal_Templateparser { - #line 26 "../smarty/lexer/smarty_internal_templateparser.y" const Err1 = "Security error: Call to private object member not allowed"; @@ -261,424 +258,413 @@ class Smarty_Internal_Templateparser const TP_PHP = 3; - const TP_TEXT = 4; + const TP_NOCACHE = 4; - const TP_STRIPON = 5; + const TP_TEXT = 5; - const TP_STRIPOFF = 6; + const TP_STRIPON = 6; - const TP_BLOCKSOURCE = 7; + const TP_STRIPOFF = 7; - const TP_LITERALSTART = 8; + const TP_BLOCKSOURCE = 8; - const TP_LITERALEND = 9; + const TP_LITERALSTART = 9; - const TP_LITERAL = 10; + const TP_LITERALEND = 10; - const TP_RDEL = 11; + const TP_LITERAL = 11; - const TP_SIMPELOUTPUT = 12; + const TP_RDEL = 12; - const TP_LDEL = 13; + const TP_SIMPELOUTPUT = 13; - const TP_DOLLARID = 14; + const TP_LDEL = 14; - const TP_EQUAL = 15; + const TP_DOLLARID = 15; - const TP_SIMPLETAG = 16; + const TP_EQUAL = 16; - const TP_ID = 17; + const TP_SIMPLETAG = 17; - const TP_PTR = 18; + const TP_ID = 18; - const TP_LDELIF = 19; + const TP_PTR = 19; - const TP_LDELFOR = 20; + const TP_LDELIF = 20; - const TP_SEMICOLON = 21; + const TP_LDELFOR = 21; - const TP_INCDEC = 22; + const TP_SEMICOLON = 22; - const TP_TO = 23; + const TP_INCDEC = 23; - const TP_STEP = 24; + const TP_TO = 24; - const TP_LDELFOREACH = 25; + const TP_STEP = 25; - const TP_SPACE = 26; + const TP_LDELFOREACH = 26; - const TP_AS = 27; + const TP_SPACE = 27; - const TP_APTR = 28; + const TP_AS = 28; - const TP_LDELSETFILTER = 29; + const TP_APTR = 29; - const TP_SMARTYBLOCKCHILDPARENT = 30; + const TP_LDELSETFILTER = 30; - const TP_CLOSETAG = 31; + const TP_SMARTYBLOCKCHILDPARENT = 31; - const TP_LDELSLASH = 32; + const TP_CLOSETAG = 32; - const TP_ATTR = 33; + const TP_LDELSLASH = 33; - const TP_INTEGER = 34; + const TP_ATTR = 34; - const TP_COMMA = 35; + const TP_INTEGER = 35; - const TP_OPENP = 36; + const TP_COMMA = 36; - const TP_CLOSEP = 37; + const TP_OPENP = 37; - const TP_MATH = 38; + const TP_CLOSEP = 38; - const TP_UNIMATH = 39; + const TP_MATH = 39; - const TP_ISIN = 40; + const TP_UNIMATH = 40; - const TP_INSTANCEOF = 41; + const TP_ISIN = 41; - const TP_QMARK = 42; + const TP_INSTANCEOF = 42; - const TP_NOT = 43; + const TP_QMARK = 43; - const TP_TYPECAST = 44; + const TP_NOT = 44; - const TP_HEX = 45; + const TP_TYPECAST = 45; - const TP_DOT = 46; + const TP_HEX = 46; - const TP_SINGLEQUOTESTRING = 47; + const TP_DOT = 47; - const TP_DOUBLECOLON = 48; + const TP_SINGLEQUOTESTRING = 48; - const TP_NAMESPACE = 49; + const TP_DOUBLECOLON = 49; - const TP_AT = 50; + const TP_NAMESPACE = 50; - const TP_HATCH = 51; + const TP_AT = 51; - const TP_OPENB = 52; + const TP_HATCH = 52; - const TP_CLOSEB = 53; + const TP_OPENB = 53; - const TP_DOLLAR = 54; + const TP_CLOSEB = 54; - const TP_LOGOP = 55; + const TP_DOLLAR = 55; - const TP_TLOGOP = 56; + const TP_LOGOP = 56; - const TP_SINGLECOND = 57; + const TP_TLOGOP = 57; - const TP_QUOTE = 58; + const TP_SINGLECOND = 58; - const TP_BACKTICK = 59; + const TP_QUOTE = 59; - const YY_NO_ACTION = 533; + const TP_BACKTICK = 60; - const YY_ACCEPT_ACTION = 532; + const YY_NO_ACTION = 535; - const YY_ERROR_ACTION = 531; + const YY_ACCEPT_ACTION = 534; - const YY_SZ_ACTTAB = 2133; + const YY_ERROR_ACTION = 533; - static public $yy_action = array(292, 9, 133, 449, 280, 70, 208, 2, 84, 268, 11, 97, 155, 113, 267, 449, 366, 224, - 303, 264, 217, 279, 231, 26, 21, 172, 274, 42, 190, 304, 17, 43, 39, 269, 223, 298, 13, 209, 194, 81, 1, 143, - 317, 90, 148, 105, 52, 292, 9, 132, 93, 280, 200, 279, 2, 84, 35, 325, 91, 156, 113, 218, 219, 207, 224, 105, - 264, 217, 279, 205, 194, 21, 268, 11, 42, 262, 26, 267, 43, 39, 269, 223, 233, 17, 209, 194, 81, 1, 252, 317, - 186, 141, 101, 52, 292, 9, 134, 192, 280, 213, 279, 2, 84, 35, 325, 208, 12, 113, 235, 101, 220, 224, 3, 264, - 217, 361, 231, 194, 21, 218, 258, 42, 110, 105, 16, 43, 39, 269, 223, 298, 26, 209, 448, 81, 1, 7, 317, 17, 332, - 110, 52, 292, 9, 134, 448, 280, 197, 118, 2, 84, 286, 287, 288, 227, 113, 27, 229, 305, 224, 316, 264, 217, 232, - 231, 229, 21, 136, 120, 42, 241, 329, 102, 43, 39, 269, 223, 298, 243, 209, 137, 81, 1, 260, 317, 208, 10, 186, - 52, 292, 9, 134, 101, 280, 199, 406, 2, 84, 85, 313, 35, 325, 113, 27, 81, 248, 224, 317, 264, 217, 406, 212, - 25, 21, 194, 101, 42, 406, 317, 461, 43, 39, 269, 223, 298, 461, 209, 263, 81, 1, 318, 317, 92, 150, 22, 52, - 292, 9, 135, 140, 280, 213, 279, 2, 84, 110, 163, 94, 159, 113, 183, 296, 294, 224, 448, 264, 217, 279, 231, - 194, 21, 263, 191, 42, 309, 221, 448, 43, 39, 269, 223, 298, 316, 209, 194, 81, 1, 229, 317, 317, 163, 185, 52, - 292, 9, 131, 153, 280, 213, 194, 2, 84, 330, 268, 11, 279, 113, 24, 267, 221, 224, 30, 264, 217, 259, 231, 254, - 5, 194, 265, 42, 302, 192, 83, 43, 39, 269, 223, 298, 158, 209, 208, 81, 1, 6, 317, 4, 157, 279, 52, 292, 9, - 136, 154, 280, 213, 279, 2, 84, 27, 101, 247, 279, 113, 310, 192, 26, 224, 324, 264, 217, 170, 231, 17, 31, 121, - 180, 42, 139, 192, 279, 43, 39, 269, 223, 298, 162, 209, 137, 81, 1, 179, 317, 266, 10, 279, 52, 292, 9, 134, - 95, 280, 202, 194, 2, 84, 263, 266, 218, 222, 113, 146, 105, 266, 224, 208, 264, 217, 317, 231, 19, 21, 208, 32, - 42, 163, 178, 17, 43, 39, 269, 223, 298, 160, 209, 279, 81, 1, 107, 317, 184, 304, 279, 52, 292, 9, 134, 266, - 280, 213, 182, 2, 84, 230, 461, 336, 242, 113, 181, 192, 461, 224, 208, 264, 217, 145, 198, 319, 21, 189, 304, - 42, 124, 149, 279, 43, 39, 269, 223, 298, 322, 209, 279, 81, 1, 194, 317, 121, 208, 34, 52, 292, 9, 136, 266, - 280, 213, 138, 2, 84, 208, 37, 265, 152, 113, 236, 295, 37, 224, 297, 264, 217, 279, 231, 175, 31, 276, 261, 42, - 249, 187, 251, 43, 39, 269, 223, 298, 193, 209, 192, 81, 477, 477, 317, 404, 275, 477, 52, 234, 114, 270, 285, - 281, 282, 283, 289, 183, 12, 208, 404, 292, 9, 33, 331, 280, 284, 404, 2, 84, 448, 271, 250, 173, 113, 166, 98, - 246, 224, 111, 264, 217, 448, 20, 323, 221, 6, 477, 477, 229, 214, 291, 477, 115, 69, 109, 40, 41, 38, 102, 268, - 11, 278, 335, 168, 267, 211, 277, 299, 144, 260, 188, 263, 327, 328, 334, 293, 323, 279, 169, 206, 312, 229, - 214, 87, 477, 115, 69, 109, 266, 266, 108, 102, 165, 208, 278, 335, 119, 226, 211, 277, 299, 88, 260, 406, 89, - 323, 274, 86, 290, 300, 229, 214, 333, 311, 128, 59, 106, 222, 406, 151, 102, 171, 164, 278, 335, 406, 96, 211, - 277, 299, 323, 260, 300, 186, 174, 229, 214, 268, 11, 128, 65, 109, 267, 279, 300, 102, 35, 325, 278, 335, 300, - 26, 211, 277, 299, 300, 260, 300, 17, 323, 194, 300, 300, 216, 229, 214, 300, 300, 128, 65, 109, 300, 300, 300, - 102, 300, 208, 278, 335, 448, 300, 211, 277, 299, 300, 260, 400, 300, 323, 240, 300, 448, 215, 229, 214, 208, - 253, 128, 49, 106, 112, 26, 300, 102, 300, 403, 278, 335, 17, 300, 211, 277, 299, 323, 260, 300, 300, 300, 229, - 214, 403, 300, 128, 65, 109, 300, 300, 403, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, - 300, 323, 300, 300, 300, 210, 229, 214, 300, 300, 128, 59, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, - 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 64, 109, 300, 300, - 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 323, 260, 300, 300, 300, 229, 214, 300, 300, 128, 74, - 109, 300, 36, 239, 102, 300, 176, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, - 300, 229, 78, 300, 300, 82, 44, 104, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 317, 260, - 300, 300, 323, 300, 300, 300, 300, 229, 80, 300, 300, 82, 47, 104, 300, 300, 300, 102, 300, 300, 278, 335, 300, - 300, 211, 277, 299, 323, 260, 300, 300, 300, 229, 214, 300, 300, 99, 54, 109, 300, 300, 300, 102, 300, 300, 278, - 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 61, 109, - 300, 300, 300, 102, 300, 300, 278, 335, 314, 300, 211, 277, 299, 300, 260, 300, 292, 8, 315, 300, 280, 300, 300, - 2, 84, 300, 18, 201, 300, 113, 272, 300, 300, 224, 323, 264, 217, 300, 300, 229, 214, 300, 300, 128, 66, 109, - 300, 273, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 323, 260, 300, 301, 23, 229, 214, 300, 317, - 128, 72, 109, 300, 300, 300, 102, 300, 300, 278, 335, 314, 300, 211, 277, 299, 300, 260, 300, 292, 8, 315, 300, - 280, 300, 300, 2, 84, 300, 300, 300, 300, 113, 300, 300, 300, 224, 323, 264, 217, 300, 300, 229, 214, 300, 300, - 128, 63, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 323, 260, 300, 300, 23, 229, 214, - 300, 300, 128, 45, 109, 300, 300, 300, 102, 268, 11, 278, 335, 300, 267, 211, 277, 299, 300, 260, 300, 300, 323, - 26, 300, 147, 300, 229, 204, 300, 17, 117, 53, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, - 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 75, 109, 300, 300, 300, 102, 300, - 300, 278, 335, 300, 300, 211, 277, 299, 323, 260, 300, 300, 300, 229, 214, 300, 300, 128, 56, 109, 300, 300, - 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, - 300, 300, 116, 50, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, - 323, 300, 300, 300, 300, 229, 214, 300, 300, 103, 67, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, - 211, 277, 299, 323, 260, 300, 300, 300, 229, 214, 300, 300, 128, 46, 109, 300, 300, 300, 102, 300, 300, 278, - 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 76, 109, - 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, - 229, 214, 300, 300, 128, 73, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 323, 260, - 300, 300, 300, 229, 214, 300, 300, 128, 77, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, - 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 79, 109, 300, 300, 300, 102, 300, - 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, - 58, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 323, 260, 300, 300, 300, 229, 203, - 300, 300, 128, 55, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, - 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 62, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, - 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 60, 109, 300, 300, 300, - 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 323, 260, 300, 300, 300, 229, 214, 300, 300, 128, 71, 109, - 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, 300, 300, 323, 300, 300, 300, 300, - 229, 214, 300, 300, 128, 57, 109, 300, 300, 300, 102, 300, 300, 278, 335, 300, 300, 211, 277, 299, 300, 260, - 300, 300, 323, 300, 300, 300, 300, 229, 214, 300, 300, 128, 48, 109, 300, 300, 300, 102, 300, 300, 278, 335, - 300, 300, 211, 277, 299, 323, 260, 300, 300, 300, 229, 214, 300, 300, 100, 68, 109, 300, 300, 300, 102, 300, - 300, 278, 335, 300, 410, 211, 277, 299, 300, 260, 300, 300, 323, 300, 410, 300, 410, 229, 237, 410, 300, 122, - 300, 109, 300, 300, 410, 102, 410, 300, 410, 326, 300, 300, 211, 277, 299, 300, 260, 221, 300, 323, 300, 208, - 300, 300, 229, 237, 416, 416, 130, 300, 109, 300, 300, 300, 102, 300, 300, 300, 255, 300, 300, 211, 277, 299, - 29, 260, 26, 532, 51, 244, 287, 288, 227, 17, 300, 229, 225, 300, 40, 41, 38, 448, 300, 416, 416, 416, 477, 477, - 225, 15, 300, 477, 461, 448, 300, 327, 328, 334, 477, 477, 416, 416, 416, 477, 461, 208, 300, 300, 300, 300, 40, - 41, 38, 300, 300, 307, 300, 300, 300, 300, 461, 300, 461, 300, 477, 300, 461, 327, 328, 334, 26, 300, 461, 300, - 461, 225, 477, 17, 461, 320, 300, 300, 40, 41, 38, 477, 477, 300, 32, 300, 477, 461, 300, 300, 300, 300, 300, - 300, 300, 327, 328, 334, 300, 300, 300, 323, 300, 300, 300, 300, 229, 237, 300, 300, 127, 300, 109, 300, 300, - 461, 102, 461, 300, 477, 300, 461, 300, 211, 277, 299, 300, 260, 14, 300, 300, 323, 300, 300, 300, 300, 229, - 237, 477, 477, 126, 300, 109, 477, 461, 300, 102, 300, 300, 300, 300, 300, 300, 211, 277, 299, 300, 260, 300, - 300, 323, 300, 300, 300, 300, 229, 237, 300, 300, 123, 300, 109, 461, 300, 461, 102, 477, 300, 461, 300, 300, - 300, 211, 277, 299, 300, 260, 300, 323, 300, 300, 300, 300, 229, 237, 300, 300, 129, 300, 109, 300, 300, 300, - 102, 300, 300, 300, 300, 300, 300, 211, 277, 299, 208, 260, 225, 300, 208, 323, 300, 300, 300, 300, 229, 237, - 477, 477, 125, 300, 109, 477, 461, 300, 102, 300, 300, 300, 300, 26, 300, 211, 277, 299, 300, 260, 17, 300, 208, - 300, 300, 40, 41, 38, 256, 40, 41, 38, 245, 208, 461, 300, 461, 300, 477, 300, 461, 300, 327, 328, 334, 208, - 327, 328, 334, 300, 300, 300, 300, 300, 300, 257, 300, 208, 300, 40, 41, 38, 300, 300, 300, 300, 300, 195, 300, - 228, 40, 41, 38, 300, 300, 300, 327, 328, 334, 300, 208, 300, 40, 41, 38, 208, 28, 327, 328, 334, 196, 208, 300, - 300, 40, 41, 38, 300, 300, 327, 328, 334, 300, 300, 300, 300, 300, 300, 300, 300, 300, 327, 328, 334, 300, 300, - 300, 40, 41, 38, 208, 300, 40, 41, 38, 208, 300, 300, 40, 41, 38, 300, 477, 477, 327, 328, 334, 477, 461, 327, - 328, 334, 300, 321, 300, 327, 328, 334, 208, 300, 300, 167, 300, 300, 300, 300, 300, 40, 41, 38, 300, 300, 40, - 41, 38, 300, 461, 300, 461, 300, 477, 300, 461, 300, 327, 328, 334, 300, 308, 327, 328, 334, 208, 300, 208, 40, - 41, 38, 300, 300, 300, 300, 372, 300, 358, 300, 300, 300, 300, 238, 300, 300, 327, 328, 334, 263, 300, 26, 300, - 26, 300, 300, 186, 177, 17, 300, 17, 448, 300, 300, 186, 161, 279, 300, 163, 35, 325, 208, 300, 448, 279, 186, - 142, 35, 325, 300, 300, 306, 300, 194, 300, 279, 300, 300, 35, 325, 300, 194, 263, 300, 300, 300, 26, 300, 300, - 300, 300, 300, 194, 17, 300, 300, 300, 300, 300, 300, 300, 163,); + const YY_SZ_ACTTAB = 2006; - static public $yy_lookahead = array(12, 13, 14, 36, 16, 17, 1, 19, 20, 12, 13, 71, 72, 25, 17, 48, 11, 29, 30, 31, - 32, 81, 34, 26, 36, 28, 92, 39, 94, 95, 33, 43, 44, 45, 46, 47, 21, 49, 98, 51, 52, 75, 54, 71, 72, 79, 58, 12, - 13, 14, 35, 16, 17, 81, 19, 20, 84, 85, 71, 72, 25, 75, 76, 77, 29, 79, 31, 32, 81, 34, 98, 36, 12, 13, 39, 17, - 26, 17, 43, 44, 45, 46, 47, 33, 49, 98, 51, 52, 53, 54, 71, 72, 18, 58, 12, 13, 14, 98, 16, 17, 81, 19, 20, 84, - 85, 1, 15, 25, 50, 18, 50, 29, 36, 31, 32, 11, 34, 98, 36, 75, 76, 39, 48, 79, 28, 43, 44, 45, 46, 47, 26, 49, - 36, 51, 52, 36, 54, 33, 17, 48, 58, 12, 13, 14, 48, 16, 17, 48, 19, 20, 63, 64, 65, 66, 25, 35, 69, 37, 29, 64, - 31, 32, 70, 34, 69, 36, 14, 75, 39, 17, 49, 79, 43, 44, 45, 46, 47, 14, 49, 46, 51, 52, 90, 54, 1, 52, 71, 58, - 12, 13, 14, 18, 16, 17, 11, 19, 20, 102, 103, 84, 85, 25, 35, 51, 37, 29, 54, 31, 32, 26, 34, 15, 36, 98, 18, - 39, 33, 54, 46, 43, 44, 45, 46, 47, 52, 49, 22, 51, 52, 95, 54, 71, 72, 15, 58, 12, 13, 14, 14, 16, 17, 81, 19, - 20, 48, 41, 71, 72, 25, 8, 9, 10, 29, 36, 31, 32, 81, 34, 98, 36, 22, 71, 39, 59, 46, 48, 43, 44, 45, 46, 47, - 64, 49, 98, 51, 52, 69, 54, 54, 41, 71, 58, 12, 13, 14, 72, 16, 17, 98, 19, 20, 53, 12, 13, 81, 25, 15, 17, 46, - 29, 13, 31, 32, 22, 34, 53, 36, 98, 99, 39, 103, 98, 17, 43, 44, 45, 46, 47, 72, 49, 1, 51, 52, 36, 54, 35, 72, - 81, 58, 12, 13, 14, 72, 16, 17, 81, 19, 20, 35, 18, 37, 81, 25, 53, 98, 26, 29, 89, 31, 32, 72, 34, 33, 36, 96, - 71, 39, 14, 98, 81, 43, 44, 45, 46, 47, 72, 49, 46, 51, 52, 91, 54, 93, 52, 81, 58, 12, 13, 14, 36, 16, 17, 98, - 19, 20, 22, 93, 75, 76, 25, 91, 79, 93, 29, 1, 31, 32, 54, 34, 26, 36, 1, 15, 39, 41, 72, 33, 43, 44, 45, 46, - 47, 72, 49, 81, 51, 52, 79, 54, 94, 95, 81, 58, 12, 13, 14, 93, 16, 17, 14, 19, 20, 17, 46, 96, 17, 25, 71, 98, - 52, 29, 1, 31, 32, 72, 34, 53, 36, 94, 95, 39, 17, 72, 81, 43, 44, 45, 46, 47, 89, 49, 81, 51, 52, 98, 54, 96, - 1, 28, 58, 12, 13, 14, 93, 16, 17, 79, 19, 20, 1, 2, 99, 72, 25, 18, 65, 2, 29, 68, 31, 32, 81, 34, 51, 36, 34, - 17, 39, 53, 80, 37, 43, 44, 45, 46, 47, 17, 49, 98, 51, 12, 13, 54, 11, 17, 17, 58, 15, 17, 34, 3, 4, 5, 6, 7, - 8, 15, 1, 26, 12, 13, 23, 17, 16, 4, 33, 19, 20, 36, 17, 53, 51, 25, 91, 80, 17, 29, 21, 31, 32, 48, 42, 64, 46, - 36, 12, 13, 69, 70, 11, 17, 73, 74, 75, 38, 39, 40, 79, 12, 13, 82, 83, 91, 17, 86, 87, 88, 72, 90, 80, 22, 55, - 56, 57, 81, 64, 81, 91, 100, 101, 69, 70, 79, 50, 73, 74, 75, 93, 93, 67, 79, 91, 1, 82, 83, 78, 50, 86, 87, 88, - 79, 90, 11, 79, 64, 92, 79, 9, 104, 69, 70, 86, 101, 73, 74, 75, 76, 26, 27, 79, 91, 91, 82, 83, 33, 91, 86, 87, - 88, 64, 90, 104, 71, 72, 69, 70, 12, 13, 73, 74, 75, 17, 81, 104, 79, 84, 85, 82, 83, 104, 26, 86, 87, 88, 104, - 90, 104, 33, 64, 98, 104, 104, 97, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 1, 82, 83, 36, 104, 86, - 87, 88, 104, 90, 11, 104, 64, 46, 104, 48, 97, 69, 70, 1, 53, 73, 74, 75, 76, 26, 104, 79, 104, 11, 82, 83, 33, - 104, 86, 87, 88, 64, 90, 104, 104, 104, 69, 70, 26, 104, 73, 74, 75, 104, 104, 33, 79, 104, 104, 82, 83, 104, - 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 97, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, - 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, - 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, - 13, 14, 79, 104, 17, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, - 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 54, 90, 104, 104, 64, 104, 104, 104, 104, - 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 104, 104, - 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, - 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 4, 104, 86, 87, 88, 104, - 90, 104, 12, 13, 14, 104, 16, 104, 104, 19, 20, 104, 13, 14, 104, 25, 17, 104, 104, 29, 64, 31, 32, 104, 104, - 69, 70, 104, 104, 73, 74, 75, 104, 34, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 58, 59, 69, - 70, 104, 54, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 4, 104, 86, 87, 88, 104, 90, 104, 12, 13, 14, 104, - 16, 104, 104, 19, 20, 104, 104, 104, 104, 25, 104, 104, 104, 29, 64, 31, 32, 104, 104, 69, 70, 104, 104, 73, 74, - 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 58, 59, 69, 70, 104, 104, 73, 74, - 75, 104, 104, 104, 79, 12, 13, 82, 83, 104, 17, 86, 87, 88, 104, 90, 104, 104, 64, 26, 104, 28, 104, 69, 70, - 104, 33, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, - 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, - 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, - 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, - 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, - 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, - 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, - 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, - 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 104, 104, 69, 70, 104, 104, - 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, - 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, - 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, - 64, 90, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, - 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, - 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, - 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 104, 104, 69, 70, 104, 104, 73, 74, 75, 104, 104, 104, - 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 74, - 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, - 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 104, 86, 87, 88, 64, 90, 104, 104, 104, 69, - 70, 104, 104, 73, 74, 75, 104, 104, 104, 79, 104, 104, 82, 83, 104, 11, 86, 87, 88, 104, 90, 104, 104, 64, 104, - 21, 104, 23, 69, 70, 26, 104, 73, 104, 75, 104, 104, 33, 79, 35, 104, 37, 83, 104, 104, 86, 87, 88, 104, 90, 46, - 104, 64, 104, 1, 104, 104, 69, 70, 1, 2, 73, 104, 75, 104, 104, 104, 79, 104, 104, 104, 83, 104, 104, 86, 87, - 88, 24, 90, 26, 61, 62, 63, 64, 65, 66, 33, 104, 69, 2, 104, 38, 39, 40, 36, 104, 38, 39, 40, 12, 13, 2, 15, - 104, 17, 18, 48, 104, 55, 56, 57, 12, 13, 55, 56, 57, 17, 18, 1, 104, 104, 104, 104, 38, 39, 40, 104, 104, 11, - 104, 104, 104, 104, 46, 104, 48, 104, 50, 104, 52, 55, 56, 57, 26, 104, 46, 104, 48, 2, 50, 33, 52, 53, 104, - 104, 38, 39, 40, 12, 13, 104, 15, 104, 17, 18, 104, 104, 104, 104, 104, 104, 104, 55, 56, 57, 104, 104, 104, 64, - 104, 104, 104, 104, 69, 70, 104, 104, 73, 104, 75, 104, 104, 46, 79, 48, 104, 50, 104, 52, 104, 86, 87, 88, 104, - 90, 2, 104, 104, 64, 104, 104, 104, 104, 69, 70, 12, 13, 73, 104, 75, 17, 18, 104, 79, 104, 104, 104, 104, 104, - 104, 86, 87, 88, 104, 90, 104, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 104, 75, 46, 104, 48, 79, 50, - 104, 52, 104, 104, 104, 86, 87, 88, 104, 90, 104, 64, 104, 104, 104, 104, 69, 70, 104, 104, 73, 104, 75, 104, - 104, 104, 79, 104, 104, 104, 104, 104, 104, 86, 87, 88, 1, 90, 2, 104, 1, 64, 104, 104, 104, 104, 69, 70, 12, - 13, 73, 104, 75, 17, 18, 104, 79, 104, 104, 104, 104, 26, 104, 86, 87, 88, 104, 90, 33, 104, 1, 104, 104, 38, - 39, 40, 37, 38, 39, 40, 11, 1, 46, 104, 48, 104, 50, 104, 52, 104, 55, 56, 57, 1, 55, 56, 57, 104, 104, 104, - 104, 104, 104, 11, 104, 1, 104, 38, 39, 40, 104, 104, 104, 104, 104, 11, 104, 37, 38, 39, 40, 104, 104, 104, 55, - 56, 57, 104, 1, 104, 38, 39, 40, 1, 2, 55, 56, 57, 11, 1, 104, 104, 38, 39, 40, 104, 104, 55, 56, 57, 104, 104, - 104, 104, 104, 104, 104, 104, 104, 55, 56, 57, 104, 104, 104, 38, 39, 40, 1, 104, 38, 39, 40, 1, 104, 104, 38, - 39, 40, 104, 12, 13, 55, 56, 57, 17, 18, 55, 56, 57, 104, 53, 104, 55, 56, 57, 1, 104, 104, 27, 104, 104, 104, - 104, 104, 38, 39, 40, 104, 104, 38, 39, 40, 104, 46, 104, 48, 104, 50, 104, 52, 104, 55, 56, 57, 104, 59, 55, - 56, 57, 1, 104, 1, 38, 39, 40, 104, 104, 104, 104, 11, 104, 11, 104, 104, 104, 104, 18, 104, 104, 55, 56, 57, - 22, 104, 26, 104, 26, 104, 104, 71, 72, 33, 104, 33, 36, 104, 104, 71, 72, 81, 104, 41, 84, 85, 1, 104, 48, 81, - 71, 72, 84, 85, 104, 104, 11, 104, 98, 104, 81, 104, 104, 84, 85, 104, 98, 22, 104, 104, 104, 26, 104, 104, 104, - 104, 104, 98, 33, 104, 104, 104, 104, 104, 104, 104, 41,); + static public $yy_action = array(293, 9, 133, 451, 279, 67, 317, 5, 84, 265, 20, 222, 98, 118, 268, 451, 450, 219, + 300, 261, 237, 15, 228, 14, 28, 162, 450, 42, 450, 450, 16, 40, 41, 270, 226, 299, 220, 216, 450, 81, 1, 450, + 305, 253, 85, 313, 52, 293, 9, 131, 208, 279, 201, 6, 5, 84, 265, 20, 92, 154, 118, 268, 191, 303, 219, 112, + 261, 237, 266, 209, 14, 28, 161, 269, 42, 101, 14, 16, 40, 41, 270, 226, 238, 16, 216, 193, 81, 1, 247, 305, + 189, 150, 177, 52, 293, 9, 135, 208, 279, 211, 266, 5, 84, 19, 327, 91, 146, 118, 307, 208, 315, 219, 24, 261, + 237, 266, 228, 193, 28, 269, 368, 42, 157, 14, 267, 40, 41, 270, 226, 299, 16, 216, 193, 81, 1, 7, 305, 189, + 177, 2, 52, 293, 9, 134, 208, 279, 211, 196, 5, 84, 19, 327, 93, 148, 118, 360, 294, 310, 219, 295, 261, 237, + 266, 228, 193, 28, 269, 182, 42, 106, 14, 263, 40, 41, 270, 226, 299, 16, 216, 193, 81, 1, 171, 305, 139, 177, + 337, 52, 293, 9, 136, 266, 279, 211, 193, 5, 84, 265, 20, 97, 152, 118, 268, 267, 241, 219, 94, 261, 237, 266, + 228, 14, 31, 136, 269, 42, 242, 37, 16, 40, 41, 270, 226, 299, 305, 216, 193, 81, 1, 186, 305, 90, 153, 177, 52, + 293, 9, 135, 208, 279, 211, 266, 5, 84, 19, 327, 265, 20, 118, 408, 81, 268, 219, 305, 261, 237, 193, 198, 193, + 28, 12, 264, 42, 101, 408, 164, 40, 41, 270, 226, 299, 408, 216, 14, 81, 1, 30, 305, 189, 179, 16, 52, 293, 9, + 135, 208, 279, 199, 266, 5, 84, 19, 327, 110, 23, 118, 405, 101, 208, 219, 252, 261, 237, 233, 213, 193, 28, + 227, 123, 42, 318, 405, 103, 40, 41, 270, 226, 299, 405, 216, 160, 81, 1, 260, 305, 189, 175, 110, 52, 293, 9, + 135, 96, 279, 202, 266, 5, 84, 19, 327, 305, 158, 118, 225, 218, 212, 219, 105, 261, 237, 266, 228, 193, 28, + 208, 37, 42, 180, 297, 291, 40, 41, 270, 226, 299, 149, 216, 196, 81, 1, 330, 305, 189, 174, 266, 52, 293, 9, + 132, 208, 279, 211, 266, 5, 84, 19, 327, 479, 479, 118, 402, 196, 479, 219, 11, 261, 237, 170, 228, 193, 4, 16, + 331, 42, 26, 14, 266, 40, 41, 270, 226, 299, 16, 216, 190, 81, 1, 232, 305, 189, 151, 184, 52, 293, 9, 135, 208, + 279, 197, 266, 5, 84, 19, 327, 317, 463, 118, 408, 137, 222, 219, 463, 261, 237, 10, 228, 193, 28, 193, 264, 42, + 145, 408, 267, 40, 41, 270, 226, 299, 408, 216, 3, 81, 1, 27, 305, 244, 269, 229, 52, 293, 9, 136, 308, 279, + 211, 187, 5, 84, 479, 479, 227, 26, 118, 479, 463, 177, 219, 258, 261, 237, 27, 228, 306, 31, 225, 249, 42, 332, + 105, 463, 40, 41, 270, 226, 299, 463, 216, 27, 81, 256, 217, 305, 463, 406, 463, 52, 479, 231, 463, 285, 284, + 282, 283, 289, 290, 180, 208, 22, 406, 293, 9, 181, 303, 279, 281, 406, 5, 84, 450, 265, 20, 95, 118, 168, 268, + 269, 219, 115, 261, 237, 450, 169, 323, 286, 287, 288, 234, 222, 205, 222, 266, 119, 71, 116, 39, 43, 38, 103, + 265, 20, 275, 334, 267, 268, 210, 278, 325, 221, 260, 479, 479, 329, 335, 336, 479, 323, 320, 101, 215, 312, + 222, 205, 208, 125, 121, 66, 116, 7, 35, 223, 103, 208, 155, 275, 334, 272, 230, 210, 278, 325, 251, 260, 363, + 173, 323, 137, 83, 479, 207, 222, 205, 10, 266, 121, 48, 108, 114, 14, 140, 103, 227, 143, 275, 334, 16, 159, + 210, 278, 325, 305, 260, 323, 208, 101, 266, 321, 222, 205, 163, 33, 121, 66, 116, 147, 225, 224, 103, 266, 105, + 275, 334, 196, 266, 210, 278, 325, 323, 260, 305, 267, 29, 222, 205, 110, 206, 121, 66, 116, 172, 196, 109, 103, + 25, 200, 275, 334, 273, 266, 210, 278, 325, 323, 260, 208, 178, 183, 222, 205, 105, 214, 119, 71, 116, 298, 374, + 271, 103, 188, 303, 275, 334, 236, 165, 210, 278, 325, 262, 260, 120, 14, 326, 266, 193, 305, 208, 323, 16, 125, + 311, 450, 222, 205, 21, 267, 121, 58, 108, 224, 248, 250, 103, 450, 240, 275, 334, 176, 274, 210, 278, 325, 323, + 260, 194, 34, 266, 222, 205, 246, 185, 121, 44, 116, 319, 292, 23, 103, 277, 276, 275, 334, 141, 196, 210, 278, + 325, 323, 260, 245, 144, 280, 222, 205, 271, 142, 121, 63, 116, 167, 156, 138, 103, 87, 296, 275, 334, 267, 117, + 210, 278, 325, 323, 260, 86, 302, 107, 222, 205, 333, 302, 99, 61, 116, 302, 88, 302, 103, 302, 89, 275, 334, + 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 55, 116, 302, 302, 302, 103, 302, + 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 102, 72, 116, 302, 302, + 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 80, + 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, + 302, 121, 70, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, + 222, 205, 302, 302, 100, 73, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 314, 210, 278, 325, 302, 260, + 302, 302, 293, 8, 316, 302, 279, 302, 302, 5, 84, 302, 302, 302, 302, 118, 302, 302, 302, 219, 323, 261, 237, + 302, 302, 222, 205, 302, 302, 121, 50, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, + 323, 260, 302, 301, 17, 222, 204, 302, 302, 121, 53, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 314, 210, + 278, 325, 302, 260, 302, 302, 293, 8, 316, 302, 279, 302, 302, 5, 84, 302, 302, 302, 302, 118, 302, 302, 302, + 219, 323, 261, 237, 302, 302, 222, 205, 302, 302, 111, 47, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, + 302, 210, 278, 325, 323, 260, 302, 302, 17, 222, 205, 302, 302, 121, 49, 116, 302, 302, 302, 103, 302, 302, 275, + 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 76, 116, 302, 302, 302, 103, + 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 75, 116, 302, + 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, + 62, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, + 302, 302, 121, 59, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, + 302, 222, 205, 302, 302, 121, 56, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, + 260, 302, 302, 302, 222, 77, 302, 302, 82, 46, 104, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, + 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 60, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, + 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 79, 302, 302, 82, 45, 104, 302, 302, 302, 103, 302, 302, 275, + 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 68, 116, 302, 302, 302, 103, + 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 65, 116, 302, + 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, + 57, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, + 302, 302, 121, 78, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, + 302, 222, 205, 302, 302, 121, 69, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, + 260, 302, 302, 302, 222, 205, 302, 302, 121, 64, 116, 302, 302, 302, 103, 302, 302, 275, 334, 302, 302, 210, + 278, 325, 323, 260, 302, 302, 302, 222, 203, 302, 302, 113, 54, 116, 302, 302, 302, 103, 302, 302, 275, 334, + 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 58, 116, 302, 302, 302, 103, 302, + 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 205, 302, 302, 121, 74, 116, 302, 302, + 302, 103, 302, 302, 275, 334, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 235, 302, 302, 124, 302, + 116, 302, 302, 302, 103, 302, 208, 302, 324, 302, 208, 210, 278, 325, 323, 260, 302, 304, 302, 222, 235, 302, + 302, 130, 302, 116, 302, 302, 302, 103, 302, 302, 14, 254, 418, 418, 210, 278, 325, 16, 260, 302, 302, 302, 39, + 43, 38, 255, 39, 43, 38, 534, 51, 243, 287, 288, 234, 302, 302, 222, 302, 329, 335, 336, 229, 329, 335, 336, + 302, 302, 450, 302, 418, 418, 418, 479, 479, 302, 36, 302, 479, 463, 450, 229, 208, 39, 43, 38, 302, 418, 418, + 418, 302, 302, 479, 479, 302, 302, 302, 479, 463, 302, 329, 335, 336, 302, 302, 302, 32, 463, 14, 463, 302, 479, + 302, 463, 302, 16, 302, 302, 302, 302, 39, 43, 38, 302, 302, 302, 463, 302, 463, 302, 479, 302, 463, 322, 302, + 302, 323, 329, 335, 336, 302, 222, 235, 302, 302, 127, 302, 116, 302, 302, 302, 103, 302, 302, 302, 412, 302, + 302, 210, 278, 325, 302, 260, 323, 302, 412, 302, 412, 222, 235, 412, 302, 128, 302, 116, 302, 302, 412, 103, + 412, 302, 412, 302, 302, 302, 210, 278, 325, 323, 260, 227, 302, 302, 222, 235, 302, 302, 126, 302, 116, 302, + 302, 302, 103, 302, 302, 302, 302, 302, 302, 210, 278, 325, 323, 260, 302, 302, 302, 222, 235, 302, 302, 122, + 302, 116, 302, 302, 302, 103, 302, 208, 302, 302, 302, 302, 210, 278, 325, 323, 260, 208, 302, 302, 222, 235, + 302, 302, 129, 302, 116, 302, 259, 302, 103, 302, 302, 14, 302, 302, 302, 210, 278, 325, 16, 260, 229, 302, 302, + 39, 43, 38, 302, 13, 302, 302, 302, 479, 479, 39, 43, 38, 479, 463, 479, 479, 329, 335, 336, 479, 463, 208, 302, + 302, 302, 302, 329, 335, 336, 208, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 463, 302, 463, 302, + 479, 302, 463, 463, 302, 463, 302, 479, 302, 463, 302, 166, 302, 239, 39, 43, 38, 208, 302, 302, 302, 302, 39, + 43, 38, 208, 302, 302, 192, 302, 302, 329, 335, 336, 302, 302, 257, 302, 302, 329, 335, 336, 302, 302, 302, 302, + 302, 302, 302, 302, 302, 302, 302, 479, 479, 39, 43, 38, 479, 463, 208, 302, 302, 39, 43, 38, 208, 18, 302, 208, + 302, 302, 329, 335, 336, 302, 302, 302, 302, 302, 329, 335, 336, 302, 302, 302, 302, 463, 302, 463, 302, 479, + 302, 463, 302, 208, 302, 302, 39, 43, 38, 208, 302, 302, 39, 43, 38, 39, 43, 38, 302, 302, 195, 302, 302, 329, + 335, 336, 302, 309, 302, 329, 335, 336, 329, 335, 336, 302, 302, 302, 302, 302, 302, 39, 43, 38, 302, 302, 302, + 39, 43, 38, 302, 302, 302, 302, 302, 302, 328, 302, 329, 335, 336, 302, 302, 302, 329, 335, 336,); - const YY_SHIFT_USE_DFLT = - 34; + static public $yy_lookahead = array(13, 14, 15, 37, 17, 18, 65, 20, 21, 13, 14, 70, 81, 26, 18, 49, 37, 30, 31, 32, + 33, 29, 35, 27, 37, 29, 37, 40, 49, 37, 34, 44, 45, 46, 47, 48, 47, 50, 49, 52, 53, 49, 55, 54, 103, 104, 59, + 13, 14, 15, 1, 17, 18, 37, 20, 21, 13, 14, 72, 73, 26, 18, 95, 96, 30, 49, 32, 33, 82, 35, 27, 37, 29, 23, 40, + 19, 27, 34, 44, 45, 46, 47, 48, 34, 50, 99, 52, 53, 54, 55, 72, 73, 42, 59, 13, 14, 15, 1, 17, 18, 82, 20, 21, + 85, 86, 72, 73, 26, 12, 1, 60, 30, 14, 32, 33, 82, 35, 99, 37, 23, 12, 40, 92, 27, 94, 44, 45, 46, 47, 48, 34, + 50, 99, 52, 53, 37, 55, 72, 42, 36, 59, 13, 14, 15, 1, 17, 18, 99, 20, 21, 85, 86, 72, 73, 26, 12, 66, 54, 30, + 69, 32, 33, 82, 35, 99, 37, 23, 72, 40, 80, 27, 18, 44, 45, 46, 47, 48, 34, 50, 99, 52, 53, 73, 55, 15, 42, 97, + 59, 13, 14, 15, 82, 17, 18, 99, 20, 21, 13, 14, 72, 73, 26, 18, 94, 51, 30, 37, 32, 33, 82, 35, 27, 37, 15, 23, + 40, 18, 2, 34, 44, 45, 46, 47, 48, 55, 50, 99, 52, 53, 72, 55, 72, 73, 42, 59, 13, 14, 15, 1, 17, 18, 82, 20, + 21, 85, 86, 13, 14, 26, 12, 52, 18, 30, 55, 32, 33, 99, 35, 99, 37, 16, 100, 40, 19, 27, 28, 44, 45, 46, 47, 48, + 34, 50, 27, 52, 53, 16, 55, 72, 73, 34, 59, 13, 14, 15, 1, 17, 18, 82, 20, 21, 85, 86, 49, 16, 26, 12, 19, 1, + 30, 15, 32, 33, 71, 35, 99, 37, 47, 76, 40, 96, 27, 80, 44, 45, 46, 47, 48, 34, 50, 92, 52, 53, 91, 55, 72, 73, + 49, 59, 13, 14, 15, 92, 17, 18, 82, 20, 21, 85, 86, 55, 73, 26, 76, 77, 78, 30, 80, 32, 33, 82, 35, 99, 37, 1, + 2, 40, 9, 10, 11, 44, 45, 46, 47, 48, 73, 50, 99, 52, 53, 18, 55, 72, 73, 82, 59, 13, 14, 15, 1, 17, 18, 82, 20, + 21, 85, 86, 13, 14, 26, 12, 99, 18, 30, 27, 32, 33, 73, 35, 99, 37, 34, 50, 40, 16, 27, 82, 44, 45, 46, 47, 48, + 34, 50, 15, 52, 53, 18, 55, 72, 73, 72, 59, 13, 14, 15, 1, 17, 18, 82, 20, 21, 85, 86, 65, 47, 26, 12, 47, 70, + 30, 53, 32, 33, 53, 35, 99, 37, 99, 100, 40, 92, 27, 94, 44, 45, 46, 47, 48, 34, 50, 37, 52, 53, 36, 55, 38, 23, + 2, 59, 13, 14, 15, 104, 17, 18, 81, 20, 21, 13, 14, 47, 16, 26, 18, 19, 42, 30, 54, 32, 33, 36, 35, 38, 37, 76, + 77, 40, 54, 80, 47, 44, 45, 46, 47, 48, 53, 50, 36, 52, 38, 18, 55, 47, 12, 49, 59, 51, 16, 53, 3, 4, 5, 6, 7, + 8, 9, 1, 22, 27, 13, 14, 95, 96, 17, 5, 34, 20, 21, 37, 13, 14, 36, 26, 52, 18, 23, 30, 22, 32, 33, 49, 73, 65, + 64, 65, 66, 67, 70, 71, 70, 82, 74, 75, 76, 39, 40, 41, 80, 13, 14, 83, 84, 94, 18, 87, 88, 89, 51, 91, 13, 14, + 56, 57, 58, 18, 65, 90, 19, 101, 102, 70, 71, 1, 97, 74, 75, 76, 37, 14, 15, 80, 1, 18, 83, 84, 18, 51, 87, 88, + 89, 18, 91, 12, 73, 65, 47, 18, 51, 98, 70, 71, 53, 82, 74, 75, 76, 77, 27, 15, 80, 47, 52, 83, 84, 34, 73, 87, + 88, 89, 55, 91, 65, 1, 19, 82, 54, 70, 71, 73, 43, 74, 75, 76, 73, 76, 77, 80, 82, 80, 83, 84, 99, 82, 87, 88, + 89, 65, 91, 55, 94, 29, 70, 71, 49, 98, 74, 75, 76, 73, 99, 18, 80, 14, 15, 83, 84, 18, 82, 87, 88, 89, 65, 91, + 1, 76, 72, 70, 71, 80, 98, 74, 75, 76, 35, 12, 93, 80, 95, 96, 83, 84, 19, 73, 87, 88, 89, 18, 91, 18, 27, 90, + 82, 99, 55, 1, 65, 34, 97, 102, 37, 70, 71, 16, 94, 74, 75, 76, 77, 54, 23, 80, 49, 19, 83, 84, 73, 18, 87, 88, + 89, 65, 91, 18, 24, 82, 70, 71, 54, 81, 74, 75, 76, 18, 12, 16, 80, 35, 35, 83, 84, 92, 99, 87, 88, 89, 65, 91, + 38, 92, 82, 70, 71, 93, 92, 74, 75, 76, 92, 92, 80, 80, 80, 10, 83, 84, 94, 79, 87, 88, 89, 65, 91, 80, 105, 68, + 70, 71, 87, 105, 74, 75, 76, 105, 80, 105, 80, 105, 80, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, + 71, 105, 105, 74, 75, 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, + 71, 105, 105, 74, 75, 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, + 71, 105, 105, 74, 75, 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, + 71, 105, 105, 74, 75, 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, + 71, 105, 105, 74, 75, 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 5, 87, 88, 89, 105, 91, 105, 105, 13, 14, + 15, 105, 17, 105, 105, 20, 21, 105, 105, 105, 105, 26, 105, 105, 105, 30, 65, 32, 33, 105, 105, 70, 71, 105, + 105, 74, 75, 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 59, 60, 70, 71, 105, + 105, 74, 75, 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 5, 87, 88, 89, 105, 91, 105, 105, 13, 14, 15, 105, + 17, 105, 105, 20, 21, 105, 105, 105, 105, 26, 105, 105, 105, 30, 65, 32, 33, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 59, 60, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 75, + 76, 105, 105, 105, 80, 105, 105, 83, 84, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 105, + 76, 105, 105, 105, 80, 105, 1, 105, 84, 105, 1, 87, 88, 89, 65, 91, 105, 12, 105, 70, 71, 105, 105, 74, 105, 76, + 105, 105, 105, 80, 105, 105, 27, 84, 1, 2, 87, 88, 89, 34, 91, 105, 105, 105, 39, 40, 41, 38, 39, 40, 41, 62, + 63, 64, 65, 66, 67, 105, 105, 70, 105, 56, 57, 58, 2, 56, 57, 58, 105, 105, 37, 105, 39, 40, 41, 13, 14, 105, + 16, 105, 18, 19, 49, 2, 1, 39, 40, 41, 105, 56, 57, 58, 105, 105, 13, 14, 105, 105, 105, 18, 19, 105, 56, 57, + 58, 105, 105, 105, 25, 47, 27, 49, 105, 51, 105, 53, 105, 34, 105, 105, 105, 105, 39, 40, 41, 105, 105, 105, 47, + 105, 49, 105, 51, 105, 53, 54, 105, 105, 65, 56, 57, 58, 105, 70, 71, 105, 105, 74, 105, 76, 105, 105, 105, 80, + 105, 105, 105, 12, 105, 105, 87, 88, 89, 105, 91, 65, 105, 22, 105, 24, 70, 71, 27, 105, 74, 105, 76, 105, 105, + 34, 80, 36, 105, 38, 105, 105, 105, 87, 88, 89, 65, 91, 47, 105, 105, 70, 71, 105, 105, 74, 105, 76, 105, 105, + 105, 80, 105, 105, 105, 105, 105, 105, 87, 88, 89, 65, 91, 105, 105, 105, 70, 71, 105, 105, 74, 105, 76, 105, + 105, 105, 80, 105, 1, 105, 105, 105, 105, 87, 88, 89, 65, 91, 1, 105, 105, 70, 71, 105, 105, 74, 105, 76, 105, + 12, 105, 80, 105, 105, 27, 105, 105, 105, 87, 88, 89, 34, 91, 2, 105, 105, 39, 40, 41, 105, 2, 105, 105, 105, + 13, 14, 39, 40, 41, 18, 19, 13, 14, 56, 57, 58, 18, 19, 1, 105, 105, 105, 105, 56, 57, 58, 1, 105, 105, 105, + 105, 105, 105, 105, 105, 105, 105, 105, 47, 105, 49, 105, 51, 105, 53, 47, 105, 49, 105, 51, 105, 53, 105, 28, + 105, 38, 39, 40, 41, 1, 105, 105, 105, 105, 39, 40, 41, 1, 105, 105, 12, 105, 105, 56, 57, 58, 105, 105, 12, + 105, 105, 56, 57, 58, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 13, 14, 39, 40, 41, 18, 19, 1, 105, + 105, 39, 40, 41, 1, 2, 105, 1, 105, 105, 56, 57, 58, 105, 105, 105, 105, 105, 56, 57, 58, 105, 105, 105, 105, + 47, 105, 49, 105, 51, 105, 53, 105, 1, 105, 105, 39, 40, 41, 1, 105, 105, 39, 40, 41, 39, 40, 41, 105, 105, 12, + 105, 105, 56, 57, 58, 105, 60, 105, 56, 57, 58, 56, 57, 58, 105, 105, 105, 105, 105, 105, 39, 40, 41, 105, 105, + 105, 39, 40, 41, 105, 105, 105, 105, 105, 105, 54, 105, 56, 57, 58, 105, 105, 105, 56, 57, 58,); + + const YY_SHIFT_USE_DFLT = - 35; const YY_SHIFT_MAX = 242; - static public $yy_shift_ofst = array(517, 364, 270, 82, 364, 270, 82, 82, - 12, - 12, 35, 82, 82, 82, 129, 82, 82, - 82, 82, 176, 223, 82, 82, 82, 82, 82, 176, 82, 82, 82, 82, 82, 411, 82, 82, 82, 82, 317, 317, 458, 458, 458, - 458, 458, 1680, 1616, 1852, 1852, 1852, 1852, 1852, 517, 1004, 1955, 1989, 1984, 1909, 526, 1886, 1897, 1944, - 1921, 1856, 1949, 2012, 2012, 2012, 2012, 2012, 2012, 2046, 2012, 2012, 2012, 2012, 2012, 2012, 1648, 2091, - 1648, 2048, 152, 104, 319, 343, 933, - 3, 1063, 634, 634, 684, 684, 319, 343, 319, 343, 321, 319, 478, 601, 703, - 805, 60, 183, 196, 280, 91, 280, 241, 74, 415, 224, 50, 373, 466, 440, 5, 393, 415, 50, 173, 173, 400, 400, 400, - 400, 400, 400, 400, 400, - 34, 1709, 1662, 1650, 1853, 1766, 1985, 942, 556, 387, 498, 50, 50, 281, 50, 50, 133, - 163, 50, 50, 50, 163, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 121, 133, 133, 133, 163, 133, 133, 50, 133, - 163, 172, 50, 172, 287, 50, 50, 133, 400, 400, 76, 608, 173, 400, 400, 484, 484, 173, 173, 400, - 34, - 34, - - 34, - 34, - 34, 1621, 1567, 502, 652, 543, 96, 204, 238, 252, 290, 15, 58, - 33, 120, 99, 218, 217, 363, 167, - 303, 501, 511, 508, 515, 485, 463, 461, 489, 497, 522, 530, 509, 548, 518, 507, 490, 487, 528, 479, 434, 558, - 295, 76, 418, 442, 445,); + static public $yy_shift_ofst = array(517, 316, 316, 81, 363, 363, 81, 81, - 13, - 13, 34, 269, 81, 410, 269, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 222, 81, 81, 81, 81, 81, 81, 128, 81, 81, 81, 175, 175, 457, 457, 457, 457, + 457, 1614, 1536, 1762, 1762, 1762, 1762, 1762, 517, 942, 1906, 1941, 1947, 1772, 1540, 1822, 1871, 1863, 1830, + 526, 1912, 1915, 1915, 1915, 693, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 143, 1577, 96, 1577, + 198, 601, 49, 169, 1014, - 4, 43, 184, 184, 378, 378, 49, 49, 169, 169, 569, 49, 353, 237, 425, 585, 284, 527, + 244, 233, 233, 348, 278, 724, 399, 108, 399, 592, 246, 614, 625, 246, 367, 642, 297, 297, 297, 56, 297, 56, 297, + 297, 297, 297, - 35, 1612, 466, 1593, 1803, 1796, 1887, 669, 556, 388, 374, 391, 391, 453, 391, 391, 246, 246, + 246, 246, 246, 246, 246, 246, 246, 98, 391, 391, 246, 246, 391, 285, 285, 246, 285, 246, 285, 391, 453, 246, + 246, 246, 246, 246, 246, 246, 246, 352, 717, 246, 783, 56, 297, 297, 297, 215, 297, 215, 56, 297, 424, 56, - 35, + - 35, - 35, - 35, - 35, 1564, 1676, 502, 567, - 11, - 8, 444, 50, 191, 455, 472, 153, 434, 16, - 21, 506, 260, + 428, 103, - 34, 704, 730, 735, 493, 745, 752, 424, 740, 749, 732, 733, 584, 729, 588, 593, 561, 492, 530, 523, + 599, 663, 685, 607, 701, 699, 580,); - const YY_REDUCE_USE_DFLT = - 67; + const YY_REDUCE_USE_DFLT = - 70; const YY_REDUCE_MAX = 196; - static public $yy_reduce_ofst = array(1582, 488, 633, 658, 521, 550, 575, 604, 770, 799, 1024, 1302, 1410, 1439, - 1244, 1107, 1190, 1493, 1078, 824, 970, 687, 924, 1327, 1219, 1161, 1136, 1053, 1273, 1468, 1385, 1356, 899, - 995, 741, 716, 853, 1551, 1522, 1764, 1794, 1736, 1707, 1677, - 28, 571, 19, - 28, 2006, 2014, 2025, 87, 95, - 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 175, 115, 115, 115, 115, - 115, 115, 115, 160, 115, 160, 92, - 13, - 60, - 14, 207, 333, 380, 505, 293, 246, 213, 260, 44, 410, 312, - 66, - 340, 209, 190, 190, 338, 299, 190, 325, 299, 325, 279, 420, 325, 258, - 34, 278, 254, 366, 190, 190, 190, 370, - 372, 325, 354, 190, 190, 284, 190, 190, 190, 190, 190, 190, 496, 496, 496, 496, 496, 496, 397, 504, 496, 496, - 503, 503, 527, 503, 503, 523, 531, 503, 503, 503, 513, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, - 535, 523, 523, 523, 537, 523, 523, 503, 523, 534, 510, 503, 539, 540, 503, 503, 523, - 1, - 1, 544, 532, 134, - - 1, - 1, 382, 382, 134, 134, - 1, 499, 464, 419, 452, 481,); + static public $yy_reduce_ofst = array(1520, 488, 627, 577, 661, 550, 521, 602, 1205, 1155, 1380, 736, 908, 811, 861, + 836, 786, 933, 1305, 1330, 1105, 1055, 1080, 1430, 1180, 1130, 1030, 1230, 1405, 1355, 1255, 1280, 1005, 711, + 686, 761, 980, 1480, 1455, 1604, 1706, 1631, 1656, 1681, 300, 159, 159, 347, 206, 253, 18, 490, - 59, 65, 65, + 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 80, 65, 65, 65, 65, 65, 65, 65, 65, 65, 127, 65, 127, 65, 232, + 33, - 14, 267, 369, 109, 479, 640, 576, 581, 268, 563, 292, 579, 419, 613, 673, 349, 95, 95, 89, 95, 359, - 33, + 359, 30, 90, - 33, 624, 631, 95, 497, 95, 606, 619, - 33, 541, 324, 95, 157, 95, 95, - 33, 95, 437, 95, 95, 95, + 95, 95, 696, 696, 696, 696, 696, 696, 710, 702, 696, 696, 690, 690, 692, 690, 690, 698, 698, 698, 698, 698, 698, + 698, 698, 698, 697, 690, 690, 698, 698, 690, 738, 734, 698, 723, 698, 712, 690, 687, 698, 698, 698, 698, 698, + 698, 698, 698, 721, 718, 698, 737, 214, 48, 48, 48, 161, 48, 161, 214, 48, 240, 214, 228, 395, - 69, 679, 678,); - static public $yyExpectedTokens = array(array(3, 4, 5, 6, 7, 8, 12, 13, 16, 19, 20, 25, 29, 31, 32,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 30, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 30, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 52, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 54, 58,), - array(12, 13, 14, 16, 17, 19, 20, 25, 29, 31, 32, 34, 36, 39, 43, 44, 45, 46, 47, 49, 51, 54, 58,), - array(1, 11, 26, 33, 38, 39, 40, 55, 56, 57,), array(1, 24, 26, 33, 38, 39, 40, 55, 56, 57,), - array(1, 26, 33, 38, 39, 40, 55, 56, 57,), array(1, 26, 33, 38, 39, 40, 55, 56, 57,), - array(1, 26, 33, 38, 39, 40, 55, 56, 57,), array(1, 26, 33, 38, 39, 40, 55, 56, 57,), - array(1, 26, 33, 38, 39, 40, 55, 56, 57,), array(3, 4, 5, 6, 7, 8, 12, 13, 16, 19, 20, 25, 29, 31, 32,), - array(4, 12, 13, 14, 16, 19, 20, 25, 29, 31, 32, 58, 59,), array(1, 38, 39, 40, 53, 55, 56, 57,), - array(1, 27, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57, 59,), - array(1, 11, 38, 39, 40, 55, 56, 57,), array(1, 21, 38, 39, 40, 55, 56, 57,), - array(1, 11, 38, 39, 40, 55, 56, 57,), array(1, 37, 38, 39, 40, 55, 56, 57,), - array(1, 11, 38, 39, 40, 55, 56, 57,), array(1, 11, 38, 39, 40, 55, 56, 57,), - array(1, 37, 38, 39, 40, 55, 56, 57,), array(1, 2, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), - array(1, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), - array(1, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), array(1, 11, 18, 26, 33, 36, 48,), - array(1, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), - array(1, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), array(1, 38, 39, 40, 55, 56, 57,), - array(38, 39, 40, 55, 56, 57,), array(1, 11, 22, 26, 33, 41,), array(38, 39, 40, 55, 56, 57,), - array(1, 11, 22, 26, 33, 41,), array(14, 17, 51, 54,), array(1, 11, 26, 33,), array(1, 26, 33,), - array(14, 36, 54,), array(4, 12, 13, 14, 16, 19, 20, 25, 29, 31, 32, 58, 59,), array(12, 13, 17, 26, 28, 33,), - array(12, 13, 17, 26, 28, 33,), array(12, 13, 17, 26, 33,), array(12, 13, 17, 26, 33,), array(1, 11, 26, 33,), - array(1, 11, 26, 33,), array(1, 26, 33,), array(14, 36, 54,), array(1, 26, 33,), array(14, 36, 54,), - array(18, 46, 52,), array(1, 26, 33,), array(1, 2,), array(1, 11, 26, 27, 33,), array(1, 11, 26, 33,), - array(13, 14, 17, 54,), array(12, 13, 17, 50,), array(1, 11, 26, 33,), array(15, 18, 48,), array(12, 13, 17,), - array(15, 18, 48,), array(12, 13, 17,), array(8, 9, 10,), array(18, 48,), array(14, 17,), array(14, 54,), - array(26, 33,), array(26, 33,), array(1, 18,), array(1, 28,), array(1, 11,), array(1, 53,), array(14, 17,), - array(26, 33,), array(18,), array(18,), array(1,), array(1,), array(1,), array(1,), array(1,), array(1,), - array(1,), array(1,), array(), array(2, 12, 13, 15, 17, 18, 46, 48, 50, 52,), - array(2, 12, 13, 17, 18, 46, 48, 50, 52, 53,), array(2, 12, 13, 15, 17, 18, 46, 48, 50, 52,), - array(2, 12, 13, 17, 18, 46, 48, 50, 52,), array(2, 12, 13, 17, 18, 46, 48, 50, 52,), - array(12, 13, 17, 18, 46, 48, 50, 52,), array(13, 14, 17, 34, 54,), array(12, 13, 17, 50,), array(15, 46, 52,), - array(12, 13, 17,), array(26, 33,), array(26, 33,), array(15, 22,), array(26, 33,), array(26, 33,), - array(46, 52,), array(14, 54,), array(26, 33,), array(26, 33,), array(26, 33,), array(14, 54,), array(26, 33,), - array(26, 33,), array(26, 33,), array(26, 33,), array(26, 33,), array(26, 33,), array(26, 33,), array(26, 33,), - array(26, 33,), array(26, 33,), array(26, 33,), array(17, 49,), array(46, 52,), array(46, 52,), array(46, 52,), - array(14, 54,), array(46, 52,), array(46, 52,), array(26, 33,), array(46, 52,), array(14, 54,), array(46, 52,), - array(26, 33,), array(46, 52,), array(13, 36,), array(26, 33,), array(26, 33,), array(46, 52,), array(1,), - array(1,), array(36,), array(9,), array(18,), array(1,), array(1,), array(2,), array(2,), array(18,), - array(18,), array(1,), array(), array(), array(), array(), array(), - array(1, 2, 36, 38, 39, 40, 48, 55, 56, 57,), array(11, 21, 23, 26, 33, 35, 37, 46,), - array(11, 15, 26, 33, 36, 48,), array(36, 46, 48, 53,), array(12, 13, 17, 50,), array(28, 36, 48,), - array(22, 41, 59,), array(22, 41, 53,), array(46, 53,), array(35, 53,), array(21, 35,), array(17, 50,), - array(36, 48,), array(35, 37,), array(36, 48,), array(15, 46,), array(36, 48,), array(22, 41,), array(35, 37,), - array(35, 37,), array(17,), array(15,), array(23,), array(17,), array(34,), array(37,), array(34,), array(17,), - array(17,), array(17,), array(4,), array(42,), array(11,), array(36,), array(46,), array(51,), array(53,), - array(17,), array(17,), array(17,), array(22,), array(17,), array(36,), array(17,), array(51,), array(53,), + static public $yyExpectedTokens = array(array(3, 4, 5, 6, 7, 8, 9, 13, 14, 17, 20, 21, 26, 30, 32, 33,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 31, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 31, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 53, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 55, 59,), + array(13, 14, 15, 17, 18, 20, 21, 26, 30, 32, 33, 35, 37, 40, 44, 45, 46, 47, 48, 50, 52, 55, 59,), + array(1, 25, 27, 34, 39, 40, 41, 56, 57, 58,), array(1, 12, 27, 34, 39, 40, 41, 56, 57, 58,), + array(1, 27, 34, 39, 40, 41, 56, 57, 58,), array(1, 27, 34, 39, 40, 41, 56, 57, 58,), + array(1, 27, 34, 39, 40, 41, 56, 57, 58,), array(1, 27, 34, 39, 40, 41, 56, 57, 58,), + array(1, 27, 34, 39, 40, 41, 56, 57, 58,), array(3, 4, 5, 6, 7, 8, 9, 13, 14, 17, 20, 21, 26, 30, 32, 33,), + array(5, 13, 14, 15, 17, 20, 21, 26, 30, 32, 33, 59, 60,), array(1, 39, 40, 41, 56, 57, 58, 60,), + array(1, 39, 40, 41, 54, 56, 57, 58,), array(1, 12, 39, 40, 41, 56, 57, 58,), + array(1, 12, 39, 40, 41, 56, 57, 58,), array(1, 38, 39, 40, 41, 56, 57, 58,), + array(1, 38, 39, 40, 41, 56, 57, 58,), array(1, 12, 39, 40, 41, 56, 57, 58,), + array(1, 12, 39, 40, 41, 56, 57, 58,), array(1, 28, 39, 40, 41, 56, 57, 58,), + array(1, 22, 39, 40, 41, 56, 57, 58,), array(1, 2, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), + array(1, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), array(1, 12, 19, 27, 34, 37, 49,), + array(1, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), + array(1, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), + array(1, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), array(1, 39, 40, 41, 56, 57, 58,), + array(1, 12, 23, 27, 34, 42,), array(39, 40, 41, 56, 57, 58,), array(1, 12, 23, 27, 34, 42,), + array(39, 40, 41, 56, 57, 58,), array(15, 18, 52, 55,), array(1, 12, 27, 34,), array(1, 27, 34,), + array(15, 37, 55,), array(5, 13, 14, 15, 17, 20, 21, 26, 30, 32, 33, 59, 60,), array(13, 14, 18, 27, 29, 34,), + array(13, 14, 18, 27, 29, 34,), array(13, 14, 18, 27, 34,), array(13, 14, 18, 27, 34,), array(1, 12, 27, 34,), + array(1, 12, 27, 34,), array(1, 27, 34,), array(1, 27, 34,), array(15, 37, 55,), array(15, 37, 55,), + array(19, 47, 53,), array(1, 27, 34,), array(1, 2,), array(1, 12, 27, 28, 34,), array(1, 12, 27, 34,), + array(14, 15, 18, 55,), array(1, 12, 27, 34,), array(13, 14, 18, 51,), array(16, 19, 49,), array(13, 14, 18,), + array(13, 14, 18,), array(9, 10, 11,), array(16, 19, 49,), array(1, 19,), array(15, 18,), array(1, 12,), + array(15, 18,), array(1, 54,), array(27, 34,), array(15, 55,), array(19, 49,), array(27, 34,), array(27, 34,), + array(1, 29,), array(1,), array(1,), array(1,), array(19,), array(1,), array(19,), array(1,), array(1,), + array(1,), array(1,), array(), array(2, 13, 14, 18, 19, 47, 49, 51, 53, 54,), + array(2, 13, 14, 16, 18, 19, 47, 49, 51, 53,), array(2, 13, 14, 16, 18, 19, 47, 49, 51, 53,), + array(2, 13, 14, 18, 19, 47, 49, 51, 53,), array(2, 13, 14, 18, 19, 47, 49, 51, 53,), + array(13, 14, 18, 19, 47, 49, 51, 53,), array(14, 15, 18, 35, 55,), array(13, 14, 18, 51,), array(16, 47, 53,), + array(13, 14, 18,), array(47, 53,), array(47, 53,), array(47, 53,), array(47, 53,), array(47, 53,), + array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,), + array(27, 34,), array(27, 34,), array(14, 37,), array(47, 53,), array(47, 53,), array(27, 34,), array(27, 34,), + array(47, 53,), array(15, 55,), array(15, 55,), array(27, 34,), array(15, 55,), array(27, 34,), array(15, 55,), + array(47, 53,), array(47, 53,), array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,), + array(27, 34,), array(27, 34,), array(27, 34,), array(18, 50,), array(16, 23,), array(27, 34,), array(10,), + array(19,), array(1,), array(1,), array(1,), array(2,), array(1,), array(2,), array(19,), array(1,), array(37,), + array(19,), array(), array(), array(), array(), array(), array(1, 2, 37, 39, 40, 41, 49, 56, 57, 58,), + array(12, 22, 24, 27, 34, 36, 38, 47,), array(12, 16, 27, 34, 37, 49,), array(13, 14, 18, 51,), + array(37, 47, 49, 54,), array(29, 37, 49,), array(23, 42, 54,), array(23, 42, 60,), array(23, 42,), + array(36, 38,), array(36, 38,), array(18, 51,), array(47, 54,), array(37, 49,), array(37, 49,), array(22, 36,), + array(16, 47,), array(36, 38,), array(36, 54,), array(37, 49,), array(54,), array(24,), array(18,), array(18,), + array(18,), array(12,), array(37,), array(38,), array(16,), array(35,), array(35,), array(47,), array(18,), + array(18,), array(18,), array(37,), array(52,), array(5,), array(23,), array(18,), array(18,), array(54,), + array(43,), array(18,), array(18,), array(52,), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), @@ -686,34 +672,34 @@ class Smarty_Internal_Templateparser array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), array(), - array(), array(), array(), array(), array(), array(), array(), array(), array(), array(),); + array(), array(), array(), array(),); - static public $yy_default = array(340, 516, 531, 496, 531, 531, 496, 496, 531, 531, 531, 531, 531, 531, 531, 531, - 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, - 531, 531, 531, 531, 531, 531, 531, 400, 400, 400, 400, 376, 367, 337, 531, 531, 405, 531, 531, 531, 531, 531, - 531, 531, 531, 531, 421, 495, 411, 405, 402, 519, 438, 412, 407, 381, 517, 494, 518, 426, 428, 427, 428, 531, - 414, 400, 531, 531, 400, 400, 400, 400, 420, 445, 400, 531, 400, 531, 508, 400, 390, 414, 414, 531, 461, 414, - 451, 461, 451, 461, 531, 451, 531, 531, 378, 400, 394, 414, 414, 414, 531, 400, 451, 505, 424, 418, 396, 417, - 429, 430, 414, 431, 503, 450, 450, 450, 450, 450, 450, 531, 463, 477, 461, 369, 368, 531, 387, 380, 459, 531, - 365, 386, 360, 531, 373, 362, 359, 374, 363, 385, 364, 371, 375, 377, 389, 531, 486, 457, 488, 531, 489, 458, - 379, 455, 531, 456, 383, 454, 461, 384, 388, 487, 397, 395, 461, 353, 483, 391, 420, 498, 497, 506, 509, 445, - 502, 502, 502, 461, 461, 438, 434, 438, 438, 462, 438, 428, 428, 434, 531, 531, 531, 446, 531, 531, 434, 438, - 428, 531, 531, 531, 531, 408, 531, 436, 531, 531, 531, 531, 531, 344, 440, 531, 507, 434, 531, 441, 531, 531, - 531, 428, 531, 477, 531, 531, 531, 477, 338, 482, 401, 492, 491, 469, 470, 413, 476, 468, 471, 504, 440, 467, - 409, 382, 453, 499, 500, 432, 393, 501, 479, 480, 481, 433, 435, 464, 465, 466, 460, 416, 437, 439, 415, 399, - 370, 345, 347, 348, 346, 343, 339, 341, 342, 349, 350, 356, 357, 398, 355, 354, 351, 352, 441, 442, 520, 521, - 522, 392, 484, 493, 527, 528, 525, 524, 513, 515, 514, 523, 530, 526, 529, 478, 485, 474, 472, 475, 447, 444, - 443, 422, 423, 510, 511, 449, 473, 452, 448, 425, 512, 419, 490,); + static public $yy_default = array(341, 518, 533, 498, 533, 533, 498, 498, 533, 533, 533, 533, 533, 533, 533, 533, + 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, + 533, 533, 533, 533, 533, 533, 402, 533, 402, 369, 378, 402, 402, 338, 533, 533, 533, 533, 533, 533, 533, 533, + 533, 407, 533, 533, 519, 409, 497, 440, 496, 423, 520, 521, 404, 407, 414, 383, 413, 430, 429, 430, 428, 533, + 416, 402, 533, 533, 402, 402, 402, 402, 422, 447, 402, 402, 533, 533, 510, 402, 392, 416, 416, 533, 416, 463, + 453, 463, 463, 533, 453, 396, 533, 416, 533, 416, 380, 533, 453, 402, 402, 416, 398, 416, 420, 453, 426, 507, + 431, 419, 433, 432, 505, 452, 452, 452, 452, 452, 452, 533, 465, 479, 463, 490, 457, 456, 459, 461, 365, 366, + 373, 375, 371, 370, 362, 367, 376, 463, 488, 489, 364, 377, 491, 533, 533, 391, 533, 389, 533, 460, 458, 390, + 387, 388, 381, 382, 385, 386, 361, 533, 533, 379, 355, 508, 447, 397, 393, 499, 399, 500, 511, 422, 463, 485, + 463, 504, 504, 463, 504, 440, 436, 440, 464, 440, 440, 430, 430, 430, 533, 533, 533, 436, 533, 440, 533, 436, + 533, 533, 448, 533, 410, 533, 533, 533, 533, 479, 533, 533, 533, 438, 436, 533, 533, 533, 509, 533, 346, 430, + 533, 533, 443, 442, 533, 533, 533, 339, 494, 415, 471, 478, 472, 411, 384, 403, 479, 470, 506, 442, 493, 484, + 473, 469, 455, 395, 501, 502, 503, 483, 401, 481, 482, 434, 435, 462, 466, 467, 418, 417, 437, 439, 441, 372, + 400, 348, 347, 349, 345, 344, 340, 342, 343, 350, 351, 357, 358, 359, 356, 354, 352, 353, 468, 443, 394, 522, + 523, 486, 530, 480, 495, 529, 524, 527, 515, 517, 516, 525, 532, 526, 528, 531, 487, 454, 449, 476, 474, 446, + 425, 444, 445, 424, 477, 512, 450, 451, 475, 427, 421, 513, 514, 492,); - const YYNOCODE = 105; + const YYNOCODE = 106; const YYSTACKDEPTH = 500; - const YYNSTATE = 337; + const YYNSTATE = 338; - const YYNRULE = 194; + const YYNRULE = 195; - const YYERRORSYMBOL = 60; + const YYERRORSYMBOL = 61; const YYERRSYMDT = 'yy0'; @@ -746,7 +732,7 @@ class Smarty_Internal_Templateparser public $yyerrcnt; /* Shifts left before out of the error */ public $yystack = array(); /* The parser's stack */ - public $yyTokenName = array('$', 'VERT', 'COLON', 'PHP', 'TEXT', 'STRIPON', 'STRIPOFF', 'BLOCKSOURCE', + public $yyTokenName = array('$', 'VERT', 'COLON', 'PHP', 'NOCACHE', 'TEXT', 'STRIPON', 'STRIPOFF', 'BLOCKSOURCE', 'LITERALSTART', 'LITERALEND', 'LITERAL', 'RDEL', 'SIMPELOUTPUT', 'LDEL', 'DOLLARID', 'EQUAL', 'SIMPLETAG', 'ID', 'PTR', 'LDELIF', 'LDELFOR', 'SEMICOLON', 'INCDEC', 'TO', 'STEP', 'LDELFOREACH', 'SPACE', 'AS', 'APTR', 'LDELSETFILTER', 'SMARTYBLOCKCHILDPARENT', 'CLOSETAG', 'LDELSLASH', 'ATTR', 'INTEGER', 'COMMA', 'OPENP', @@ -761,14 +747,15 @@ class Smarty_Internal_Templateparser public static $yyRuleName = array('start ::= template', 'template ::= template_element', 'template ::= template template_element', 'template ::=', 'template_element ::= smartytag', - 'template_element ::= literal', 'template_element ::= PHP', 'template_element ::= text_content', - 'text_content ::= TEXT', 'text_content ::= text_content TEXT', 'template_element ::= STRIPON', - 'template_element ::= STRIPOFF', 'template_element ::= BLOCKSOURCE', 'literal ::= LITERALSTART LITERALEND', - 'literal ::= LITERALSTART literal_elements LITERALEND', 'literal_elements ::= literal_elements literal_element', - 'literal_elements ::=', 'literal_element ::= literal', 'literal_element ::= LITERAL', 'smartytag ::= tag RDEL', - 'smartytag ::= SIMPELOUTPUT', 'tag ::= LDEL variable', 'tag ::= LDEL variable modifierlist attributes', - 'tag ::= LDEL variable attributes', 'tag ::= LDEL value', 'tag ::= LDEL value modifierlist attributes', - 'tag ::= LDEL value attributes', 'tag ::= LDEL expr modifierlist attributes', 'tag ::= LDEL expr attributes', + 'template_element ::= literal', 'template_element ::= PHP', 'template_element ::= NOCACHE', + 'template_element ::= text_content', 'text_content ::= TEXT', 'text_content ::= text_content TEXT', + 'template_element ::= STRIPON', 'template_element ::= STRIPOFF', 'template_element ::= BLOCKSOURCE', + 'literal ::= LITERALSTART LITERALEND', 'literal ::= LITERALSTART literal_elements LITERALEND', + 'literal_elements ::= literal_elements literal_element', 'literal_elements ::=', 'literal_element ::= literal', + 'literal_element ::= LITERAL', 'smartytag ::= tag RDEL', 'smartytag ::= SIMPELOUTPUT', 'tag ::= LDEL variable', + 'tag ::= LDEL variable modifierlist attributes', 'tag ::= LDEL variable attributes', 'tag ::= LDEL value', + 'tag ::= LDEL value modifierlist attributes', 'tag ::= LDEL value attributes', + 'tag ::= LDEL expr modifierlist attributes', 'tag ::= LDEL expr attributes', 'tag ::= LDEL DOLLARID EQUAL value', 'tag ::= LDEL DOLLARID EQUAL expr', 'tag ::= LDEL DOLLARID EQUAL expr attributes', 'tag ::= LDEL varindexed EQUAL expr attributes', 'smartytag ::= SIMPLETAG', 'tag ::= LDEL ID attributes', 'tag ::= LDEL ID', @@ -1132,84 +1119,84 @@ class Smarty_Internal_Templateparser } } - public static $yyRuleInfo = array(array(0 => 61, 1 => 1), array(0 => 62, 1 => 1), array(0 => 62, 1 => 2), - array(0 => 62, 1 => 0), array(0 => 63, 1 => 1), array(0 => 63, 1 => 1), array(0 => 63, 1 => 1), - array(0 => 63, 1 => 1), array(0 => 66, 1 => 1), array(0 => 66, 1 => 2), array(0 => 63, 1 => 1), - array(0 => 63, 1 => 1), array(0 => 63, 1 => 1), array(0 => 65, 1 => 2), array(0 => 65, 1 => 3), - array(0 => 67, 1 => 2), array(0 => 67, 1 => 0), array(0 => 68, 1 => 1), array(0 => 68, 1 => 1), - array(0 => 64, 1 => 2), array(0 => 64, 1 => 1), array(0 => 69, 1 => 2), array(0 => 69, 1 => 4), - array(0 => 69, 1 => 3), array(0 => 69, 1 => 2), array(0 => 69, 1 => 4), array(0 => 69, 1 => 3), - array(0 => 69, 1 => 4), array(0 => 69, 1 => 3), array(0 => 69, 1 => 4), array(0 => 69, 1 => 4), - array(0 => 69, 1 => 5), array(0 => 69, 1 => 5), array(0 => 64, 1 => 1), array(0 => 69, 1 => 3), - array(0 => 69, 1 => 2), array(0 => 69, 1 => 4), array(0 => 69, 1 => 5), array(0 => 69, 1 => 6), - array(0 => 69, 1 => 2), array(0 => 69, 1 => 3), array(0 => 69, 1 => 2), array(0 => 69, 1 => 3), - array(0 => 69, 1 => 8), array(0 => 78, 1 => 2), array(0 => 78, 1 => 1), array(0 => 69, 1 => 5), - array(0 => 69, 1 => 7), array(0 => 69, 1 => 2), array(0 => 69, 1 => 6), array(0 => 69, 1 => 8), - array(0 => 69, 1 => 6), array(0 => 69, 1 => 8), array(0 => 69, 1 => 3), array(0 => 69, 1 => 4), - array(0 => 69, 1 => 2), array(0 => 64, 1 => 1), array(0 => 69, 1 => 2), array(0 => 69, 1 => 3), - array(0 => 69, 1 => 4), array(0 => 69, 1 => 5), array(0 => 72, 1 => 2), array(0 => 72, 1 => 1), - array(0 => 72, 1 => 0), array(0 => 81, 1 => 4), array(0 => 81, 1 => 2), array(0 => 81, 1 => 2), - array(0 => 81, 1 => 2), array(0 => 81, 1 => 2), array(0 => 81, 1 => 2), array(0 => 81, 1 => 4), - array(0 => 77, 1 => 1), array(0 => 77, 1 => 3), array(0 => 76, 1 => 3), array(0 => 76, 1 => 3), - array(0 => 76, 1 => 3), array(0 => 76, 1 => 3), array(0 => 74, 1 => 1), array(0 => 74, 1 => 1), - array(0 => 74, 1 => 3), array(0 => 74, 1 => 3), array(0 => 74, 1 => 3), array(0 => 74, 1 => 1), - array(0 => 74, 1 => 2), array(0 => 74, 1 => 3), array(0 => 74, 1 => 2), array(0 => 74, 1 => 3), - array(0 => 74, 1 => 3), array(0 => 74, 1 => 3), array(0 => 82, 1 => 7), array(0 => 82, 1 => 7), - array(0 => 73, 1 => 1), array(0 => 73, 1 => 2), array(0 => 73, 1 => 2), array(0 => 73, 1 => 2), - array(0 => 73, 1 => 2), array(0 => 73, 1 => 1), array(0 => 73, 1 => 1), array(0 => 73, 1 => 3), - array(0 => 73, 1 => 2), array(0 => 73, 1 => 2), array(0 => 73, 1 => 1), array(0 => 73, 1 => 1), - array(0 => 73, 1 => 3), array(0 => 73, 1 => 1), array(0 => 73, 1 => 1), array(0 => 73, 1 => 3), - array(0 => 73, 1 => 1), array(0 => 73, 1 => 2), array(0 => 73, 1 => 1), array(0 => 73, 1 => 3), - array(0 => 86, 1 => 1), array(0 => 86, 1 => 1), array(0 => 70, 1 => 1), array(0 => 70, 1 => 1), - array(0 => 70, 1 => 3), array(0 => 70, 1 => 1), array(0 => 70, 1 => 3), array(0 => 70, 1 => 4), - array(0 => 70, 1 => 3), array(0 => 70, 1 => 4), array(0 => 75, 1 => 2), array(0 => 75, 1 => 2), - array(0 => 91, 1 => 2), array(0 => 91, 1 => 0), array(0 => 92, 1 => 2), array(0 => 92, 1 => 2), - array(0 => 92, 1 => 4), array(0 => 92, 1 => 2), array(0 => 92, 1 => 2), array(0 => 92, 1 => 4), - array(0 => 92, 1 => 3), array(0 => 92, 1 => 5), array(0 => 92, 1 => 3), array(0 => 92, 1 => 3), - array(0 => 92, 1 => 3), array(0 => 92, 1 => 3), array(0 => 92, 1 => 3), array(0 => 92, 1 => 3), - array(0 => 92, 1 => 2), array(0 => 79, 1 => 1), array(0 => 79, 1 => 1), array(0 => 79, 1 => 2), - array(0 => 93, 1 => 1), array(0 => 93, 1 => 1), array(0 => 93, 1 => 3), array(0 => 90, 1 => 2), - array(0 => 94, 1 => 1), array(0 => 94, 1 => 2), array(0 => 95, 1 => 3), array(0 => 95, 1 => 3), - array(0 => 95, 1 => 5), array(0 => 95, 1 => 6), array(0 => 95, 1 => 2), array(0 => 87, 1 => 4), - array(0 => 96, 1 => 4), array(0 => 96, 1 => 4), array(0 => 97, 1 => 3), array(0 => 97, 1 => 1), - array(0 => 97, 1 => 0), array(0 => 71, 1 => 3), array(0 => 71, 1 => 2), array(0 => 98, 1 => 3), - array(0 => 98, 1 => 2), array(0 => 80, 1 => 2), array(0 => 80, 1 => 0), array(0 => 99, 1 => 2), - array(0 => 99, 1 => 2), array(0 => 89, 1 => 1), array(0 => 89, 1 => 2), array(0 => 89, 1 => 1), - array(0 => 89, 1 => 2), array(0 => 89, 1 => 3), array(0 => 84, 1 => 1), array(0 => 84, 1 => 1), - array(0 => 85, 1 => 1), array(0 => 83, 1 => 3), array(0 => 100, 1 => 1), array(0 => 100, 1 => 3), - array(0 => 100, 1 => 0), array(0 => 101, 1 => 3), array(0 => 101, 1 => 3), array(0 => 101, 1 => 1), - array(0 => 88, 1 => 2), array(0 => 88, 1 => 3), array(0 => 102, 1 => 2), array(0 => 102, 1 => 1), - array(0 => 103, 1 => 3), array(0 => 103, 1 => 3), array(0 => 103, 1 => 1), array(0 => 103, 1 => 3), - array(0 => 103, 1 => 3), array(0 => 103, 1 => 1), array(0 => 103, 1 => 1),); + public static $yyRuleInfo = array(array(0 => 62, 1 => 1), array(0 => 63, 1 => 1), array(0 => 63, 1 => 2), + array(0 => 63, 1 => 0), array(0 => 64, 1 => 1), array(0 => 64, 1 => 1), array(0 => 64, 1 => 1), + array(0 => 64, 1 => 1), array(0 => 64, 1 => 1), array(0 => 67, 1 => 1), array(0 => 67, 1 => 2), + array(0 => 64, 1 => 1), array(0 => 64, 1 => 1), array(0 => 64, 1 => 1), array(0 => 66, 1 => 2), + array(0 => 66, 1 => 3), array(0 => 68, 1 => 2), array(0 => 68, 1 => 0), array(0 => 69, 1 => 1), + array(0 => 69, 1 => 1), array(0 => 65, 1 => 2), array(0 => 65, 1 => 1), array(0 => 70, 1 => 2), + array(0 => 70, 1 => 4), array(0 => 70, 1 => 3), array(0 => 70, 1 => 2), array(0 => 70, 1 => 4), + array(0 => 70, 1 => 3), array(0 => 70, 1 => 4), array(0 => 70, 1 => 3), array(0 => 70, 1 => 4), + array(0 => 70, 1 => 4), array(0 => 70, 1 => 5), array(0 => 70, 1 => 5), array(0 => 65, 1 => 1), + array(0 => 70, 1 => 3), array(0 => 70, 1 => 2), array(0 => 70, 1 => 4), array(0 => 70, 1 => 5), + array(0 => 70, 1 => 6), array(0 => 70, 1 => 2), array(0 => 70, 1 => 3), array(0 => 70, 1 => 2), + array(0 => 70, 1 => 3), array(0 => 70, 1 => 8), array(0 => 79, 1 => 2), array(0 => 79, 1 => 1), + array(0 => 70, 1 => 5), array(0 => 70, 1 => 7), array(0 => 70, 1 => 2), array(0 => 70, 1 => 6), + array(0 => 70, 1 => 8), array(0 => 70, 1 => 6), array(0 => 70, 1 => 8), array(0 => 70, 1 => 3), + array(0 => 70, 1 => 4), array(0 => 70, 1 => 2), array(0 => 65, 1 => 1), array(0 => 70, 1 => 2), + array(0 => 70, 1 => 3), array(0 => 70, 1 => 4), array(0 => 70, 1 => 5), array(0 => 73, 1 => 2), + array(0 => 73, 1 => 1), array(0 => 73, 1 => 0), array(0 => 82, 1 => 4), array(0 => 82, 1 => 2), + array(0 => 82, 1 => 2), array(0 => 82, 1 => 2), array(0 => 82, 1 => 2), array(0 => 82, 1 => 2), + array(0 => 82, 1 => 4), array(0 => 78, 1 => 1), array(0 => 78, 1 => 3), array(0 => 77, 1 => 3), + array(0 => 77, 1 => 3), array(0 => 77, 1 => 3), array(0 => 77, 1 => 3), array(0 => 75, 1 => 1), + array(0 => 75, 1 => 1), array(0 => 75, 1 => 3), array(0 => 75, 1 => 3), array(0 => 75, 1 => 3), + array(0 => 75, 1 => 1), array(0 => 75, 1 => 2), array(0 => 75, 1 => 3), array(0 => 75, 1 => 2), + array(0 => 75, 1 => 3), array(0 => 75, 1 => 3), array(0 => 75, 1 => 3), array(0 => 83, 1 => 7), + array(0 => 83, 1 => 7), array(0 => 74, 1 => 1), array(0 => 74, 1 => 2), array(0 => 74, 1 => 2), + array(0 => 74, 1 => 2), array(0 => 74, 1 => 2), array(0 => 74, 1 => 1), array(0 => 74, 1 => 1), + array(0 => 74, 1 => 3), array(0 => 74, 1 => 2), array(0 => 74, 1 => 2), array(0 => 74, 1 => 1), + array(0 => 74, 1 => 1), array(0 => 74, 1 => 3), array(0 => 74, 1 => 1), array(0 => 74, 1 => 1), + array(0 => 74, 1 => 3), array(0 => 74, 1 => 1), array(0 => 74, 1 => 2), array(0 => 74, 1 => 1), + array(0 => 74, 1 => 3), array(0 => 87, 1 => 1), array(0 => 87, 1 => 1), array(0 => 71, 1 => 1), + array(0 => 71, 1 => 1), array(0 => 71, 1 => 3), array(0 => 71, 1 => 1), array(0 => 71, 1 => 3), + array(0 => 71, 1 => 4), array(0 => 71, 1 => 3), array(0 => 71, 1 => 4), array(0 => 76, 1 => 2), + array(0 => 76, 1 => 2), array(0 => 92, 1 => 2), array(0 => 92, 1 => 0), array(0 => 93, 1 => 2), + array(0 => 93, 1 => 2), array(0 => 93, 1 => 4), array(0 => 93, 1 => 2), array(0 => 93, 1 => 2), + array(0 => 93, 1 => 4), array(0 => 93, 1 => 3), array(0 => 93, 1 => 5), array(0 => 93, 1 => 3), + array(0 => 93, 1 => 3), array(0 => 93, 1 => 3), array(0 => 93, 1 => 3), array(0 => 93, 1 => 3), + array(0 => 93, 1 => 3), array(0 => 93, 1 => 2), array(0 => 80, 1 => 1), array(0 => 80, 1 => 1), + array(0 => 80, 1 => 2), array(0 => 94, 1 => 1), array(0 => 94, 1 => 1), array(0 => 94, 1 => 3), + array(0 => 91, 1 => 2), array(0 => 95, 1 => 1), array(0 => 95, 1 => 2), array(0 => 96, 1 => 3), + array(0 => 96, 1 => 3), array(0 => 96, 1 => 5), array(0 => 96, 1 => 6), array(0 => 96, 1 => 2), + array(0 => 88, 1 => 4), array(0 => 97, 1 => 4), array(0 => 97, 1 => 4), array(0 => 98, 1 => 3), + array(0 => 98, 1 => 1), array(0 => 98, 1 => 0), array(0 => 72, 1 => 3), array(0 => 72, 1 => 2), + array(0 => 99, 1 => 3), array(0 => 99, 1 => 2), array(0 => 81, 1 => 2), array(0 => 81, 1 => 0), + array(0 => 100, 1 => 2), array(0 => 100, 1 => 2), array(0 => 90, 1 => 1), array(0 => 90, 1 => 2), + array(0 => 90, 1 => 1), array(0 => 90, 1 => 2), array(0 => 90, 1 => 3), array(0 => 85, 1 => 1), + array(0 => 85, 1 => 1), array(0 => 86, 1 => 1), array(0 => 84, 1 => 3), array(0 => 101, 1 => 1), + array(0 => 101, 1 => 3), array(0 => 101, 1 => 0), array(0 => 102, 1 => 3), array(0 => 102, 1 => 3), + array(0 => 102, 1 => 1), array(0 => 89, 1 => 2), array(0 => 89, 1 => 3), array(0 => 103, 1 => 2), + array(0 => 103, 1 => 1), array(0 => 104, 1 => 3), array(0 => 104, 1 => 3), array(0 => 104, 1 => 1), + array(0 => 104, 1 => 3), array(0 => 104, 1 => 3), array(0 => 104, 1 => 1), array(0 => 104, 1 => 1),); - public static $yyReduceMap = array(0 => 0, 1 => 1, 2 => 2, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 17 => 8, - 18 => 8, 45 => 8, 68 => 8, 69 => 8, 77 => 8, 78 => 8, 82 => 8, 91 => 8, 96 => 8, - 97 => 8, 102 => 8, 104 => 8, 105 => 8, 109 => 8, 111 => 8, 112 => 8, 116 => 8, - 177 => 8, 182 => 8, 9 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 16 => 13, - 14 => 14, 76 => 14, 15 => 15, 92 => 15, 94 => 15, 95 => 15, 123 => 15, 19 => 19, - 20 => 20, 21 => 21, 24 => 21, 22 => 22, 25 => 22, 23 => 23, 26 => 23, 28 => 23, - 27 => 27, 29 => 29, 30 => 29, 31 => 31, 32 => 32, 33 => 33, 34 => 34, 35 => 35, - 36 => 36, 37 => 37, 38 => 38, 39 => 39, 40 => 40, 42 => 40, 41 => 41, 43 => 43, - 44 => 44, 46 => 46, 47 => 47, 48 => 48, 49 => 49, 51 => 49, 50 => 50, 52 => 50, - 53 => 53, 54 => 54, 55 => 55, 56 => 56, 57 => 57, 58 => 58, 59 => 59, 60 => 60, - 61 => 61, 62 => 62, 71 => 62, 158 => 62, 162 => 62, 166 => 62, 167 => 62, - 63 => 63, 159 => 63, 165 => 63, 64 => 64, 65 => 65, 66 => 65, 67 => 67, - 143 => 67, 70 => 70, 72 => 72, 73 => 73, 74 => 73, 75 => 75, 79 => 79, 80 => 80, - 81 => 80, 83 => 83, 108 => 83, 84 => 84, 85 => 85, 86 => 86, 87 => 87, 88 => 88, - 89 => 89, 90 => 90, 93 => 93, 98 => 98, 99 => 99, 100 => 100, 101 => 101, - 103 => 103, 106 => 106, 107 => 107, 110 => 110, 113 => 113, 114 => 114, - 115 => 115, 117 => 117, 118 => 118, 119 => 119, 120 => 120, 121 => 121, - 122 => 122, 124 => 124, 179 => 124, 125 => 125, 126 => 126, 127 => 127, - 128 => 128, 129 => 129, 130 => 130, 138 => 130, 131 => 131, 132 => 132, - 133 => 133, 134 => 133, 136 => 133, 137 => 133, 135 => 135, 139 => 139, - 140 => 140, 141 => 141, 183 => 141, 142 => 142, 144 => 144, 145 => 145, + public static $yyReduceMap = array(0 => 0, 1 => 1, 2 => 2, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, + 18 => 9, 19 => 9, 46 => 9, 69 => 9, 70 => 9, 78 => 9, 79 => 9, 83 => 9, 92 => 9, + 97 => 9, 98 => 9, 103 => 9, 105 => 9, 106 => 9, 110 => 9, 112 => 9, 113 => 9, + 117 => 9, 178 => 9, 183 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 14 => 14, + 17 => 14, 15 => 15, 77 => 15, 16 => 16, 93 => 16, 95 => 16, 96 => 16, 124 => 16, + 20 => 20, 21 => 21, 22 => 22, 25 => 22, 23 => 23, 26 => 23, 24 => 24, 27 => 24, + 29 => 24, 28 => 28, 30 => 30, 31 => 30, 32 => 32, 33 => 33, 34 => 34, 35 => 35, + 36 => 36, 37 => 37, 38 => 38, 39 => 39, 40 => 40, 41 => 41, 43 => 41, 42 => 42, + 44 => 44, 45 => 45, 47 => 47, 48 => 48, 49 => 49, 50 => 50, 52 => 50, 51 => 51, + 53 => 51, 54 => 54, 55 => 55, 56 => 56, 57 => 57, 58 => 58, 59 => 59, 60 => 60, + 61 => 61, 62 => 62, 63 => 63, 72 => 63, 159 => 63, 163 => 63, 167 => 63, + 168 => 63, 64 => 64, 160 => 64, 166 => 64, 65 => 65, 66 => 66, 67 => 66, + 68 => 68, 144 => 68, 71 => 71, 73 => 73, 74 => 74, 75 => 74, 76 => 76, 80 => 80, + 81 => 81, 82 => 81, 84 => 84, 109 => 84, 85 => 85, 86 => 86, 87 => 87, 88 => 88, + 89 => 89, 90 => 90, 91 => 91, 94 => 94, 99 => 99, 100 => 100, 101 => 101, + 102 => 102, 104 => 104, 107 => 107, 108 => 108, 111 => 111, 114 => 114, + 115 => 115, 116 => 116, 118 => 118, 119 => 119, 120 => 120, 121 => 121, + 122 => 122, 123 => 123, 125 => 125, 180 => 125, 126 => 126, 127 => 127, + 128 => 128, 129 => 129, 130 => 130, 131 => 131, 139 => 131, 132 => 132, + 133 => 133, 134 => 134, 135 => 134, 137 => 134, 138 => 134, 136 => 136, + 140 => 140, 141 => 141, 142 => 142, 184 => 142, 143 => 143, 145 => 145, 146 => 146, 147 => 147, 148 => 148, 149 => 149, 150 => 150, 151 => 151, 152 => 152, 153 => 153, 154 => 154, 155 => 155, 156 => 156, 157 => 157, - 160 => 160, 161 => 161, 163 => 163, 164 => 164, 168 => 168, 169 => 169, + 158 => 158, 161 => 161, 162 => 162, 164 => 164, 165 => 165, 169 => 169, 170 => 170, 171 => 171, 172 => 172, 173 => 173, 174 => 174, 175 => 175, - 176 => 176, 178 => 178, 180 => 180, 181 => 181, 184 => 184, 185 => 185, - 186 => 186, 187 => 187, 188 => 187, 190 => 187, 189 => 189, 191 => 191, - 192 => 192, 193 => 193,); + 176 => 176, 177 => 177, 179 => 179, 181 => 181, 182 => 182, 185 => 185, + 186 => 186, 187 => 187, 188 => 188, 189 => 188, 191 => 188, 190 => 190, + 192 => 192, 193 => 193, 194 => 194,); #line 201 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r0() @@ -1271,36 +1258,45 @@ class Smarty_Internal_Templateparser #line 256 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r7() + { + $this->compiler->tag_nocache = true; + $save = $this->template->has_nocache_code; + $this->_retvalue = new Smarty_Internal_ParseTree_Tag($this, $this->compiler->processNocacheCode("yystack[$this->yyidx + 0]->minor}';?>\n", $this->compiler, true)); + $this->template->has_nocache_code = $save; + } + + #line 263 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r8() { $this->_retvalue = $this->compiler->processText($this->yystack[$this->yyidx + 0]->minor); } - #line 260 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r8() + #line 267 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r9() { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } - #line 264 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r9() + #line 271 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r10() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 269 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r10() + #line 276 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r11() { $this->strip = true; } - #line 273 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r11() + #line 280 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r12() { $this->strip = false; } - #line 277 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r12() + #line 284 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r13() { if ($this->strip) { SMARTY_INTERNAL_COMPILE_BLOCK::blockSource($this->compiler, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor)); @@ -1309,32 +1305,32 @@ class Smarty_Internal_Templateparser } } - #line 286 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r13() + #line 293 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r14() { $this->_retvalue = ''; } - #line 290 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r14() + #line 297 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r15() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; } - #line 294 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r15() + #line 301 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r16() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 310 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r19() + #line 317 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r20() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; } - #line 316 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r20() + #line 323 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r21() { $var = trim(substr($this->yystack[$this->yyidx + 0]->minor, $this->lex->ldel_length, - $this->lex->rdel_length), ' $'); if (preg_match('/^(.*)(\s+nocache)$/', $var, $match)) { @@ -1344,55 +1340,55 @@ class Smarty_Internal_Templateparser } } - #line 326 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r21() + #line 333 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r22() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', array(), array('value' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 330 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r22() + #line 337 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r23() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 2]->minor, 'modifierlist' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 334 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r23() + #line 341 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r24() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 348 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r27() + #line 355 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r28() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 2]->minor, 'modifierlist' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 361 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r29() + #line 368 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r30() { $this->_retvalue = $this->compiler->compileTag('assign', array(array('value' => $this->yystack[$this->yyidx + 0]->minor), array('var' => '\'' . substr($this->yystack[$this->yyidx + - 2]->minor, 1) . '\''))); } - #line 369 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r31() + #line 376 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r32() { $this->_retvalue = $this->compiler->compileTag('assign', array_merge(array(array('value' => $this->yystack[$this->yyidx + - 1]->minor), array('var' => '\'' . substr($this->yystack[$this->yyidx + - 3]->minor, 1) . '\'')), $this->yystack[$this->yyidx + 0]->minor)); } - #line 373 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r32() + #line 380 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r33() { $this->_retvalue = $this->compiler->compileTag('assign', array_merge(array(array('value' => $this->yystack[$this->yyidx + - 1]->minor), array('var' => $this->yystack[$this->yyidx + - 3]->minor['var'])), $this->yystack[$this->yyidx + 0]->minor), array('smarty_internal_index' => $this->yystack[$this->yyidx + - 3]->minor['smarty_internal_index'])); } - #line 378 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r33() + #line 385 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r34() { $tag = trim(substr($this->yystack[$this->yyidx + 0]->minor, $this->lex->ldel_length, - $this->lex->rdel_length)); if ($tag == 'strip') { @@ -1414,8 +1410,8 @@ class Smarty_Internal_Templateparser } } - #line 400 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r34() + #line 407 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r35() { if (defined($this->yystack[$this->yyidx + - 1]->minor)) { if ($this->security) { @@ -1427,8 +1423,8 @@ class Smarty_Internal_Templateparser } } - #line 410 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r35() + #line 417 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r36() { if (defined($this->yystack[$this->yyidx + 0]->minor)) { if ($this->security) { @@ -1440,8 +1436,8 @@ class Smarty_Internal_Templateparser } } - #line 423 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r36() + #line 430 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r37() { if (defined($this->yystack[$this->yyidx + - 2]->minor)) { if ($this->security) { @@ -1456,43 +1452,43 @@ class Smarty_Internal_Templateparser } } - #line 436 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r37() + #line 443 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r38() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 3]->minor, $this->yystack[$this->yyidx + 0]->minor, array('object_method' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 441 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r38() + #line 448 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r39() { $this->_retvalue = '' . $this->compiler->compileTag($this->yystack[$this->yyidx + - 4]->minor, $this->yystack[$this->yyidx + 0]->minor, array('object_method' => $this->yystack[$this->yyidx + - 2]->minor)) . '_retvalue .= $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $this->yystack[$this->yyidx + - 1]->minor, 'value' => 'ob_get_clean()')) . ';?>'; } - #line 447 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r39() + #line 454 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r40() { $tag = trim(substr($this->yystack[$this->yyidx + - 1]->minor, $this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(), array('if condition' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 452 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r40() + #line 459 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r41() { $tag = trim(substr($this->yystack[$this->yyidx + - 2]->minor, $this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, $this->yystack[$this->yyidx + 0]->minor, array('if condition' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 457 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r41() + #line 464 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r42() { $tag = trim(substr($this->yystack[$this->yyidx + - 1]->minor, $this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(), array('if condition' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 468 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r43() + #line 475 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r44() { $this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 6]->minor), array('ifexp' => $this->yystack[$this->yyidx + - 4]->minor), @@ -1500,62 +1496,62 @@ class Smarty_Internal_Templateparser array('step' => $this->yystack[$this->yyidx + - 1]->minor))), 1); } - #line 472 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r44() + #line 479 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r45() { $this->_retvalue = '=' . $this->yystack[$this->yyidx + 0]->minor; } - #line 480 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r46() + #line 487 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r47() { $this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 3]->minor), array('to' => $this->yystack[$this->yyidx + - 1]->minor))), 0); } - #line 484 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r47() + #line 491 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r48() { $this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 5]->minor), array('to' => $this->yystack[$this->yyidx + - 3]->minor), array('step' => $this->yystack[$this->yyidx + - 1]->minor))), 0); } - #line 489 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r48() + #line 496 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r49() { $this->_retvalue = $this->compiler->compileTag('foreach', $this->yystack[$this->yyidx + 0]->minor); } - #line 494 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r49() + #line 501 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r50() { $this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('from' => $this->yystack[$this->yyidx + - 3]->minor), array('item' => $this->yystack[$this->yyidx + - 1]->minor)))); } - #line 498 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r50() + #line 505 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r51() { $this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('from' => $this->yystack[$this->yyidx + - 5]->minor), array('item' => $this->yystack[$this->yyidx + - 1]->minor), array('key' => $this->yystack[$this->yyidx + - 3]->minor)))); } - #line 511 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r53() + #line 518 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r54() { $this->_retvalue = $this->compiler->compileTag('setfilter', array(), array('modifier_list' => array(array_merge(array($this->yystack[$this->yyidx + - 1]->minor), $this->yystack[$this->yyidx + 0]->minor)))); } - #line 515 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r54() + #line 522 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r55() { $this->_retvalue = $this->compiler->compileTag('setfilter', array(), array('modifier_list' => array_merge(array(array_merge(array($this->yystack[$this->yyidx + - 2]->minor), $this->yystack[$this->yyidx + - 1]->minor)), $this->yystack[$this->yyidx + 0]->minor))); } - #line 520 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r55() + #line 527 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r56() { $j = strrpos($this->yystack[$this->yyidx + 0]->minor, '.'); if ($this->yystack[$this->yyidx + 0]->minor[$j + 1] == 'c') { @@ -1567,8 +1563,8 @@ class Smarty_Internal_Templateparser } } - #line 533 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r56() + #line 540 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r57() { $tag = trim(substr($this->yystack[$this->yyidx + 0]->minor, $this->lex->ldel_length, - $this->lex->rdel_length), ' /'); if ($tag == 'strip') { @@ -1579,52 +1575,52 @@ class Smarty_Internal_Templateparser } } - #line 542 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r57() + #line 549 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r58() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor . 'close', array()); } - #line 546 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r58() + #line 553 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r59() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 1]->minor . 'close', array(), array('modifier_list' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 551 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r59() + #line 558 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r60() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 2]->minor . 'close', array(), array('object_method' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 555 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r60() + #line 562 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r61() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 3]->minor . 'close', array(), array('object_method' => $this->yystack[$this->yyidx + - 1]->minor, 'modifier_list' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 563 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r61() + #line 570 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r62() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; $this->_retvalue[] = $this->yystack[$this->yyidx + 0]->minor; } - #line 569 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r62() + #line 576 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r63() { $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } - #line 574 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r63() + #line 581 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r64() { $this->_retvalue = array(); } - #line 579 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r64() + #line 586 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r65() { if (defined($this->yystack[$this->yyidx + 0]->minor)) { if ($this->security) { @@ -1636,132 +1632,132 @@ class Smarty_Internal_Templateparser } } - #line 590 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r65() + #line 597 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r66() { $this->_retvalue = array(trim($this->yystack[$this->yyidx + - 1]->minor, " =\n\r\t") => $this->yystack[$this->yyidx + 0]->minor); } - #line 598 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r67() + #line 605 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r68() { $this->_retvalue = '\'' . $this->yystack[$this->yyidx + 0]->minor . '\''; } - #line 610 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r70() + #line 617 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r71() { $this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => $this->yystack[$this->yyidx + 0]->minor); } - #line 623 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r72() + #line 630 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r73() { $this->yystack[$this->yyidx + - 2]->minor[] = $this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor; } - #line 628 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r73() + #line 635 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r74() { $this->_retvalue = array('var' => '\'' . substr($this->yystack[$this->yyidx + - 2]->minor, 1) . '\'', 'value' => $this->yystack[$this->yyidx + 0]->minor); } - #line 635 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r75() + #line 642 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r76() { $this->_retvalue = array('var' => $this->yystack[$this->yyidx + - 2]->minor, 'value' => $this->yystack[$this->yyidx + 0]->minor); } - #line 659 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r79() + #line 666 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r80() { $this->_retvalue = '$_smarty_tpl->getStreamVariable(\'' . substr($this->yystack[$this->yyidx + - 2]->minor, 1) . '://' . $this->yystack[$this->yyidx + 0]->minor . '\')'; } - #line 664 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r80() + #line 671 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r81() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . trim($this->yystack[$this->yyidx + - 1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } - #line 678 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r83() + #line 685 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r84() { $this->_retvalue = $this->compiler->compileTag('private_modifier', array(), array('value' => $this->yystack[$this->yyidx + - 1]->minor, 'modifierlist' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 684 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r84() + #line 691 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r85() { $this->_retvalue = (isset($this->yystack[$this->yyidx + - 1]->minor['pre']) ? $this->yystack[$this->yyidx + - 1]->minor['pre'] : '') . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor['op'] . $this->yystack[$this->yyidx + 0]->minor . (isset($this->yystack[$this->yyidx + - 1]->minor['pre']) ? ')' : ''); } - #line 687 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r85() + #line 694 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r86() { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 691 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r86() + #line 698 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r87() { $this->_retvalue = 'in_array(' . $this->yystack[$this->yyidx + - 2]->minor . ',' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 695 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r87() + #line 702 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r88() { $this->_retvalue = 'in_array(' . $this->yystack[$this->yyidx + - 2]->minor . ',(array)' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 699 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r88() + #line 706 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r89() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 707 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r89() + #line 714 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r90() { $this->_retvalue = $this->yystack[$this->yyidx + - 5]->minor . ' ? ' . $this->compiler->compileVariable('\'' . substr($this->yystack[$this->yyidx + - 2]->minor, 1) . '\'') . ' : ' . $this->yystack[$this->yyidx + 0]->minor; } - #line 711 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r90() + #line 718 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r91() { $this->_retvalue = $this->yystack[$this->yyidx + - 5]->minor . ' ? ' . $this->yystack[$this->yyidx + - 2]->minor . ' : ' . $this->yystack[$this->yyidx + 0]->minor; } - #line 726 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r93() + #line 733 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r94() { $this->_retvalue = '!' . $this->yystack[$this->yyidx + 0]->minor; } - #line 747 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r98() + #line 754 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r99() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . '.' . $this->yystack[$this->yyidx + 0]->minor; } - #line 751 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r99() + #line 758 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r100() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . '.'; } - #line 755 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r100() + #line 762 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r101() { $this->_retvalue = '.' . $this->yystack[$this->yyidx + 0]->minor; } - #line 760 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r101() + #line 767 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r102() { if (defined($this->yystack[$this->yyidx + 0]->minor)) { if ($this->security) { @@ -1773,14 +1769,14 @@ class Smarty_Internal_Templateparser } } - #line 777 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r103() + #line 784 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r104() { $this->_retvalue = "(" . $this->yystack[$this->yyidx + - 1]->minor . ")"; } - #line 792 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r106() + #line 799 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r107() { self::$prefix_number ++; if ($this->yystack[$this->yyidx + - 2]->minor['var'] == '\'smarty\'') { @@ -1791,8 +1787,8 @@ class Smarty_Internal_Templateparser $this->_retvalue = '$_tmp' . self::$prefix_number . '::' . $this->yystack[$this->yyidx + 0]->minor[0] . $this->yystack[$this->yyidx + 0]->minor[1]; } - #line 803 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r107() + #line 810 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r108() { self::$prefix_number ++; $tmp = $this->compiler->appendCode('', $this->yystack[$this->yyidx + 0]->minor); @@ -1800,8 +1796,8 @@ class Smarty_Internal_Templateparser $this->_retvalue = '$_tmp' . self::$prefix_number; } - #line 820 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r110() + #line 827 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r111() { if (!in_array(strtolower($this->yystack[$this->yyidx + - 2]->minor), array('self', 'parent')) && (!$this->security || $this->security->isTrustedStaticClassAccess($this->yystack[$this->yyidx + - 2]->minor, $this->yystack[$this->yyidx + 0]->minor, $this->compiler)) @@ -1816,14 +1812,14 @@ class Smarty_Internal_Templateparser } } - #line 854 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r113() + #line 861 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r114() { $this->_retvalue = $this->compiler->compileVariable('\'' . substr($this->yystack[$this->yyidx + 0]->minor, 1) . '\''); } - #line 857 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r114() + #line 864 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r115() { if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $smarty_var = $this->compiler->compileTag('private_special_variable', array(), $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); @@ -1836,76 +1832,76 @@ class Smarty_Internal_Templateparser } } - #line 870 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r115() + #line 877 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r116() { $this->_retvalue = '$_smarty_tpl->tpl_vars[' . $this->yystack[$this->yyidx + - 2]->minor . ']->' . $this->yystack[$this->yyidx + 0]->minor; } - #line 880 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r117() + #line 887 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r118() { $this->_retvalue = '$_smarty_tpl->getConfigVariable( \'' . $this->yystack[$this->yyidx + - 1]->minor . '\')'; } - #line 884 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r118() + #line 891 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r119() { $this->_retvalue = '(is_array($tmp = $_smarty_tpl->getConfigVariable( \'' . $this->yystack[$this->yyidx + - 2]->minor . '\')) ? $tmp' . $this->yystack[$this->yyidx + 0]->minor . ' :null)'; } - #line 888 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r119() + #line 895 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r120() { $this->_retvalue = '$_smarty_tpl->getConfigVariable( ' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 892 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r120() + #line 899 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r121() { $this->_retvalue = '(is_array($tmp = $_smarty_tpl->getConfigVariable( ' . $this->yystack[$this->yyidx + - 2]->minor . ')) ? $tmp' . $this->yystack[$this->yyidx + 0]->minor . ' : null)'; } - #line 896 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r121() + #line 903 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r122() { $this->_retvalue = array('var' => '\'' . substr($this->yystack[$this->yyidx + - 1]->minor, 1) . '\'', 'smarty_internal_index' => $this->yystack[$this->yyidx + 0]->minor); } - #line 899 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r122() + #line 906 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r123() { $this->_retvalue = array('var' => $this->yystack[$this->yyidx + - 1]->minor, 'smarty_internal_index' => $this->yystack[$this->yyidx + 0]->minor); } - #line 912 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r124() + #line 919 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r125() { return; } - #line 918 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r125() + #line 925 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r126() { $this->_retvalue = '[' . $this->compiler->compileVariable('\'' . substr($this->yystack[$this->yyidx + 0]->minor, 1) . '\'') . ']'; } - #line 921 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r126() + #line 928 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r127() { $this->_retvalue = '[' . $this->compiler->compileVariable($this->yystack[$this->yyidx + 0]->minor) . ']'; } - #line 925 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r127() + #line 932 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r128() { $this->_retvalue = '[' . $this->compiler->compileVariable($this->yystack[$this->yyidx + - 2]->minor) . '->' . $this->yystack[$this->yyidx + 0]->minor . ']'; } - #line 929 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r128() + #line 936 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r129() { if (defined($this->yystack[$this->yyidx + 0]->minor)) { if ($this->security) { @@ -1917,81 +1913,81 @@ class Smarty_Internal_Templateparser } } - #line 940 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r129() + #line 947 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r130() { $this->_retvalue = '[' . $this->yystack[$this->yyidx + 0]->minor . ']'; } - #line 945 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r130() + #line 952 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r131() { $this->_retvalue = '[' . $this->yystack[$this->yyidx + - 1]->minor . ']'; } - #line 950 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r131() + #line 957 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r132() { $this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' . $this->yystack[$this->yyidx + - 1]->minor . '\'][\'index\']') . ']'; } - #line 954 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r132() + #line 961 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r133() { $this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' . $this->yystack[$this->yyidx + - 3]->minor . '\'][\'' . $this->yystack[$this->yyidx + - 1]->minor . '\']') . ']'; } - #line 957 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r133() + #line 964 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r134() { $this->_retvalue = '[' . $this->yystack[$this->yyidx + - 1]->minor . ']'; } - #line 963 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r135() + #line 970 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r136() { $this->_retvalue = '[' . $this->compiler->compileVariable('\'' . substr($this->yystack[$this->yyidx + - 1]->minor, 1) . '\'') . ']';; } - #line 979 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r139() + #line 986 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r140() { $this->_retvalue = '[]'; } - #line 989 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r140() + #line 996 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r141() { $this->_retvalue = '\'' . substr($this->yystack[$this->yyidx + 0]->minor, 1) . '\''; } - #line 993 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r141() + #line 1000 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r142() { $this->_retvalue = "''"; } - #line 998 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r142() + #line 1005 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r143() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . '.' . $this->yystack[$this->yyidx + 0]->minor; } - #line 1006 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r144() + #line 1013 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r145() { $var = trim(substr($this->yystack[$this->yyidx + 0]->minor, $this->lex->ldel_length, - $this->lex->rdel_length), ' $'); $this->_retvalue = $this->compiler->compileVariable('\'' . $var . '\''); } - #line 1012 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r145() + #line 1019 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r146() { $this->_retvalue = '(' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 1019 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r146() + #line 1026 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r147() { if ($this->yystack[$this->yyidx + - 1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable', array(), $this->yystack[$this->yyidx + - 1]->minor['smarty_internal_index']) . $this->yystack[$this->yyidx + 0]->minor; @@ -2000,34 +1996,25 @@ class Smarty_Internal_Templateparser } } - #line 1028 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r147() + #line 1035 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r148() { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } - #line 1033 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r148() - { - $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; - } - - #line 1038 "../smarty/lexer/smarty_internal_templateparser.y" + #line 1040 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r149() { - if ($this->security && substr($this->yystack[$this->yyidx + - 1]->minor, 0, 1) == '_') { - $this->compiler->trigger_template_error(self::Err1); - } - $this->_retvalue = '->' . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; + $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } #line 1045 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r150() { - if ($this->security) { - $this->compiler->trigger_template_error(self::Err2); + if ($this->security && substr($this->yystack[$this->yyidx + - 1]->minor, 0, 1) == '_') { + $this->compiler->trigger_template_error(self::Err1); } - $this->_retvalue = '->{' . $this->compiler->compileVariable($this->yystack[$this->yyidx + - 1]->minor) . $this->yystack[$this->yyidx + 0]->minor . '}'; + $this->_retvalue = '->' . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } #line 1052 "../smarty/lexer/smarty_internal_templateparser.y" @@ -2036,11 +2023,20 @@ class Smarty_Internal_Templateparser if ($this->security) { $this->compiler->trigger_template_error(self::Err2); } - $this->_retvalue = '->{' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + 0]->minor . '}'; + $this->_retvalue = '->{' . $this->compiler->compileVariable($this->yystack[$this->yyidx + - 1]->minor) . $this->yystack[$this->yyidx + 0]->minor . '}'; } #line 1059 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r152() + { + if ($this->security) { + $this->compiler->trigger_template_error(self::Err2); + } + $this->_retvalue = '->{' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + 0]->minor . '}'; + } + + #line 1066 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r153() { if ($this->security) { $this->compiler->trigger_template_error(self::Err2); @@ -2048,14 +2044,14 @@ class Smarty_Internal_Templateparser $this->_retvalue = '->{\'' . $this->yystack[$this->yyidx + - 4]->minor . '\'.' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + 0]->minor . '}'; } - #line 1067 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r153() + #line 1074 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r154() { $this->_retvalue = '->' . $this->yystack[$this->yyidx + 0]->minor; } - #line 1075 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r154() + #line 1082 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r155() { if (!$this->security || $this->security->isTrustedPhpFunction($this->yystack[$this->yyidx + - 3]->minor, $this->compiler)) { if (strcasecmp($this->yystack[$this->yyidx + - 3]->minor, 'isset') === 0 || strcasecmp($this->yystack[$this->yyidx + - 3]->minor, 'empty') === 0 || strcasecmp($this->yystack[$this->yyidx + - 3]->minor, 'array') === 0 || is_callable($this->yystack[$this->yyidx + - 3]->minor)) { @@ -2091,8 +2087,8 @@ class Smarty_Internal_Templateparser } } - #line 1114 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r155() + #line 1121 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r156() { if ($this->security && substr($this->yystack[$this->yyidx + - 3]->minor, 0, 1) == '_') { $this->compiler->trigger_template_error(self::Err1); @@ -2100,8 +2096,8 @@ class Smarty_Internal_Templateparser $this->_retvalue = $this->yystack[$this->yyidx + - 3]->minor . "(" . implode(',', $this->yystack[$this->yyidx + - 1]->minor) . ")"; } - #line 1121 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r156() + #line 1128 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r157() { if ($this->security) { $this->compiler->trigger_template_error(self::Err2); @@ -2111,77 +2107,77 @@ class Smarty_Internal_Templateparser $this->_retvalue = '$_tmp' . self::$prefix_number . '(' . implode(',', $this->yystack[$this->yyidx + - 1]->minor) . ')'; } - #line 1132 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r157() + #line 1139 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r158() { $this->_retvalue = array_merge($this->yystack[$this->yyidx + - 2]->minor, array($this->yystack[$this->yyidx + 0]->minor)); } - #line 1149 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r160() + #line 1156 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r161() { $this->_retvalue = array_merge($this->yystack[$this->yyidx + - 2]->minor, array(array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor))); } - #line 1153 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r161() + #line 1160 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r162() { $this->_retvalue = array(array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor)); } - #line 1161 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r163() + #line 1168 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r164() { $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } - #line 1169 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r164() + #line 1176 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r165() { $this->_retvalue = array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor); } - #line 1188 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r168() + #line 1195 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r169() { $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor, '', 'method'); } - #line 1193 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r169() + #line 1200 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r170() { $this->_retvalue = array($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor, 'method'); } - #line 1198 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r170() + #line 1205 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r171() { $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor, ''); } - #line 1203 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r171() + #line 1210 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r172() { $this->_retvalue = array($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor, 'property'); } - #line 1208 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r172() + #line 1215 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r173() { $this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor, $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor, 'property'); } - #line 1214 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r173() + #line 1221 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r174() { $this->_retvalue['op'] = ' ' . trim($this->yystack[$this->yyidx + 0]->minor) . ' '; } - #line 1218 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r174() + #line 1225 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r175() { static $lops = array('eq' => array('op' => ' == ', 'pre' => null), 'ne' => array('op' => ' != ', 'pre' => null), @@ -2206,8 +2202,8 @@ class Smarty_Internal_Templateparser $this->_retvalue = $lops[$op]; } - #line 1244 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r175() + #line 1251 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r176() { static $scond = array('iseven' => '!(1 & ', 'isnoteven' => '(1 & ', 'isodd' => '(1 & ', 'isnotodd' => '!(1 & ',); @@ -2215,75 +2211,75 @@ class Smarty_Internal_Templateparser $this->_retvalue = $scond[$op]; } - #line 1258 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r176() + #line 1265 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r177() { $this->_retvalue = 'array(' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 1266 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r178() + #line 1273 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r179() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . ',' . $this->yystack[$this->yyidx + 0]->minor; } - #line 1274 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r180() + #line 1281 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r181() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . '=>' . $this->yystack[$this->yyidx + 0]->minor; } - #line 1278 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r181() + #line 1285 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r182() { $this->_retvalue = '\'' . $this->yystack[$this->yyidx + - 2]->minor . '\'=>' . $this->yystack[$this->yyidx + 0]->minor; } - #line 1294 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r184() + #line 1301 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r185() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor->to_smarty_php(); } - #line 1299 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r185() + #line 1306 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r186() { $this->yystack[$this->yyidx + - 1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; } - #line 1304 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r186() + #line 1311 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r187() { $this->_retvalue = new Smarty_Internal_ParseTree_Dq($this, $this->yystack[$this->yyidx + 0]->minor); } - #line 1308 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r187() + #line 1315 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r188() { $this->_retvalue = new Smarty_Internal_ParseTree_Code($this, '(string)' . $this->yystack[$this->yyidx + - 1]->minor); } - #line 1316 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r189() + #line 1323 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r190() { $this->_retvalue = new Smarty_Internal_ParseTree_Code($this, '(string)$_smarty_tpl->tpl_vars[\'' . substr($this->yystack[$this->yyidx + 0]->minor, 1) . '\']->value'); } - #line 1324 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r191() + #line 1331 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r192() { $this->_retvalue = new Smarty_Internal_ParseTree_Code($this, '(string)(' . $this->yystack[$this->yyidx + - 1]->minor . ')'); } - #line 1328 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r192() + #line 1335 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r193() { $this->_retvalue = new Smarty_Internal_ParseTree_Tag($this, $this->yystack[$this->yyidx + 0]->minor); } - #line 1332 "../smarty/lexer/smarty_internal_templateparser.y" - function yy_r193() + #line 1339 "../smarty/lexer/smarty_internal_templateparser.y" + function yy_r194() { $this->_retvalue = new Smarty_Internal_ParseTree_DqContent($this, $this->yystack[$this->yyidx + 0]->minor); }