diff --git a/change_log.txt b/change_log.txt index 97e4f860..f98faf9f 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,7 @@ +13/06/2010 +- bugfix Smarty3 did not handle hexadecimals like 0x0F as numerical value +- bugifx Smarty3 did not accept numerical constants like .1 or 2. (without a leading or trailing digit) + 11/06/2010 - bugfix the lexer did fail on larger {literal} ... {/literal} sections diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index b8206ff5..629909a8 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -406,11 +406,12 @@ class Smarty_Internal_Templatelexer 85 => 0, 86 => 0, 87 => 0, + 88 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(0[xX][0-9a-fA-F]+)|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -815,21 +816,26 @@ class Smarty_Internal_Templatelexer function yy_r2_84($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ID; + $this->token = Smarty_Internal_Templateparser::TP_HEX; } function yy_r2_85($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_INTEGER; + $this->token = Smarty_Internal_Templateparser::TP_ID; } function yy_r2_86($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_SPACE; + $this->token = Smarty_Internal_Templateparser::TP_INTEGER; } function yy_r2_87($yy_subpatterns) { + $this->token = Smarty_Internal_Templateparser::TP_SPACE; + } + function yy_r2_88($yy_subpatterns) + { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; } diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 63ee64b3..befb100d 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -184,757 +184,720 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php const TP_QMARK = 48; const TP_NOT = 49; const TP_TYPECAST = 50; - const TP_DOT = 51; - const TP_SINGLEQUOTESTRING = 52; - const TP_DOUBLECOLON = 53; - const TP_AT = 54; - const TP_HATCH = 55; - const TP_OPENB = 56; - const TP_CLOSEB = 57; - const TP_EQUALS = 58; - const TP_NOTEQUALS = 59; - const TP_GREATERTHAN = 60; - const TP_LESSTHAN = 61; - const TP_GREATEREQUAL = 62; - const TP_LESSEQUAL = 63; - const TP_IDENTITY = 64; - const TP_NONEIDENTITY = 65; - const TP_MOD = 66; - const TP_LAND = 67; - const TP_LOR = 68; - const TP_LXOR = 69; - const TP_QUOTE = 70; - const TP_BACKTICK = 71; - const TP_DOLLARID = 72; - const YY_NO_ACTION = 540; - const YY_ACCEPT_ACTION = 539; - const YY_ERROR_ACTION = 538; + const TP_HEX = 51; + const TP_DOT = 52; + const TP_SINGLEQUOTESTRING = 53; + const TP_DOUBLECOLON = 54; + const TP_AT = 55; + const TP_HATCH = 56; + const TP_OPENB = 57; + const TP_CLOSEB = 58; + const TP_EQUALS = 59; + const TP_NOTEQUALS = 60; + const TP_GREATERTHAN = 61; + const TP_LESSTHAN = 62; + const TP_GREATEREQUAL = 63; + const TP_LESSEQUAL = 64; + const TP_IDENTITY = 65; + const TP_NONEIDENTITY = 66; + const TP_MOD = 67; + const TP_LAND = 68; + const TP_LOR = 69; + const TP_LXOR = 70; + const TP_QUOTE = 71; + const TP_BACKTICK = 72; + const TP_DOLLARID = 73; + const YY_NO_ACTION = 546; + const YY_ACCEPT_ACTION = 545; + const YY_ERROR_ACTION = 544; - const YY_SZ_ACTTAB = 2225; + const YY_SZ_ACTTAB = 2037; static public $yy_action = array( - /* 0 */ 183, 20, 155, 353, 245, 235, 224, 226, 234, 228, - /* 10 */ 159, 214, 316, 4, 238, 236, 244, 12, 180, 211, - /* 20 */ 12, 202, 198, 334, 105, 10, 122, 105, 229, 197, - /* 30 */ 47, 42, 44, 39, 38, 36, 283, 282, 31, 29, - /* 40 */ 296, 309, 33, 34, 261, 254, 251, 217, 188, 159, - /* 50 */ 274, 268, 539, 83, 239, 236, 244, 304, 301, 300, - /* 60 */ 297, 298, 299, 305, 306, 312, 313, 314, 311, 183, - /* 70 */ 183, 21, 307, 260, 318, 37, 195, 200, 207, 61, - /* 80 */ 118, 111, 351, 12, 218, 326, 208, 180, 180, 310, - /* 90 */ 105, 414, 35, 278, 281, 308, 308, 414, 28, 47, - /* 100 */ 42, 44, 39, 38, 36, 283, 282, 31, 29, 296, - /* 110 */ 309, 33, 34, 223, 21, 12, 45, 318, 25, 412, - /* 120 */ 93, 333, 105, 45, 271, 412, 304, 301, 300, 297, - /* 130 */ 298, 299, 305, 306, 312, 313, 314, 311, 183, 352, - /* 140 */ 307, 127, 183, 32, 100, 180, 98, 52, 124, 99, - /* 150 */ 291, 241, 12, 290, 322, 5, 180, 310, 187, 105, - /* 160 */ 180, 278, 281, 21, 308, 452, 318, 37, 47, 42, - /* 170 */ 44, 39, 38, 36, 283, 282, 31, 29, 296, 309, - /* 180 */ 33, 34, 183, 255, 161, 12, 106, 203, 315, 180, - /* 190 */ 156, 353, 105, 154, 168, 304, 301, 300, 297, 298, - /* 200 */ 299, 305, 306, 312, 313, 314, 311, 21, 253, 8, - /* 210 */ 318, 103, 47, 42, 44, 39, 38, 36, 283, 282, - /* 220 */ 31, 29, 296, 309, 33, 34, 21, 87, 286, 318, - /* 230 */ 21, 335, 16, 318, 180, 119, 332, 355, 128, 304, - /* 240 */ 301, 300, 297, 298, 299, 305, 306, 312, 313, 314, - /* 250 */ 311, 183, 307, 355, 21, 227, 100, 318, 101, 50, - /* 260 */ 124, 99, 151, 11, 128, 147, 9, 167, 223, 310, - /* 270 */ 164, 158, 170, 278, 281, 350, 308, 13, 350, 26, - /* 280 */ 24, 47, 42, 44, 39, 38, 36, 283, 282, 31, - /* 290 */ 29, 296, 309, 33, 34, 15, 215, 114, 139, 225, - /* 300 */ 112, 247, 320, 265, 27, 180, 116, 293, 304, 301, - /* 310 */ 300, 297, 298, 299, 305, 306, 312, 313, 314, 311, - /* 320 */ 183, 292, 307, 206, 21, 345, 173, 318, 207, 68, - /* 330 */ 240, 111, 21, 257, 259, 318, 411, 216, 180, 310, - /* 340 */ 180, 341, 180, 278, 281, 355, 308, 220, 120, 128, - /* 350 */ 47, 42, 44, 39, 38, 36, 283, 282, 31, 29, - /* 360 */ 296, 309, 33, 34, 183, 164, 45, 347, 21, 250, - /* 370 */ 141, 194, 334, 180, 26, 24, 166, 304, 301, 300, - /* 380 */ 297, 298, 299, 305, 306, 312, 313, 314, 311, 144, - /* 390 */ 205, 334, 219, 184, 47, 42, 44, 39, 38, 36, - /* 400 */ 283, 282, 31, 29, 296, 309, 33, 34, 183, 170, - /* 410 */ 349, 339, 336, 288, 13, 183, 180, 180, 180, 180, - /* 420 */ 246, 304, 301, 300, 297, 298, 299, 305, 306, 312, - /* 430 */ 313, 314, 311, 180, 157, 353, 142, 231, 47, 42, - /* 440 */ 44, 39, 38, 36, 283, 282, 31, 29, 296, 309, - /* 450 */ 33, 34, 183, 294, 323, 330, 355, 337, 303, 180, - /* 460 */ 180, 180, 40, 180, 137, 304, 301, 300, 297, 298, - /* 470 */ 299, 305, 306, 312, 313, 314, 311, 350, 21, 180, - /* 480 */ 5, 196, 47, 42, 44, 39, 38, 36, 283, 282, - /* 490 */ 31, 29, 296, 309, 33, 34, 183, 201, 189, 344, - /* 500 */ 342, 324, 180, 2, 199, 180, 180, 180, 264, 304, - /* 510 */ 301, 300, 297, 298, 299, 305, 306, 312, 313, 314, - /* 520 */ 311, 21, 104, 45, 175, 191, 47, 42, 44, 39, - /* 530 */ 38, 36, 283, 282, 31, 29, 296, 309, 33, 34, - /* 540 */ 183, 17, 285, 190, 9, 110, 258, 266, 180, 243, - /* 550 */ 30, 326, 145, 304, 301, 300, 297, 298, 299, 305, - /* 560 */ 306, 312, 313, 314, 311, 350, 109, 14, 222, 287, - /* 570 */ 47, 42, 44, 39, 38, 36, 283, 282, 31, 29, - /* 580 */ 296, 309, 33, 34, 183, 190, 256, 317, 91, 302, - /* 590 */ 107, 356, 128, 232, 338, 30, 143, 304, 301, 300, - /* 600 */ 297, 298, 299, 305, 306, 312, 313, 314, 311, 350, - /* 610 */ 41, 343, 92, 140, 47, 42, 44, 39, 38, 36, - /* 620 */ 283, 282, 31, 29, 296, 309, 33, 34, 112, 315, - /* 630 */ 284, 162, 267, 90, 289, 18, 113, 120, 160, 88, - /* 640 */ 233, 304, 301, 300, 297, 298, 299, 305, 306, 312, - /* 650 */ 313, 314, 311, 183, 307, 150, 89, 152, 195, 192, - /* 660 */ 207, 53, 123, 111, 138, 270, 45, 153, 350, 165, - /* 670 */ 334, 310, 164, 6, 214, 278, 281, 350, 308, 273, - /* 680 */ 350, 26, 24, 47, 42, 44, 39, 38, 36, 283, - /* 690 */ 282, 31, 29, 296, 309, 33, 34, 183, 348, 295, - /* 700 */ 86, 40, 94, 230, 209, 297, 297, 297, 297, 263, - /* 710 */ 304, 301, 300, 297, 298, 299, 305, 306, 312, 313, - /* 720 */ 314, 311, 297, 297, 297, 297, 297, 47, 42, 44, - /* 730 */ 39, 38, 36, 283, 282, 31, 29, 296, 309, 33, - /* 740 */ 34, 183, 297, 297, 297, 297, 297, 297, 297, 297, - /* 750 */ 297, 297, 297, 148, 304, 301, 300, 297, 298, 299, - /* 760 */ 305, 306, 312, 313, 314, 311, 350, 297, 297, 297, - /* 770 */ 3, 47, 42, 44, 39, 38, 36, 283, 282, 31, - /* 780 */ 29, 296, 309, 33, 34, 183, 297, 297, 297, 297, - /* 790 */ 297, 297, 297, 297, 297, 297, 297, 134, 304, 301, - /* 800 */ 300, 297, 298, 299, 305, 306, 312, 313, 314, 311, - /* 810 */ 350, 297, 297, 297, 297, 47, 42, 44, 39, 38, - /* 820 */ 36, 283, 282, 31, 29, 296, 309, 33, 34, 183, - /* 830 */ 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, - /* 840 */ 297, 297, 304, 301, 300, 297, 298, 299, 305, 306, - /* 850 */ 312, 313, 314, 311, 297, 319, 297, 297, 297, 47, - /* 860 */ 42, 44, 39, 38, 36, 283, 282, 31, 29, 296, - /* 870 */ 309, 33, 34, 183, 297, 272, 297, 297, 297, 297, - /* 880 */ 297, 297, 297, 297, 297, 297, 304, 301, 300, 297, - /* 890 */ 298, 299, 305, 306, 312, 313, 314, 311, 297, 297, - /* 900 */ 297, 297, 297, 47, 42, 44, 39, 38, 36, 283, - /* 910 */ 282, 31, 29, 296, 309, 33, 34, 97, 297, 297, - /* 920 */ 297, 297, 297, 297, 297, 297, 297, 297, 297, 290, - /* 930 */ 304, 301, 300, 297, 298, 299, 305, 306, 312, 313, - /* 940 */ 314, 311, 130, 4, 149, 115, 169, 297, 297, 211, - /* 950 */ 297, 202, 21, 331, 290, 318, 122, 350, 297, 197, - /* 960 */ 186, 125, 4, 43, 108, 177, 297, 210, 211, 297, - /* 970 */ 202, 348, 297, 290, 297, 122, 132, 23, 197, 186, - /* 980 */ 46, 48, 43, 280, 297, 129, 87, 1, 262, 350, - /* 990 */ 297, 146, 297, 297, 297, 297, 23, 290, 95, 46, - /* 1000 */ 48, 84, 280, 348, 350, 87, 1, 297, 297, 4, - /* 1010 */ 290, 115, 177, 297, 135, 211, 297, 202, 348, 163, - /* 1020 */ 84, 297, 122, 297, 297, 197, 186, 350, 4, 43, - /* 1030 */ 115, 172, 297, 297, 211, 297, 202, 297, 126, 102, - /* 1040 */ 297, 122, 297, 23, 197, 186, 46, 48, 43, 280, - /* 1050 */ 290, 290, 87, 1, 297, 297, 297, 131, 96, 297, - /* 1060 */ 297, 297, 19, 297, 297, 46, 48, 84, 280, 290, - /* 1070 */ 290, 87, 1, 297, 297, 4, 297, 117, 85, 297, - /* 1080 */ 297, 211, 297, 202, 297, 297, 84, 297, 122, 297, - /* 1090 */ 297, 197, 186, 297, 4, 43, 115, 174, 297, 297, - /* 1100 */ 211, 297, 202, 297, 297, 297, 297, 122, 297, 19, - /* 1110 */ 197, 186, 46, 48, 43, 280, 297, 297, 87, 1, - /* 1120 */ 297, 297, 297, 297, 297, 297, 297, 297, 23, 297, - /* 1130 */ 297, 46, 48, 84, 280, 297, 297, 87, 1, 297, - /* 1140 */ 297, 4, 297, 106, 177, 297, 297, 211, 297, 202, - /* 1150 */ 297, 297, 84, 297, 122, 297, 297, 197, 186, 297, - /* 1160 */ 4, 43, 115, 177, 297, 297, 211, 297, 202, 297, - /* 1170 */ 297, 297, 297, 122, 297, 23, 197, 186, 46, 48, - /* 1180 */ 43, 280, 297, 297, 87, 1, 297, 297, 297, 297, - /* 1190 */ 297, 297, 297, 297, 19, 297, 297, 46, 48, 84, - /* 1200 */ 280, 297, 297, 87, 1, 297, 297, 4, 297, 106, - /* 1210 */ 171, 297, 297, 211, 297, 202, 297, 297, 84, 297, - /* 1220 */ 122, 297, 297, 197, 178, 297, 4, 43, 106, 177, - /* 1230 */ 297, 297, 211, 297, 202, 297, 297, 297, 297, 122, - /* 1240 */ 297, 23, 197, 186, 46, 48, 43, 280, 297, 297, - /* 1250 */ 87, 1, 297, 297, 297, 297, 297, 297, 297, 297, - /* 1260 */ 23, 297, 297, 46, 48, 84, 280, 297, 297, 87, - /* 1270 */ 297, 297, 297, 4, 297, 106, 185, 297, 297, 211, - /* 1280 */ 297, 202, 136, 297, 84, 297, 122, 164, 297, 197, - /* 1290 */ 186, 297, 297, 43, 297, 350, 26, 24, 297, 297, - /* 1300 */ 297, 297, 327, 297, 297, 297, 7, 23, 297, 297, - /* 1310 */ 46, 48, 211, 280, 202, 133, 87, 307, 297, 122, - /* 1320 */ 164, 176, 197, 207, 71, 297, 111, 297, 350, 26, - /* 1330 */ 24, 84, 297, 297, 310, 297, 297, 297, 278, 281, - /* 1340 */ 297, 308, 297, 297, 297, 297, 297, 297, 297, 297, - /* 1350 */ 179, 329, 297, 307, 297, 297, 297, 195, 297, 207, - /* 1360 */ 62, 297, 111, 297, 321, 22, 275, 297, 297, 297, - /* 1370 */ 310, 297, 297, 297, 278, 281, 297, 308, 297, 297, - /* 1380 */ 297, 297, 297, 297, 204, 307, 297, 297, 297, 176, - /* 1390 */ 297, 207, 71, 297, 111, 297, 297, 297, 297, 297, - /* 1400 */ 297, 297, 310, 297, 307, 297, 278, 281, 195, 308, - /* 1410 */ 207, 62, 297, 111, 297, 297, 297, 297, 297, 328, - /* 1420 */ 297, 310, 297, 297, 297, 278, 281, 297, 308, 297, - /* 1430 */ 297, 297, 297, 297, 297, 193, 297, 307, 297, 297, - /* 1440 */ 297, 181, 297, 207, 49, 121, 111, 297, 297, 297, - /* 1450 */ 297, 297, 297, 297, 310, 297, 297, 297, 278, 281, - /* 1460 */ 297, 308, 307, 297, 297, 297, 195, 297, 207, 62, - /* 1470 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 310, - /* 1480 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 195, - /* 1490 */ 297, 207, 62, 213, 111, 297, 297, 297, 297, 297, - /* 1500 */ 297, 297, 310, 297, 307, 297, 278, 281, 195, 308, - /* 1510 */ 207, 70, 297, 111, 297, 297, 237, 297, 297, 297, - /* 1520 */ 297, 310, 297, 307, 297, 278, 281, 195, 308, 207, - /* 1530 */ 60, 297, 111, 297, 297, 297, 297, 297, 297, 327, - /* 1540 */ 310, 297, 297, 7, 278, 281, 307, 308, 297, 211, - /* 1550 */ 195, 202, 207, 73, 297, 111, 122, 297, 297, 197, - /* 1560 */ 297, 297, 297, 310, 297, 297, 297, 278, 281, 307, - /* 1570 */ 308, 297, 297, 195, 297, 207, 82, 297, 111, 297, - /* 1580 */ 297, 297, 297, 297, 297, 297, 310, 297, 307, 297, - /* 1590 */ 278, 281, 195, 308, 207, 78, 297, 111, 297, 297, - /* 1600 */ 297, 325, 22, 275, 297, 310, 297, 307, 297, 278, - /* 1610 */ 281, 195, 308, 207, 79, 297, 111, 297, 297, 297, - /* 1620 */ 297, 297, 297, 297, 310, 297, 297, 297, 278, 281, - /* 1630 */ 307, 308, 297, 297, 195, 297, 207, 58, 297, 111, - /* 1640 */ 297, 297, 297, 297, 297, 297, 297, 310, 297, 297, - /* 1650 */ 297, 278, 281, 307, 308, 297, 297, 195, 297, 207, - /* 1660 */ 66, 297, 111, 297, 297, 297, 297, 297, 297, 297, - /* 1670 */ 310, 297, 307, 297, 278, 281, 195, 308, 207, 64, - /* 1680 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 310, - /* 1690 */ 297, 307, 297, 278, 281, 195, 308, 207, 57, 297, - /* 1700 */ 111, 297, 297, 297, 297, 297, 297, 297, 310, 297, - /* 1710 */ 297, 297, 278, 281, 307, 308, 297, 297, 195, 297, - /* 1720 */ 207, 56, 297, 111, 297, 297, 297, 297, 297, 297, - /* 1730 */ 297, 310, 297, 297, 297, 278, 281, 307, 308, 297, - /* 1740 */ 297, 195, 297, 207, 65, 297, 111, 297, 297, 297, - /* 1750 */ 297, 297, 297, 297, 310, 297, 307, 297, 278, 281, - /* 1760 */ 195, 308, 207, 81, 297, 111, 297, 297, 297, 297, - /* 1770 */ 297, 297, 297, 310, 297, 307, 297, 278, 281, 195, - /* 1780 */ 308, 207, 55, 297, 111, 297, 297, 297, 297, 297, - /* 1790 */ 297, 297, 310, 297, 297, 297, 278, 281, 307, 308, - /* 1800 */ 297, 297, 195, 297, 207, 75, 297, 111, 297, 297, - /* 1810 */ 297, 297, 297, 297, 297, 310, 297, 297, 297, 278, - /* 1820 */ 281, 307, 308, 297, 297, 195, 297, 182, 59, 297, - /* 1830 */ 111, 297, 297, 297, 297, 297, 297, 297, 310, 297, - /* 1840 */ 307, 297, 278, 281, 195, 308, 207, 63, 297, 111, - /* 1850 */ 297, 297, 297, 297, 297, 297, 297, 310, 297, 307, - /* 1860 */ 297, 278, 281, 195, 308, 207, 77, 297, 111, 297, - /* 1870 */ 297, 297, 297, 297, 297, 297, 310, 297, 297, 297, - /* 1880 */ 278, 281, 307, 308, 297, 297, 195, 297, 207, 54, - /* 1890 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 310, - /* 1900 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 195, - /* 1910 */ 297, 207, 69, 297, 111, 297, 297, 297, 297, 297, - /* 1920 */ 297, 297, 310, 297, 307, 297, 278, 281, 195, 308, - /* 1930 */ 207, 76, 297, 111, 297, 297, 297, 297, 297, 297, - /* 1940 */ 297, 310, 297, 307, 297, 278, 281, 195, 308, 207, - /* 1950 */ 51, 297, 111, 297, 297, 297, 297, 297, 297, 297, - /* 1960 */ 310, 297, 297, 297, 278, 281, 307, 308, 297, 297, - /* 1970 */ 195, 297, 207, 80, 297, 111, 297, 297, 297, 297, - /* 1980 */ 297, 297, 297, 310, 297, 297, 297, 278, 281, 307, - /* 1990 */ 308, 297, 297, 195, 297, 207, 67, 297, 111, 297, - /* 2000 */ 297, 297, 297, 297, 297, 297, 310, 297, 307, 297, - /* 2010 */ 278, 281, 195, 308, 207, 74, 297, 111, 297, 297, - /* 2020 */ 297, 297, 297, 297, 297, 310, 297, 307, 297, 278, - /* 2030 */ 281, 195, 308, 207, 72, 297, 111, 297, 297, 297, - /* 2040 */ 297, 297, 297, 297, 310, 297, 297, 297, 278, 281, - /* 2050 */ 307, 308, 297, 297, 276, 297, 207, 297, 297, 111, - /* 2060 */ 297, 297, 297, 297, 297, 297, 297, 277, 297, 297, - /* 2070 */ 297, 278, 281, 307, 308, 297, 297, 248, 297, 207, - /* 2080 */ 297, 297, 111, 297, 297, 297, 297, 297, 297, 297, - /* 2090 */ 249, 297, 307, 297, 278, 281, 212, 308, 207, 297, - /* 2100 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 221, - /* 2110 */ 297, 307, 297, 278, 281, 252, 308, 207, 297, 297, - /* 2120 */ 111, 297, 307, 297, 297, 297, 354, 297, 207, 297, - /* 2130 */ 297, 111, 278, 281, 297, 308, 297, 297, 297, 297, - /* 2140 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 269, - /* 2150 */ 297, 207, 307, 297, 111, 297, 340, 297, 207, 297, - /* 2160 */ 297, 111, 297, 297, 297, 297, 278, 281, 297, 308, - /* 2170 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 242, - /* 2180 */ 297, 207, 297, 297, 111, 297, 297, 297, 297, 307, - /* 2190 */ 297, 297, 297, 279, 297, 207, 278, 281, 111, 308, - /* 2200 */ 307, 297, 297, 297, 346, 297, 207, 297, 297, 111, - /* 2210 */ 278, 281, 297, 308, 297, 297, 297, 297, 297, 297, - /* 2220 */ 297, 278, 281, 297, 308, + /* 0 */ 175, 239, 238, 246, 248, 235, 234, 230, 266, 273, + /* 10 */ 158, 223, 291, 7, 29, 170, 12, 290, 179, 205, + /* 20 */ 13, 202, 200, 179, 114, 5, 124, 117, 233, 192, + /* 30 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27, + /* 40 */ 278, 256, 31, 30, 263, 279, 251, 35, 8, 158, + /* 50 */ 265, 271, 545, 83, 241, 238, 246, 136, 306, 307, + /* 60 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317, + /* 70 */ 175, 315, 289, 175, 132, 268, 113, 219, 179, 166, + /* 80 */ 105, 152, 296, 221, 175, 319, 168, 284, 179, 206, + /* 90 */ 128, 179, 358, 351, 284, 314, 331, 216, 183, 110, + /* 100 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27, + /* 110 */ 278, 256, 31, 30, 42, 43, 45, 40, 21, 22, + /* 120 */ 281, 299, 26, 27, 278, 256, 31, 30, 306, 307, + /* 130 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317, + /* 140 */ 175, 4, 306, 307, 308, 305, 304, 301, 302, 303, + /* 150 */ 309, 310, 316, 317, 175, 33, 32, 311, 179, 346, + /* 160 */ 17, 32, 348, 38, 346, 345, 253, 156, 343, 338, + /* 170 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27, + /* 180 */ 278, 256, 31, 30, 42, 43, 45, 40, 21, 22, + /* 190 */ 281, 299, 26, 27, 278, 256, 31, 30, 306, 307, + /* 200 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317, + /* 210 */ 175, 212, 306, 307, 308, 305, 304, 301, 302, 303, + /* 220 */ 309, 310, 316, 317, 175, 220, 32, 259, 179, 346, + /* 230 */ 32, 157, 343, 346, 34, 146, 252, 347, 107, 203, + /* 240 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27, + /* 250 */ 278, 256, 31, 30, 42, 43, 45, 40, 21, 22, + /* 260 */ 281, 299, 26, 27, 278, 256, 31, 30, 306, 307, + /* 270 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317, + /* 280 */ 87, 323, 306, 307, 308, 305, 304, 301, 302, 303, + /* 290 */ 309, 310, 316, 317, 175, 315, 153, 201, 347, 222, + /* 300 */ 122, 219, 53, 119, 105, 283, 164, 36, 175, 103, + /* 310 */ 137, 179, 318, 165, 288, 314, 358, 351, 262, 314, + /* 320 */ 258, 189, 24, 23, 42, 43, 45, 40, 21, 22, + /* 330 */ 281, 299, 26, 27, 278, 256, 31, 30, 42, 43, + /* 340 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256, + /* 350 */ 31, 30, 306, 307, 308, 305, 304, 301, 302, 303, + /* 360 */ 309, 310, 316, 317, 175, 225, 306, 307, 308, 305, + /* 370 */ 304, 301, 302, 303, 309, 310, 316, 317, 175, 414, + /* 380 */ 320, 282, 199, 298, 162, 179, 179, 179, 288, 179, + /* 390 */ 229, 161, 343, 347, 42, 43, 45, 40, 21, 22, + /* 400 */ 281, 299, 26, 27, 278, 256, 31, 30, 42, 43, + /* 410 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256, + /* 420 */ 31, 30, 306, 307, 308, 305, 304, 301, 302, 303, + /* 430 */ 309, 310, 316, 317, 2, 128, 306, 307, 308, 305, + /* 440 */ 304, 301, 302, 303, 309, 310, 316, 317, 175, 315, + /* 450 */ 154, 175, 86, 100, 155, 98, 52, 121, 99, 159, + /* 460 */ 167, 32, 260, 357, 346, 128, 318, 196, 288, 179, + /* 470 */ 358, 351, 102, 314, 32, 240, 187, 346, 42, 43, + /* 480 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256, + /* 490 */ 31, 30, 175, 194, 32, 116, 12, 346, 34, 32, + /* 500 */ 170, 20, 346, 280, 114, 13, 306, 307, 308, 305, + /* 510 */ 304, 301, 302, 303, 309, 310, 316, 317, 321, 46, + /* 520 */ 191, 217, 42, 43, 45, 40, 21, 22, 281, 299, + /* 530 */ 26, 27, 278, 256, 31, 30, 175, 224, 250, 328, + /* 540 */ 32, 32, 224, 346, 214, 25, 175, 104, 243, 280, + /* 550 */ 306, 307, 308, 305, 304, 301, 302, 303, 309, 310, + /* 560 */ 316, 317, 261, 15, 179, 297, 42, 43, 45, 40, + /* 570 */ 21, 22, 281, 299, 26, 27, 278, 256, 31, 30, + /* 580 */ 175, 295, 12, 209, 93, 330, 32, 179, 32, 211, + /* 590 */ 114, 182, 269, 134, 306, 307, 308, 305, 304, 301, + /* 600 */ 302, 303, 309, 310, 316, 317, 284, 324, 347, 292, + /* 610 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27, + /* 620 */ 278, 256, 31, 30, 175, 342, 293, 12, 339, 247, + /* 630 */ 228, 179, 179, 179, 179, 114, 179, 149, 306, 307, + /* 640 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317, + /* 650 */ 284, 109, 39, 3, 42, 43, 45, 40, 21, 22, + /* 660 */ 281, 299, 26, 27, 278, 256, 31, 30, 175, 356, + /* 670 */ 349, 355, 341, 352, 236, 179, 179, 179, 179, 179, + /* 680 */ 179, 294, 306, 307, 308, 305, 304, 301, 302, 303, + /* 690 */ 309, 310, 316, 317, 46, 336, 111, 267, 42, 43, + /* 700 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256, + /* 710 */ 31, 30, 175, 46, 213, 354, 245, 350, 277, 128, + /* 720 */ 288, 11, 41, 9, 120, 139, 306, 307, 308, 305, + /* 730 */ 304, 301, 302, 303, 309, 310, 316, 317, 284, 179, + /* 740 */ 221, 223, 42, 43, 45, 40, 21, 22, 281, 299, + /* 750 */ 26, 27, 278, 256, 31, 30, 102, 415, 8, 255, + /* 760 */ 207, 417, 14, 415, 198, 37, 353, 417, 333, 143, + /* 770 */ 306, 307, 308, 305, 304, 301, 302, 303, 309, 310, + /* 780 */ 316, 317, 284, 7, 232, 115, 169, 226, 315, 205, + /* 790 */ 12, 202, 222, 46, 219, 59, 124, 105, 114, 192, + /* 800 */ 215, 32, 344, 44, 346, 318, 130, 325, 35, 358, + /* 810 */ 351, 270, 314, 147, 120, 10, 195, 16, 237, 208, + /* 820 */ 48, 47, 313, 204, 340, 97, 284, 87, 1, 227, + /* 830 */ 7, 249, 112, 85, 123, 150, 205, 237, 202, 141, + /* 840 */ 285, 329, 84, 124, 126, 6, 192, 215, 284, 244, + /* 850 */ 44, 205, 284, 202, 90, 179, 237, 188, 124, 142, + /* 860 */ 148, 192, 285, 88, 28, 163, 285, 48, 47, 313, + /* 870 */ 204, 340, 284, 284, 87, 1, 96, 7, 315, 115, + /* 880 */ 178, 46, 186, 205, 219, 202, 131, 105, 237, 84, + /* 890 */ 124, 95, 312, 192, 215, 190, 106, 44, 237, 358, + /* 900 */ 351, 125, 314, 237, 327, 18, 322, 140, 237, 19, + /* 910 */ 275, 16, 264, 237, 48, 47, 313, 204, 340, 9, + /* 920 */ 284, 87, 1, 41, 7, 345, 115, 178, 94, 458, + /* 930 */ 205, 127, 202, 254, 129, 329, 84, 124, 285, 6, + /* 940 */ 192, 215, 89, 237, 44, 205, 237, 202, 138, 12, + /* 950 */ 91, 92, 124, 144, 301, 192, 197, 114, 28, 160, + /* 960 */ 301, 48, 47, 313, 204, 340, 301, 301, 87, 1, + /* 970 */ 301, 7, 315, 115, 174, 301, 337, 205, 219, 202, + /* 980 */ 301, 105, 301, 84, 124, 301, 301, 192, 215, 332, + /* 990 */ 301, 44, 301, 358, 351, 301, 314, 301, 326, 18, + /* 1000 */ 322, 301, 301, 301, 301, 16, 301, 301, 48, 47, + /* 1010 */ 313, 204, 340, 301, 301, 87, 1, 301, 7, 315, + /* 1020 */ 107, 172, 301, 276, 205, 219, 202, 301, 105, 301, + /* 1030 */ 84, 124, 301, 301, 192, 180, 274, 301, 44, 301, + /* 1040 */ 358, 351, 301, 314, 301, 301, 301, 301, 301, 301, + /* 1050 */ 301, 301, 16, 301, 301, 48, 47, 313, 204, 340, + /* 1060 */ 301, 301, 87, 1, 301, 7, 315, 107, 178, 301, + /* 1070 */ 257, 205, 219, 202, 301, 105, 301, 84, 124, 301, + /* 1080 */ 301, 192, 215, 301, 301, 44, 301, 358, 351, 301, + /* 1090 */ 314, 301, 301, 301, 301, 301, 301, 301, 301, 16, + /* 1100 */ 301, 301, 48, 47, 313, 204, 340, 301, 301, 87, + /* 1110 */ 1, 301, 7, 315, 108, 178, 301, 231, 205, 219, + /* 1120 */ 202, 301, 105, 301, 84, 124, 301, 301, 192, 215, + /* 1130 */ 301, 301, 44, 301, 358, 351, 301, 314, 301, 301, + /* 1140 */ 301, 301, 301, 301, 301, 301, 16, 301, 301, 48, + /* 1150 */ 47, 313, 204, 340, 301, 301, 87, 1, 301, 7, + /* 1160 */ 315, 115, 171, 301, 286, 205, 219, 202, 301, 105, + /* 1170 */ 301, 84, 124, 301, 301, 192, 215, 301, 301, 44, + /* 1180 */ 301, 358, 351, 301, 314, 301, 301, 301, 301, 301, + /* 1190 */ 301, 301, 301, 28, 301, 301, 48, 47, 313, 204, + /* 1200 */ 340, 301, 301, 87, 1, 301, 7, 315, 107, 178, + /* 1210 */ 301, 300, 205, 219, 202, 301, 105, 301, 84, 124, + /* 1220 */ 301, 301, 192, 215, 301, 301, 44, 301, 358, 351, + /* 1230 */ 315, 314, 301, 301, 287, 301, 219, 301, 301, 105, + /* 1240 */ 16, 301, 301, 48, 47, 313, 204, 340, 301, 301, + /* 1250 */ 87, 358, 351, 7, 314, 107, 176, 301, 301, 205, + /* 1260 */ 301, 202, 301, 133, 301, 84, 124, 301, 165, 192, + /* 1270 */ 215, 301, 301, 44, 301, 301, 284, 24, 23, 315, + /* 1280 */ 301, 301, 301, 177, 301, 219, 82, 16, 105, 301, + /* 1290 */ 48, 47, 313, 204, 340, 301, 318, 87, 315, 301, + /* 1300 */ 358, 351, 177, 314, 219, 82, 301, 105, 301, 301, + /* 1310 */ 301, 301, 84, 335, 301, 318, 301, 301, 301, 358, + /* 1320 */ 351, 301, 314, 301, 301, 301, 301, 301, 301, 315, + /* 1330 */ 301, 184, 334, 100, 301, 101, 51, 121, 99, 301, + /* 1340 */ 301, 301, 301, 301, 301, 301, 318, 301, 315, 301, + /* 1350 */ 358, 351, 181, 314, 219, 49, 118, 105, 301, 301, + /* 1360 */ 301, 301, 301, 301, 301, 318, 301, 315, 301, 358, + /* 1370 */ 351, 173, 314, 219, 71, 242, 105, 301, 301, 301, + /* 1380 */ 301, 301, 301, 301, 318, 301, 315, 301, 358, 351, + /* 1390 */ 222, 314, 219, 59, 301, 105, 301, 301, 301, 301, + /* 1400 */ 301, 301, 301, 318, 301, 301, 301, 358, 351, 301, + /* 1410 */ 314, 301, 315, 301, 301, 301, 222, 193, 219, 56, + /* 1420 */ 301, 105, 301, 301, 218, 301, 301, 301, 301, 318, + /* 1430 */ 301, 315, 301, 358, 351, 222, 314, 219, 59, 301, + /* 1440 */ 105, 301, 301, 301, 301, 301, 301, 301, 318, 301, + /* 1450 */ 315, 301, 358, 351, 222, 314, 219, 59, 301, 105, + /* 1460 */ 301, 301, 210, 301, 301, 301, 301, 318, 301, 315, + /* 1470 */ 301, 358, 351, 222, 314, 219, 77, 301, 105, 301, + /* 1480 */ 301, 359, 301, 301, 301, 301, 318, 301, 301, 301, + /* 1490 */ 358, 351, 145, 314, 301, 315, 301, 165, 301, 222, + /* 1500 */ 301, 219, 81, 301, 105, 284, 24, 23, 301, 301, + /* 1510 */ 301, 301, 318, 301, 315, 301, 358, 351, 222, 314, + /* 1520 */ 219, 62, 301, 105, 301, 301, 301, 301, 301, 301, + /* 1530 */ 301, 318, 301, 315, 301, 358, 351, 222, 314, 219, + /* 1540 */ 54, 301, 105, 301, 301, 301, 301, 301, 301, 301, + /* 1550 */ 318, 301, 315, 301, 358, 351, 222, 314, 219, 79, + /* 1560 */ 301, 105, 301, 301, 301, 301, 301, 301, 301, 318, + /* 1570 */ 301, 301, 301, 358, 351, 135, 314, 301, 315, 301, + /* 1580 */ 165, 301, 222, 301, 219, 60, 301, 105, 284, 24, + /* 1590 */ 23, 301, 301, 301, 301, 318, 301, 315, 301, 358, + /* 1600 */ 351, 222, 314, 219, 65, 301, 105, 301, 301, 301, + /* 1610 */ 301, 301, 301, 301, 318, 301, 315, 301, 358, 351, + /* 1620 */ 222, 314, 219, 55, 301, 105, 301, 301, 301, 301, + /* 1630 */ 301, 301, 301, 318, 301, 315, 301, 358, 351, 222, + /* 1640 */ 314, 219, 58, 301, 105, 301, 301, 301, 301, 301, + /* 1650 */ 301, 301, 318, 301, 301, 301, 358, 351, 151, 314, + /* 1660 */ 301, 315, 301, 165, 301, 222, 301, 219, 75, 301, + /* 1670 */ 105, 284, 24, 23, 301, 301, 301, 301, 318, 301, + /* 1680 */ 315, 301, 358, 351, 222, 314, 219, 63, 301, 105, + /* 1690 */ 301, 301, 301, 301, 301, 301, 301, 318, 301, 315, + /* 1700 */ 301, 358, 351, 222, 314, 219, 72, 301, 105, 301, + /* 1710 */ 301, 301, 301, 301, 301, 301, 318, 301, 315, 301, + /* 1720 */ 358, 351, 222, 314, 219, 69, 301, 105, 301, 301, + /* 1730 */ 301, 301, 301, 301, 301, 318, 301, 301, 301, 358, + /* 1740 */ 351, 301, 314, 301, 315, 301, 301, 301, 222, 301, + /* 1750 */ 185, 61, 301, 105, 301, 301, 301, 301, 301, 301, + /* 1760 */ 301, 318, 301, 315, 301, 358, 351, 222, 314, 219, + /* 1770 */ 67, 301, 105, 301, 301, 301, 301, 301, 301, 301, + /* 1780 */ 318, 301, 315, 301, 358, 351, 222, 314, 219, 74, + /* 1790 */ 301, 105, 301, 301, 301, 301, 301, 301, 301, 318, + /* 1800 */ 301, 315, 301, 358, 351, 222, 314, 219, 80, 301, + /* 1810 */ 105, 301, 301, 301, 301, 301, 301, 301, 318, 301, + /* 1820 */ 301, 301, 358, 351, 301, 314, 301, 315, 301, 301, + /* 1830 */ 301, 222, 301, 219, 66, 301, 105, 301, 301, 301, + /* 1840 */ 301, 301, 301, 301, 318, 301, 315, 301, 358, 351, + /* 1850 */ 222, 314, 219, 70, 301, 105, 301, 301, 301, 301, + /* 1860 */ 301, 301, 301, 318, 301, 315, 301, 358, 351, 222, + /* 1870 */ 314, 219, 76, 301, 105, 301, 301, 301, 301, 301, + /* 1880 */ 301, 301, 318, 301, 315, 301, 358, 351, 222, 314, + /* 1890 */ 219, 64, 301, 105, 301, 301, 301, 301, 301, 301, + /* 1900 */ 301, 318, 301, 301, 301, 358, 351, 301, 314, 301, + /* 1910 */ 315, 301, 301, 301, 222, 301, 219, 57, 301, 105, + /* 1920 */ 301, 301, 301, 301, 301, 301, 301, 318, 301, 315, + /* 1930 */ 301, 358, 351, 222, 314, 219, 50, 301, 105, 301, + /* 1940 */ 301, 301, 301, 301, 301, 301, 318, 301, 315, 301, + /* 1950 */ 358, 351, 222, 314, 219, 78, 301, 105, 301, 301, + /* 1960 */ 301, 301, 301, 301, 301, 318, 301, 315, 301, 358, + /* 1970 */ 351, 222, 314, 219, 68, 301, 105, 301, 301, 301, + /* 1980 */ 301, 301, 301, 301, 318, 301, 301, 301, 358, 351, + /* 1990 */ 301, 314, 301, 315, 301, 301, 301, 222, 301, 219, + /* 2000 */ 73, 301, 105, 301, 301, 301, 301, 301, 301, 301, + /* 2010 */ 318, 301, 315, 301, 358, 351, 272, 314, 219, 301, + /* 2020 */ 301, 105, 301, 301, 301, 301, 301, 301, 301, 301, + /* 2030 */ 301, 301, 301, 358, 351, 301, 314, ); static public $yy_lookahead = array( - /* 0 */ 1, 27, 105, 106, 3, 4, 5, 6, 7, 8, - /* 10 */ 9, 2, 13, 12, 76, 77, 78, 46, 19, 18, - /* 20 */ 46, 20, 51, 104, 53, 16, 25, 53, 57, 28, + /* 0 */ 1, 77, 78, 79, 3, 4, 5, 6, 7, 8, + /* 10 */ 9, 2, 13, 12, 12, 52, 46, 13, 19, 18, + /* 20 */ 57, 20, 52, 19, 54, 16, 25, 14, 58, 28, /* 30 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 40 */ 41, 42, 43, 44, 4, 5, 6, 14, 15, 9, - /* 50 */ 10, 11, 74, 75, 76, 77, 78, 58, 59, 60, - /* 60 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 1, - /* 70 */ 1, 12, 77, 47, 15, 16, 81, 83, 83, 84, - /* 80 */ 86, 86, 13, 46, 89, 77, 17, 19, 19, 94, - /* 90 */ 53, 13, 24, 98, 99, 101, 101, 19, 27, 31, - /* 100 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - /* 110 */ 42, 43, 44, 54, 12, 46, 45, 15, 16, 13, - /* 120 */ 112, 113, 53, 45, 22, 19, 58, 59, 60, 61, - /* 130 */ 62, 63, 64, 65, 66, 67, 68, 69, 1, 13, - /* 140 */ 77, 92, 1, 23, 81, 19, 83, 84, 85, 86, - /* 150 */ 13, 47, 46, 104, 13, 16, 19, 94, 17, 53, - /* 160 */ 19, 98, 99, 12, 101, 26, 15, 16, 31, 32, - /* 170 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 180 */ 43, 44, 1, 13, 21, 46, 14, 15, 103, 19, - /* 190 */ 105, 106, 53, 30, 13, 58, 59, 60, 61, 62, - /* 200 */ 63, 64, 65, 66, 67, 68, 69, 12, 13, 30, - /* 210 */ 15, 14, 31, 32, 33, 34, 35, 36, 37, 38, - /* 220 */ 39, 40, 41, 42, 43, 44, 12, 55, 13, 15, - /* 230 */ 12, 13, 12, 15, 19, 19, 57, 22, 17, 58, - /* 240 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 250 */ 69, 1, 77, 22, 12, 55, 81, 15, 83, 84, - /* 260 */ 85, 86, 82, 16, 17, 82, 46, 87, 54, 94, - /* 270 */ 87, 21, 51, 98, 99, 95, 101, 56, 95, 96, - /* 280 */ 97, 31, 32, 33, 34, 35, 36, 37, 38, 39, - /* 290 */ 40, 41, 42, 43, 44, 12, 54, 14, 15, 13, - /* 300 */ 53, 78, 71, 80, 12, 19, 14, 15, 58, 59, - /* 310 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, - /* 320 */ 1, 29, 77, 15, 12, 15, 81, 15, 83, 84, - /* 330 */ 85, 86, 12, 13, 13, 15, 13, 29, 19, 94, - /* 340 */ 19, 100, 19, 98, 99, 22, 101, 27, 107, 17, - /* 350 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 360 */ 41, 42, 43, 44, 1, 87, 45, 13, 12, 47, - /* 370 */ 102, 15, 104, 19, 96, 97, 13, 58, 59, 60, - /* 380 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 102, - /* 390 */ 26, 104, 89, 90, 31, 32, 33, 34, 35, 36, - /* 400 */ 37, 38, 39, 40, 41, 42, 43, 44, 1, 51, - /* 410 */ 13, 13, 13, 13, 56, 1, 19, 19, 19, 19, - /* 420 */ 13, 58, 59, 60, 61, 62, 63, 64, 65, 66, - /* 430 */ 67, 68, 69, 19, 105, 106, 102, 107, 31, 32, - /* 440 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 450 */ 43, 44, 1, 13, 13, 13, 22, 13, 15, 19, - /* 460 */ 19, 19, 2, 19, 82, 58, 59, 60, 61, 62, - /* 470 */ 63, 64, 65, 66, 67, 68, 69, 95, 12, 19, - /* 480 */ 16, 15, 31, 32, 33, 34, 35, 36, 37, 38, - /* 490 */ 39, 40, 41, 42, 43, 44, 1, 54, 47, 13, - /* 500 */ 13, 13, 19, 46, 15, 19, 19, 19, 13, 58, - /* 510 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 520 */ 69, 12, 14, 45, 15, 15, 31, 32, 33, 34, - /* 530 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 540 */ 1, 2, 13, 51, 46, 14, 13, 57, 19, 13, - /* 550 */ 16, 77, 82, 58, 59, 60, 61, 62, 63, 64, - /* 560 */ 65, 66, 67, 68, 69, 95, 14, 48, 26, 15, - /* 570 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 580 */ 41, 42, 43, 44, 1, 51, 95, 113, 88, 15, - /* 590 */ 14, 13, 17, 55, 29, 16, 82, 58, 59, 60, - /* 600 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 95, - /* 610 */ 19, 15, 88, 102, 31, 32, 33, 34, 35, 36, - /* 620 */ 37, 38, 39, 40, 41, 42, 43, 44, 53, 103, - /* 630 */ 100, 15, 89, 88, 13, 91, 14, 107, 88, 102, - /* 640 */ 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, - /* 650 */ 67, 68, 69, 1, 77, 82, 15, 102, 81, 93, - /* 660 */ 83, 84, 85, 86, 82, 13, 45, 82, 95, 87, - /* 670 */ 104, 94, 87, 19, 2, 98, 99, 95, 101, 19, - /* 680 */ 95, 96, 97, 31, 32, 33, 34, 35, 36, 37, - /* 690 */ 38, 39, 40, 41, 42, 43, 44, 1, 109, 106, - /* 700 */ 15, 2, 79, 10, 91, 114, 114, 114, 114, 13, - /* 710 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - /* 720 */ 68, 69, 114, 114, 114, 114, 114, 31, 32, 33, - /* 730 */ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, - /* 740 */ 44, 1, 114, 114, 114, 114, 114, 114, 114, 114, - /* 750 */ 114, 114, 114, 82, 58, 59, 60, 61, 62, 63, - /* 760 */ 64, 65, 66, 67, 68, 69, 95, 114, 114, 114, - /* 770 */ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, - /* 780 */ 40, 41, 42, 43, 44, 1, 114, 114, 114, 114, - /* 790 */ 114, 114, 114, 114, 114, 114, 114, 82, 58, 59, - /* 800 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, - /* 810 */ 95, 114, 114, 114, 114, 31, 32, 33, 34, 35, - /* 820 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 1, - /* 830 */ 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, - /* 840 */ 114, 114, 58, 59, 60, 61, 62, 63, 64, 65, - /* 850 */ 66, 67, 68, 69, 114, 71, 114, 114, 114, 31, - /* 860 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - /* 870 */ 42, 43, 44, 1, 114, 47, 114, 114, 114, 114, - /* 880 */ 114, 114, 114, 114, 114, 114, 58, 59, 60, 61, - /* 890 */ 62, 63, 64, 65, 66, 67, 68, 69, 114, 114, - /* 900 */ 114, 114, 114, 31, 32, 33, 34, 35, 36, 37, - /* 910 */ 38, 39, 40, 41, 42, 43, 44, 92, 114, 114, - /* 920 */ 114, 114, 114, 114, 114, 114, 114, 114, 114, 104, - /* 930 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - /* 940 */ 68, 69, 92, 12, 82, 14, 15, 114, 114, 18, - /* 950 */ 114, 20, 12, 13, 104, 15, 25, 95, 114, 28, - /* 960 */ 29, 92, 12, 32, 14, 15, 114, 27, 18, 114, - /* 970 */ 20, 109, 114, 104, 114, 25, 82, 46, 28, 29, - /* 980 */ 49, 50, 32, 52, 114, 92, 55, 56, 57, 95, - /* 990 */ 114, 82, 114, 114, 114, 114, 46, 104, 92, 49, - /* 1000 */ 50, 70, 52, 109, 95, 55, 56, 114, 114, 12, - /* 1010 */ 104, 14, 15, 114, 82, 18, 114, 20, 109, 87, - /* 1020 */ 70, 114, 25, 114, 114, 28, 29, 95, 12, 32, - /* 1030 */ 14, 15, 114, 114, 18, 114, 20, 114, 92, 92, - /* 1040 */ 114, 25, 114, 46, 28, 29, 49, 50, 32, 52, - /* 1050 */ 104, 104, 55, 56, 114, 114, 114, 92, 92, 114, - /* 1060 */ 114, 114, 46, 114, 114, 49, 50, 70, 52, 104, - /* 1070 */ 104, 55, 56, 114, 114, 12, 114, 14, 15, 114, - /* 1080 */ 114, 18, 114, 20, 114, 114, 70, 114, 25, 114, - /* 1090 */ 114, 28, 29, 114, 12, 32, 14, 15, 114, 114, - /* 1100 */ 18, 114, 20, 114, 114, 114, 114, 25, 114, 46, - /* 1110 */ 28, 29, 49, 50, 32, 52, 114, 114, 55, 56, - /* 1120 */ 114, 114, 114, 114, 114, 114, 114, 114, 46, 114, - /* 1130 */ 114, 49, 50, 70, 52, 114, 114, 55, 56, 114, - /* 1140 */ 114, 12, 114, 14, 15, 114, 114, 18, 114, 20, - /* 1150 */ 114, 114, 70, 114, 25, 114, 114, 28, 29, 114, - /* 1160 */ 12, 32, 14, 15, 114, 114, 18, 114, 20, 114, - /* 1170 */ 114, 114, 114, 25, 114, 46, 28, 29, 49, 50, - /* 1180 */ 32, 52, 114, 114, 55, 56, 114, 114, 114, 114, - /* 1190 */ 114, 114, 114, 114, 46, 114, 114, 49, 50, 70, - /* 1200 */ 52, 114, 114, 55, 56, 114, 114, 12, 114, 14, - /* 1210 */ 15, 114, 114, 18, 114, 20, 114, 114, 70, 114, - /* 1220 */ 25, 114, 114, 28, 29, 114, 12, 32, 14, 15, - /* 1230 */ 114, 114, 18, 114, 20, 114, 114, 114, 114, 25, - /* 1240 */ 114, 46, 28, 29, 49, 50, 32, 52, 114, 114, - /* 1250 */ 55, 56, 114, 114, 114, 114, 114, 114, 114, 114, - /* 1260 */ 46, 114, 114, 49, 50, 70, 52, 114, 114, 55, - /* 1270 */ 114, 114, 114, 12, 114, 14, 15, 114, 114, 18, - /* 1280 */ 114, 20, 82, 114, 70, 114, 25, 87, 114, 28, - /* 1290 */ 29, 114, 114, 32, 114, 95, 96, 97, 114, 114, - /* 1300 */ 114, 114, 8, 114, 114, 114, 12, 46, 114, 114, - /* 1310 */ 49, 50, 18, 52, 20, 82, 55, 77, 114, 25, - /* 1320 */ 87, 81, 28, 83, 84, 114, 86, 114, 95, 96, - /* 1330 */ 97, 70, 114, 114, 94, 114, 114, 114, 98, 99, - /* 1340 */ 114, 101, 114, 114, 114, 114, 114, 114, 114, 114, - /* 1350 */ 110, 111, 114, 77, 114, 114, 114, 81, 114, 83, - /* 1360 */ 84, 114, 86, 114, 70, 71, 72, 114, 114, 114, - /* 1370 */ 94, 114, 114, 114, 98, 99, 114, 101, 114, 114, - /* 1380 */ 114, 114, 114, 114, 108, 77, 114, 114, 114, 81, - /* 1390 */ 114, 83, 84, 114, 86, 114, 114, 114, 114, 114, - /* 1400 */ 114, 114, 94, 114, 77, 114, 98, 99, 81, 101, - /* 1410 */ 83, 84, 114, 86, 114, 114, 114, 114, 114, 111, - /* 1420 */ 114, 94, 114, 114, 114, 98, 99, 114, 101, 114, - /* 1430 */ 114, 114, 114, 114, 114, 108, 114, 77, 114, 114, - /* 1440 */ 114, 81, 114, 83, 84, 85, 86, 114, 114, 114, - /* 1450 */ 114, 114, 114, 114, 94, 114, 114, 114, 98, 99, - /* 1460 */ 114, 101, 77, 114, 114, 114, 81, 114, 83, 84, - /* 1470 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, - /* 1480 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, - /* 1490 */ 114, 83, 84, 108, 86, 114, 114, 114, 114, 114, - /* 1500 */ 114, 114, 94, 114, 77, 114, 98, 99, 81, 101, - /* 1510 */ 83, 84, 114, 86, 114, 114, 108, 114, 114, 114, - /* 1520 */ 114, 94, 114, 77, 114, 98, 99, 81, 101, 83, - /* 1530 */ 84, 114, 86, 114, 114, 114, 114, 114, 114, 8, - /* 1540 */ 94, 114, 114, 12, 98, 99, 77, 101, 114, 18, - /* 1550 */ 81, 20, 83, 84, 114, 86, 25, 114, 114, 28, - /* 1560 */ 114, 114, 114, 94, 114, 114, 114, 98, 99, 77, - /* 1570 */ 101, 114, 114, 81, 114, 83, 84, 114, 86, 114, - /* 1580 */ 114, 114, 114, 114, 114, 114, 94, 114, 77, 114, - /* 1590 */ 98, 99, 81, 101, 83, 84, 114, 86, 114, 114, - /* 1600 */ 114, 70, 71, 72, 114, 94, 114, 77, 114, 98, - /* 1610 */ 99, 81, 101, 83, 84, 114, 86, 114, 114, 114, - /* 1620 */ 114, 114, 114, 114, 94, 114, 114, 114, 98, 99, - /* 1630 */ 77, 101, 114, 114, 81, 114, 83, 84, 114, 86, - /* 1640 */ 114, 114, 114, 114, 114, 114, 114, 94, 114, 114, - /* 1650 */ 114, 98, 99, 77, 101, 114, 114, 81, 114, 83, - /* 1660 */ 84, 114, 86, 114, 114, 114, 114, 114, 114, 114, - /* 1670 */ 94, 114, 77, 114, 98, 99, 81, 101, 83, 84, - /* 1680 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, - /* 1690 */ 114, 77, 114, 98, 99, 81, 101, 83, 84, 114, - /* 1700 */ 86, 114, 114, 114, 114, 114, 114, 114, 94, 114, - /* 1710 */ 114, 114, 98, 99, 77, 101, 114, 114, 81, 114, - /* 1720 */ 83, 84, 114, 86, 114, 114, 114, 114, 114, 114, - /* 1730 */ 114, 94, 114, 114, 114, 98, 99, 77, 101, 114, - /* 1740 */ 114, 81, 114, 83, 84, 114, 86, 114, 114, 114, - /* 1750 */ 114, 114, 114, 114, 94, 114, 77, 114, 98, 99, - /* 1760 */ 81, 101, 83, 84, 114, 86, 114, 114, 114, 114, - /* 1770 */ 114, 114, 114, 94, 114, 77, 114, 98, 99, 81, - /* 1780 */ 101, 83, 84, 114, 86, 114, 114, 114, 114, 114, - /* 1790 */ 114, 114, 94, 114, 114, 114, 98, 99, 77, 101, - /* 1800 */ 114, 114, 81, 114, 83, 84, 114, 86, 114, 114, - /* 1810 */ 114, 114, 114, 114, 114, 94, 114, 114, 114, 98, - /* 1820 */ 99, 77, 101, 114, 114, 81, 114, 83, 84, 114, - /* 1830 */ 86, 114, 114, 114, 114, 114, 114, 114, 94, 114, - /* 1840 */ 77, 114, 98, 99, 81, 101, 83, 84, 114, 86, - /* 1850 */ 114, 114, 114, 114, 114, 114, 114, 94, 114, 77, - /* 1860 */ 114, 98, 99, 81, 101, 83, 84, 114, 86, 114, - /* 1870 */ 114, 114, 114, 114, 114, 114, 94, 114, 114, 114, - /* 1880 */ 98, 99, 77, 101, 114, 114, 81, 114, 83, 84, - /* 1890 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, - /* 1900 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, - /* 1910 */ 114, 83, 84, 114, 86, 114, 114, 114, 114, 114, - /* 1920 */ 114, 114, 94, 114, 77, 114, 98, 99, 81, 101, - /* 1930 */ 83, 84, 114, 86, 114, 114, 114, 114, 114, 114, - /* 1940 */ 114, 94, 114, 77, 114, 98, 99, 81, 101, 83, - /* 1950 */ 84, 114, 86, 114, 114, 114, 114, 114, 114, 114, - /* 1960 */ 94, 114, 114, 114, 98, 99, 77, 101, 114, 114, - /* 1970 */ 81, 114, 83, 84, 114, 86, 114, 114, 114, 114, - /* 1980 */ 114, 114, 114, 94, 114, 114, 114, 98, 99, 77, - /* 1990 */ 101, 114, 114, 81, 114, 83, 84, 114, 86, 114, - /* 2000 */ 114, 114, 114, 114, 114, 114, 94, 114, 77, 114, - /* 2010 */ 98, 99, 81, 101, 83, 84, 114, 86, 114, 114, - /* 2020 */ 114, 114, 114, 114, 114, 94, 114, 77, 114, 98, - /* 2030 */ 99, 81, 101, 83, 84, 114, 86, 114, 114, 114, - /* 2040 */ 114, 114, 114, 114, 94, 114, 114, 114, 98, 99, - /* 2050 */ 77, 101, 114, 114, 81, 114, 83, 114, 114, 86, - /* 2060 */ 114, 114, 114, 114, 114, 114, 114, 94, 114, 114, - /* 2070 */ 114, 98, 99, 77, 101, 114, 114, 81, 114, 83, - /* 2080 */ 114, 114, 86, 114, 114, 114, 114, 114, 114, 114, - /* 2090 */ 94, 114, 77, 114, 98, 99, 81, 101, 83, 114, - /* 2100 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, - /* 2110 */ 114, 77, 114, 98, 99, 81, 101, 83, 114, 114, - /* 2120 */ 86, 114, 77, 114, 114, 114, 81, 114, 83, 114, - /* 2130 */ 114, 86, 98, 99, 114, 101, 114, 114, 114, 114, - /* 2140 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, - /* 2150 */ 114, 83, 77, 114, 86, 114, 81, 114, 83, 114, - /* 2160 */ 114, 86, 114, 114, 114, 114, 98, 99, 114, 101, - /* 2170 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, - /* 2180 */ 114, 83, 114, 114, 86, 114, 114, 114, 114, 77, - /* 2190 */ 114, 114, 114, 81, 114, 83, 98, 99, 86, 101, - /* 2200 */ 77, 114, 114, 114, 81, 114, 83, 114, 114, 86, - /* 2210 */ 98, 99, 114, 101, 114, 114, 114, 114, 114, 114, - /* 2220 */ 114, 98, 99, 114, 101, + /* 40 */ 41, 42, 43, 44, 4, 5, 6, 16, 46, 9, + /* 50 */ 10, 11, 75, 76, 77, 78, 79, 103, 59, 60, + /* 60 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + /* 70 */ 1, 78, 13, 1, 83, 82, 14, 84, 19, 88, + /* 80 */ 87, 83, 13, 52, 1, 13, 88, 96, 19, 17, + /* 90 */ 17, 19, 99, 100, 96, 102, 13, 90, 91, 14, + /* 100 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 110 */ 41, 42, 43, 44, 31, 32, 33, 34, 35, 36, + /* 120 */ 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, + /* 130 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + /* 140 */ 1, 30, 59, 60, 61, 62, 63, 64, 65, 66, + /* 150 */ 67, 68, 69, 70, 1, 2, 12, 15, 19, 15, + /* 160 */ 16, 12, 13, 24, 15, 104, 22, 106, 107, 58, + /* 170 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 180 */ 41, 42, 43, 44, 31, 32, 33, 34, 35, 36, + /* 190 */ 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, + /* 200 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + /* 210 */ 1, 15, 59, 60, 61, 62, 63, 64, 65, 66, + /* 220 */ 67, 68, 69, 70, 1, 29, 12, 13, 19, 15, + /* 230 */ 12, 106, 107, 15, 16, 103, 13, 105, 14, 15, + /* 240 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 250 */ 41, 42, 43, 44, 31, 32, 33, 34, 35, 36, + /* 260 */ 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, + /* 270 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + /* 280 */ 56, 15, 59, 60, 61, 62, 63, 64, 65, 66, + /* 290 */ 67, 68, 69, 70, 1, 78, 103, 84, 105, 82, + /* 300 */ 87, 84, 85, 86, 87, 13, 13, 12, 1, 14, + /* 310 */ 15, 19, 95, 88, 22, 102, 99, 100, 79, 102, + /* 320 */ 81, 55, 97, 98, 31, 32, 33, 34, 35, 36, + /* 330 */ 37, 38, 39, 40, 41, 42, 43, 44, 31, 32, + /* 340 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + /* 350 */ 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, + /* 360 */ 67, 68, 69, 70, 1, 58, 59, 60, 61, 62, + /* 370 */ 63, 64, 65, 66, 67, 68, 69, 70, 1, 13, + /* 380 */ 13, 13, 94, 13, 21, 19, 19, 19, 22, 19, + /* 390 */ 13, 106, 107, 105, 31, 32, 33, 34, 35, 36, + /* 400 */ 37, 38, 39, 40, 41, 42, 43, 44, 31, 32, + /* 410 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + /* 420 */ 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, + /* 430 */ 67, 68, 69, 70, 16, 17, 59, 60, 61, 62, + /* 440 */ 63, 64, 65, 66, 67, 68, 69, 70, 1, 78, + /* 450 */ 21, 1, 15, 82, 15, 84, 85, 86, 87, 30, + /* 460 */ 13, 12, 13, 13, 15, 17, 95, 17, 22, 19, + /* 470 */ 99, 100, 54, 102, 12, 47, 27, 15, 31, 32, + /* 480 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + /* 490 */ 43, 44, 1, 26, 12, 14, 46, 15, 16, 12, + /* 500 */ 52, 27, 15, 78, 54, 57, 59, 60, 61, 62, + /* 510 */ 63, 64, 65, 66, 67, 68, 69, 70, 72, 45, + /* 520 */ 14, 15, 31, 32, 33, 34, 35, 36, 37, 38, + /* 530 */ 39, 40, 41, 42, 43, 44, 1, 55, 47, 114, + /* 540 */ 12, 12, 55, 15, 15, 12, 1, 14, 15, 78, + /* 550 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + /* 560 */ 69, 70, 29, 27, 19, 15, 31, 32, 33, 34, + /* 570 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + /* 580 */ 1, 13, 46, 55, 113, 114, 12, 19, 12, 15, + /* 590 */ 54, 15, 13, 83, 59, 60, 61, 62, 63, 64, + /* 600 */ 65, 66, 67, 68, 69, 70, 96, 72, 105, 15, + /* 610 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 620 */ 41, 42, 43, 44, 1, 13, 13, 46, 13, 108, + /* 630 */ 13, 19, 19, 19, 19, 54, 19, 83, 59, 60, + /* 640 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + /* 650 */ 96, 14, 19, 30, 31, 32, 33, 34, 35, 36, + /* 660 */ 37, 38, 39, 40, 41, 42, 43, 44, 1, 13, + /* 670 */ 13, 13, 13, 13, 13, 19, 19, 19, 19, 19, + /* 680 */ 19, 13, 59, 60, 61, 62, 63, 64, 65, 66, + /* 690 */ 67, 68, 69, 70, 45, 29, 14, 47, 31, 32, + /* 700 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + /* 710 */ 43, 44, 1, 45, 47, 15, 13, 101, 47, 17, + /* 720 */ 22, 46, 2, 16, 108, 83, 59, 60, 61, 62, + /* 730 */ 63, 64, 65, 66, 67, 68, 69, 70, 96, 19, + /* 740 */ 52, 2, 31, 32, 33, 34, 35, 36, 37, 38, + /* 750 */ 39, 40, 41, 42, 43, 44, 54, 13, 46, 13, + /* 760 */ 15, 13, 48, 19, 15, 23, 13, 19, 96, 83, + /* 770 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + /* 780 */ 69, 70, 96, 12, 58, 14, 15, 56, 78, 18, + /* 790 */ 46, 20, 82, 45, 84, 85, 25, 87, 54, 28, + /* 800 */ 29, 12, 13, 32, 15, 95, 93, 101, 16, 99, + /* 810 */ 100, 29, 102, 83, 108, 19, 27, 46, 105, 109, + /* 820 */ 49, 50, 51, 52, 53, 93, 96, 56, 57, 58, + /* 830 */ 12, 56, 14, 15, 19, 83, 18, 105, 20, 83, + /* 840 */ 110, 8, 71, 25, 93, 12, 28, 29, 96, 13, + /* 850 */ 32, 18, 96, 20, 15, 19, 105, 26, 25, 83, + /* 860 */ 83, 28, 110, 103, 46, 88, 110, 49, 50, 51, + /* 870 */ 52, 53, 96, 96, 56, 57, 93, 12, 78, 14, + /* 880 */ 15, 45, 82, 18, 84, 20, 93, 87, 105, 71, + /* 890 */ 25, 93, 107, 28, 29, 95, 93, 32, 105, 99, + /* 900 */ 100, 93, 102, 105, 71, 72, 73, 83, 105, 92, + /* 910 */ 10, 46, 90, 105, 49, 50, 51, 52, 53, 16, + /* 920 */ 96, 56, 57, 2, 12, 104, 14, 15, 80, 26, + /* 930 */ 18, 93, 20, 19, 93, 8, 71, 25, 110, 12, + /* 940 */ 28, 29, 89, 105, 32, 18, 105, 20, 103, 46, + /* 950 */ 89, 89, 25, 103, 115, 28, 92, 54, 46, 89, + /* 960 */ 115, 49, 50, 51, 52, 53, 115, 115, 56, 57, + /* 970 */ 115, 12, 78, 14, 15, 115, 82, 18, 84, 20, + /* 980 */ 115, 87, 115, 71, 25, 115, 115, 28, 29, 95, + /* 990 */ 115, 32, 115, 99, 100, 115, 102, 115, 71, 72, + /* 1000 */ 73, 115, 115, 115, 115, 46, 115, 115, 49, 50, + /* 1010 */ 51, 52, 53, 115, 115, 56, 57, 115, 12, 78, + /* 1020 */ 14, 15, 115, 82, 18, 84, 20, 115, 87, 115, + /* 1030 */ 71, 25, 115, 115, 28, 29, 95, 115, 32, 115, + /* 1040 */ 99, 100, 115, 102, 115, 115, 115, 115, 115, 115, + /* 1050 */ 115, 115, 46, 115, 115, 49, 50, 51, 52, 53, + /* 1060 */ 115, 115, 56, 57, 115, 12, 78, 14, 15, 115, + /* 1070 */ 82, 18, 84, 20, 115, 87, 115, 71, 25, 115, + /* 1080 */ 115, 28, 29, 115, 115, 32, 115, 99, 100, 115, + /* 1090 */ 102, 115, 115, 115, 115, 115, 115, 115, 115, 46, + /* 1100 */ 115, 115, 49, 50, 51, 52, 53, 115, 115, 56, + /* 1110 */ 57, 115, 12, 78, 14, 15, 115, 82, 18, 84, + /* 1120 */ 20, 115, 87, 115, 71, 25, 115, 115, 28, 29, + /* 1130 */ 115, 115, 32, 115, 99, 100, 115, 102, 115, 115, + /* 1140 */ 115, 115, 115, 115, 115, 115, 46, 115, 115, 49, + /* 1150 */ 50, 51, 52, 53, 115, 115, 56, 57, 115, 12, + /* 1160 */ 78, 14, 15, 115, 82, 18, 84, 20, 115, 87, + /* 1170 */ 115, 71, 25, 115, 115, 28, 29, 115, 115, 32, + /* 1180 */ 115, 99, 100, 115, 102, 115, 115, 115, 115, 115, + /* 1190 */ 115, 115, 115, 46, 115, 115, 49, 50, 51, 52, + /* 1200 */ 53, 115, 115, 56, 57, 115, 12, 78, 14, 15, + /* 1210 */ 115, 82, 18, 84, 20, 115, 87, 115, 71, 25, + /* 1220 */ 115, 115, 28, 29, 115, 115, 32, 115, 99, 100, + /* 1230 */ 78, 102, 115, 115, 82, 115, 84, 115, 115, 87, + /* 1240 */ 46, 115, 115, 49, 50, 51, 52, 53, 115, 115, + /* 1250 */ 56, 99, 100, 12, 102, 14, 15, 115, 115, 18, + /* 1260 */ 115, 20, 115, 83, 115, 71, 25, 115, 88, 28, + /* 1270 */ 29, 115, 115, 32, 115, 115, 96, 97, 98, 78, + /* 1280 */ 115, 115, 115, 82, 115, 84, 85, 46, 87, 115, + /* 1290 */ 49, 50, 51, 52, 53, 115, 95, 56, 78, 115, + /* 1300 */ 99, 100, 82, 102, 84, 85, 115, 87, 115, 115, + /* 1310 */ 115, 115, 71, 112, 115, 95, 115, 115, 115, 99, + /* 1320 */ 100, 115, 102, 115, 115, 115, 115, 115, 115, 78, + /* 1330 */ 115, 111, 112, 82, 115, 84, 85, 86, 87, 115, + /* 1340 */ 115, 115, 115, 115, 115, 115, 95, 115, 78, 115, + /* 1350 */ 99, 100, 82, 102, 84, 85, 86, 87, 115, 115, + /* 1360 */ 115, 115, 115, 115, 115, 95, 115, 78, 115, 99, + /* 1370 */ 100, 82, 102, 84, 85, 86, 87, 115, 115, 115, + /* 1380 */ 115, 115, 115, 115, 95, 115, 78, 115, 99, 100, + /* 1390 */ 82, 102, 84, 85, 115, 87, 115, 115, 115, 115, + /* 1400 */ 115, 115, 115, 95, 115, 115, 115, 99, 100, 115, + /* 1410 */ 102, 115, 78, 115, 115, 115, 82, 109, 84, 85, + /* 1420 */ 115, 87, 115, 115, 90, 115, 115, 115, 115, 95, + /* 1430 */ 115, 78, 115, 99, 100, 82, 102, 84, 85, 115, + /* 1440 */ 87, 115, 115, 115, 115, 115, 115, 115, 95, 115, + /* 1450 */ 78, 115, 99, 100, 82, 102, 84, 85, 115, 87, + /* 1460 */ 115, 115, 109, 115, 115, 115, 115, 95, 115, 78, + /* 1470 */ 115, 99, 100, 82, 102, 84, 85, 115, 87, 115, + /* 1480 */ 115, 109, 115, 115, 115, 115, 95, 115, 115, 115, + /* 1490 */ 99, 100, 83, 102, 115, 78, 115, 88, 115, 82, + /* 1500 */ 115, 84, 85, 115, 87, 96, 97, 98, 115, 115, + /* 1510 */ 115, 115, 95, 115, 78, 115, 99, 100, 82, 102, + /* 1520 */ 84, 85, 115, 87, 115, 115, 115, 115, 115, 115, + /* 1530 */ 115, 95, 115, 78, 115, 99, 100, 82, 102, 84, + /* 1540 */ 85, 115, 87, 115, 115, 115, 115, 115, 115, 115, + /* 1550 */ 95, 115, 78, 115, 99, 100, 82, 102, 84, 85, + /* 1560 */ 115, 87, 115, 115, 115, 115, 115, 115, 115, 95, + /* 1570 */ 115, 115, 115, 99, 100, 83, 102, 115, 78, 115, + /* 1580 */ 88, 115, 82, 115, 84, 85, 115, 87, 96, 97, + /* 1590 */ 98, 115, 115, 115, 115, 95, 115, 78, 115, 99, + /* 1600 */ 100, 82, 102, 84, 85, 115, 87, 115, 115, 115, + /* 1610 */ 115, 115, 115, 115, 95, 115, 78, 115, 99, 100, + /* 1620 */ 82, 102, 84, 85, 115, 87, 115, 115, 115, 115, + /* 1630 */ 115, 115, 115, 95, 115, 78, 115, 99, 100, 82, + /* 1640 */ 102, 84, 85, 115, 87, 115, 115, 115, 115, 115, + /* 1650 */ 115, 115, 95, 115, 115, 115, 99, 100, 83, 102, + /* 1660 */ 115, 78, 115, 88, 115, 82, 115, 84, 85, 115, + /* 1670 */ 87, 96, 97, 98, 115, 115, 115, 115, 95, 115, + /* 1680 */ 78, 115, 99, 100, 82, 102, 84, 85, 115, 87, + /* 1690 */ 115, 115, 115, 115, 115, 115, 115, 95, 115, 78, + /* 1700 */ 115, 99, 100, 82, 102, 84, 85, 115, 87, 115, + /* 1710 */ 115, 115, 115, 115, 115, 115, 95, 115, 78, 115, + /* 1720 */ 99, 100, 82, 102, 84, 85, 115, 87, 115, 115, + /* 1730 */ 115, 115, 115, 115, 115, 95, 115, 115, 115, 99, + /* 1740 */ 100, 115, 102, 115, 78, 115, 115, 115, 82, 115, + /* 1750 */ 84, 85, 115, 87, 115, 115, 115, 115, 115, 115, + /* 1760 */ 115, 95, 115, 78, 115, 99, 100, 82, 102, 84, + /* 1770 */ 85, 115, 87, 115, 115, 115, 115, 115, 115, 115, + /* 1780 */ 95, 115, 78, 115, 99, 100, 82, 102, 84, 85, + /* 1790 */ 115, 87, 115, 115, 115, 115, 115, 115, 115, 95, + /* 1800 */ 115, 78, 115, 99, 100, 82, 102, 84, 85, 115, + /* 1810 */ 87, 115, 115, 115, 115, 115, 115, 115, 95, 115, + /* 1820 */ 115, 115, 99, 100, 115, 102, 115, 78, 115, 115, + /* 1830 */ 115, 82, 115, 84, 85, 115, 87, 115, 115, 115, + /* 1840 */ 115, 115, 115, 115, 95, 115, 78, 115, 99, 100, + /* 1850 */ 82, 102, 84, 85, 115, 87, 115, 115, 115, 115, + /* 1860 */ 115, 115, 115, 95, 115, 78, 115, 99, 100, 82, + /* 1870 */ 102, 84, 85, 115, 87, 115, 115, 115, 115, 115, + /* 1880 */ 115, 115, 95, 115, 78, 115, 99, 100, 82, 102, + /* 1890 */ 84, 85, 115, 87, 115, 115, 115, 115, 115, 115, + /* 1900 */ 115, 95, 115, 115, 115, 99, 100, 115, 102, 115, + /* 1910 */ 78, 115, 115, 115, 82, 115, 84, 85, 115, 87, + /* 1920 */ 115, 115, 115, 115, 115, 115, 115, 95, 115, 78, + /* 1930 */ 115, 99, 100, 82, 102, 84, 85, 115, 87, 115, + /* 1940 */ 115, 115, 115, 115, 115, 115, 95, 115, 78, 115, + /* 1950 */ 99, 100, 82, 102, 84, 85, 115, 87, 115, 115, + /* 1960 */ 115, 115, 115, 115, 115, 95, 115, 78, 115, 99, + /* 1970 */ 100, 82, 102, 84, 85, 115, 87, 115, 115, 115, + /* 1980 */ 115, 115, 115, 115, 95, 115, 115, 115, 99, 100, + /* 1990 */ 115, 102, 115, 78, 115, 115, 115, 82, 115, 84, + /* 2000 */ 85, 115, 87, 115, 115, 115, 115, 115, 115, 115, + /* 2010 */ 95, 115, 78, 115, 99, 100, 82, 102, 84, 115, + /* 2020 */ 115, 87, 115, 115, 115, 115, 115, 115, 115, 115, + /* 2030 */ 115, 115, 115, 99, 100, 115, 102, ); - const YY_SHIFT_USE_DFLT = -30; - const YY_SHIFT_MAX = 223; + const YY_SHIFT_USE_DFLT = -38; + const YY_SHIFT_MAX = 224; static public $yy_shift_ofst = array( - /* 0 */ 1, 1082, 997, 997, 1063, 1016, 950, 1063, 1082, 997, - /* 10 */ 1148, 1148, 997, 931, 997, 997, 997, 997, 997, 997, - /* 20 */ 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, - /* 30 */ 997, 997, 997, 997, 997, 997, 997, 997, 997, 1129, - /* 40 */ 1129, 1195, 1214, 1214, 1214, 1261, 1214, 1214, 1214, -1, - /* 50 */ 137, 68, 319, 319, 407, 250, 181, 363, 451, 784, - /* 60 */ 828, 696, 740, 652, 583, 495, 539, 872, 872, 872, - /* 70 */ 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, - /* 80 */ 872, 872, 872, 1, 1531, 69, 141, 172, 221, 414, - /* 90 */ 460, 460, 460, 1294, 40, 59, 102, 214, 323, 247, - /* 100 */ 321, 215, 312, 312, 312, 33, 312, 312, 356, 312, - /* 110 */ 312, 575, 33, 312, 466, 356, 312, 509, 332, 576, - /* 120 */ 332, 483, 591, 483, 483, 320, 940, 218, 283, 195, - /* 130 */ 151, 242, 399, 398, 170, 126, 286, 354, 397, 220, - /* 140 */ 358, 358, 358, 442, 358, 400, 444, 486, 529, 488, - /* 150 */ 487, 441, 358, 440, 576, 332, 332, 332, 660, 693, - /* 160 */ 699, 660, 457, -30, -30, -30, -30, -30, -30, -29, - /* 170 */ 292, 139, 106, 78, -26, 9, 71, 37, 534, 179, - /* 180 */ 308, 621, 231, 443, 163, 37, 492, 510, 498, 519, - /* 190 */ 565, 533, 578, 322, 672, 478, 457, 685, 489, 490, - /* 200 */ 538, 574, 216, 200, 104, 197, 464, 434, 641, 622, - /* 210 */ 508, 654, 364, 26, 310, 554, 579, 616, 536, 120, - /* 220 */ 552, 542, 531, 596, + /* 0 */ 1, 959, 912, 865, 959, 912, 818, 818, 865, 1147, + /* 10 */ 1100, 865, 865, 771, 865, 865, 865, 865, 865, 865, + /* 20 */ 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, + /* 30 */ 865, 865, 865, 865, 865, 865, 865, 865, 865, 1006, + /* 40 */ 1053, 1053, 1194, 1194, 1194, 1194, 1241, 1194, 1194, -1, + /* 50 */ 139, 69, 209, 209, 293, 153, 83, 223, 307, 623, + /* 60 */ 667, 535, 579, 491, 447, 363, 377, 711, 711, 711, + /* 70 */ 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, + /* 80 */ 711, 711, 711, 1, 927, 450, 72, 224, 448, 720, + /* 90 */ 545, 720, 720, 833, 40, 482, 144, 487, 366, 418, + /* 100 */ 836, 292, 506, 574, 462, 702, 462, 462, 529, 462, + /* 110 */ 462, 462, 576, 462, 506, 529, 462, 462, 614, 614, + /* 120 */ 73, 614, 73, 481, 633, 449, 789, 218, 295, 214, + /* 130 */ 528, 149, 568, 613, 370, 4, -37, 2, -37, 368, + /* 140 */ 367, 59, 612, 661, -37, 617, -37, 615, 656, 657, + /* 150 */ 660, 659, 658, -37, 914, 675, 73, 73, 900, 481, + /* 160 */ 921, 73, 914, -38, -38, -38, -38, -38, -38, -30, + /* 170 */ 533, 744, 903, 748, 536, 266, 581, 474, 581, 196, + /* 180 */ 31, 668, 9, 429, 111, 446, 831, 13, 85, 142, + /* 190 */ 467, 439, 437, 428, 62, 637, 839, 682, 726, 753, + /* 200 */ 749, 731, 815, 775, 782, 796, 745, 746, 671, 700, + /* 210 */ 650, 675, 707, 714, 739, 688, 742, 712, 703, 698, + /* 220 */ 792, 666, 649, 550, 594, ); - const YY_REDUCE_USE_DFLT = -104; + const YY_REDUCE_USE_DFLT = -77; const YY_REDUCE_MAX = 168; static public $yy_reduce_ofst = array( - /* 0 */ -22, 1240, 1276, 1408, 63, 245, -5, 175, 1308, 1327, - /* 10 */ 1360, 577, 1385, 1595, 1576, 1614, 1637, 1721, 1698, 1553, - /* 20 */ 1679, 1660, 1744, 1446, 1427, 1469, 1511, 1763, 1530, 1492, - /* 30 */ 1931, 1950, 1866, 1912, 1828, 1805, 1847, 1889, 1782, 1973, - /* 40 */ 1996, 2015, 2068, 2045, 2112, 2034, 2123, 2098, 2075, 183, - /* 50 */ 585, 1200, 585, 1233, 278, 278, 278, 278, 278, 278, - /* 60 */ 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - /* 70 */ 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - /* 80 */ 278, 278, 278, -62, 8, 932, 180, -6, 85, 582, - /* 90 */ 862, 909, 894, 474, 223, 268, 566, 268, 671, 329, - /* 100 */ 715, 671, 287, 946, 49, 241, 825, 850, 906, 893, - /* 110 */ 869, 329, 530, 966, 947, 825, 965, 825, 329, 303, - /* 120 */ -103, 573, 514, 382, 470, -81, -81, -81, 330, -81, - /* 130 */ -81, -81, 491, 491, 491, 491, 491, 491, 491, 511, - /* 140 */ 526, 526, 526, 491, 526, 491, 491, 491, 491, 491, - /* 150 */ 491, 491, 526, 491, 543, 593, 593, 593, 613, 623, - /* 160 */ 589, 544, 537, 545, 550, 524, 555, 500, 334, + /* 0 */ -23, 1220, 217, 1372, 1201, 1270, 1251, 371, 710, 1289, + /* 10 */ 1334, 1308, 1353, 1557, 1538, 1583, 1602, 1685, 1666, 1519, + /* 20 */ 1640, 1621, 1704, 1417, 1391, 1436, 1474, 1723, 1500, 1455, + /* 30 */ 1889, 1915, 1832, 1870, 1787, 1768, 1806, 1851, 1749, 800, + /* 40 */ 894, 941, 1035, 988, 1152, -7, 1934, 1129, 1082, 1180, + /* 50 */ 1409, 1492, 1492, 1575, 225, 225, 225, 225, 225, 225, + /* 60 */ 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, + /* 70 */ 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, + /* 80 */ 225, 225, 225, -76, 471, 777, -9, 213, 61, 730, + /* 90 */ -2, 756, 752, 425, 239, 193, 288, 193, 642, 285, + /* 100 */ 686, 642, 616, 803, 713, 285, 132, 732, 798, 793, + /* 110 */ 751, 783, 732, 808, 706, 732, 838, 841, 824, 776, + /* 120 */ 125, 510, 285, 7, 554, 503, 503, 503, 521, 503, + /* 130 */ 503, 503, 672, 672, 672, 672, 821, -46, 821, 672, + /* 140 */ 672, 672, 672, 672, 821, 672, 821, 672, 672, 672, + /* 150 */ 672, 672, 672, 821, 817, 760, 785, 785, 848, 822, + /* 160 */ 828, 785, 864, 853, 845, 870, 861, 850, 862, ); static public $yyExpectedTokens = array( /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 12, 18, 20, 25, 28, ), - /* 1 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 2 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 3 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 4 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 5 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 6 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 7 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 8 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 9 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 10 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 11 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 12 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 13 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 57, 70, ), - /* 14 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 15 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 16 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 17 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 18 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 19 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 20 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 21 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 22 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 23 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 24 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 25 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 26 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 27 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 28 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 29 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 30 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 31 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 32 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 33 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 34 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 35 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 36 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 37 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 38 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 39 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 40 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 41 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 42 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 43 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 44 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 45 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 46 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 47 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 48 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 49 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 50 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 51 */ array(1, 19, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 52 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 53 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 54 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 55 */ array(1, 21, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 56 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 57 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 58 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 59 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, ), - /* 60 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 61 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 62 */ array(1, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 63 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 64 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 65 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 66 */ array(1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 67 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 68 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 69 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 70 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 71 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 72 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 73 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 74 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 75 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 76 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 77 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 78 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 79 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 80 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 81 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 82 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 1 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 2 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 3 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 4 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 5 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 6 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 7 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 8 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 9 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 10 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 11 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 12 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 13 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 58, 71, ), + /* 14 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 15 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 16 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 17 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 18 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 19 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 20 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 21 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 22 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 23 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 24 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 25 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 26 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 27 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 28 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 29 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 30 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 31 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 32 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 33 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 34 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 35 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 36 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 37 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 38 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 39 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 40 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 41 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ), + /* 42 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ), + /* 43 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ), + /* 44 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ), + /* 45 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ), + /* 46 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ), + /* 47 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ), + /* 48 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ), + /* 49 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 50 */ array(1, 19, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 51 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 52 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 53 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 54 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 55 */ array(1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 56 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 57 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 58 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 59 */ array(1, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 60 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 61 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, ), + /* 62 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 63 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 64 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 65 */ array(1, 21, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 66 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 67 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 68 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 69 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 70 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 71 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 72 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 73 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 74 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 75 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 76 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 77 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 78 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 79 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 80 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 81 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), + /* 82 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ), /* 83 */ array(3, 4, 5, 6, 7, 8, 9, 12, 18, 20, 25, 28, ), - /* 84 */ array(8, 12, 18, 20, 25, 28, 70, 71, 72, ), - /* 85 */ array(1, 13, 17, 19, 46, 53, ), + /* 84 */ array(8, 12, 18, 20, 25, 28, 71, 72, 73, ), + /* 85 */ array(1, 13, 17, 19, 46, 54, ), /* 86 */ array(1, 13, 17, 19, ), - /* 87 */ array(14, 15, 55, ), - /* 88 */ array(17, 51, 56, ), - /* 89 */ array(1, 19, ), - /* 90 */ array(2, 19, ), + /* 87 */ array(14, 15, 56, ), + /* 88 */ array(17, 52, 57, ), + /* 89 */ array(2, 19, ), + /* 90 */ array(1, 19, ), /* 91 */ array(2, 19, ), /* 92 */ array(2, 19, ), - /* 93 */ array(8, 12, 18, 20, 25, 28, 70, 71, 72, ), + /* 93 */ array(8, 12, 18, 20, 25, 28, 71, 72, 73, ), /* 94 */ array(4, 5, 6, 9, 10, 11, ), - /* 95 */ array(12, 15, 16, 54, ), + /* 95 */ array(12, 15, 16, 55, ), /* 96 */ array(12, 15, 16, 22, ), - /* 97 */ array(12, 15, 54, ), + /* 97 */ array(12, 15, 55, ), /* 98 */ array(13, 19, 22, ), - /* 99 */ array(16, 17, 53, ), + /* 99 */ array(16, 17, 54, ), /* 100 */ array(13, 19, 45, ), /* 101 */ array(13, 19, 22, ), - /* 102 */ array(12, 15, ), + /* 102 */ array(14, 15, ), /* 103 */ array(12, 15, ), /* 104 */ array(12, 15, ), - /* 105 */ array(14, 15, ), + /* 105 */ array(17, 54, ), /* 106 */ array(12, 15, ), /* 107 */ array(12, 15, ), /* 108 */ array(12, 15, ), /* 109 */ array(12, 15, ), /* 110 */ array(12, 15, ), - /* 111 */ array(17, 53, ), - /* 112 */ array(14, 15, ), + /* 111 */ array(12, 15, ), + /* 112 */ array(12, 15, ), /* 113 */ array(12, 15, ), - /* 114 */ array(12, 15, ), + /* 114 */ array(14, 15, ), /* 115 */ array(12, 15, ), /* 116 */ array(12, 15, ), /* 117 */ array(12, 15, ), - /* 118 */ array(17, ), - /* 119 */ array(14, ), + /* 118 */ array(19, ), + /* 119 */ array(19, ), /* 120 */ array(17, ), /* 121 */ array(19, ), - /* 122 */ array(19, ), - /* 123 */ array(19, ), + /* 122 */ array(17, ), + /* 123 */ array(14, ), /* 124 */ array(19, ), /* 125 */ array(12, 13, 15, 27, ), /* 126 */ array(12, 13, 15, 27, ), - /* 127 */ array(12, 13, 15, ), + /* 127 */ array(12, 15, 16, ), /* 128 */ array(12, 14, 15, ), /* 129 */ array(12, 13, 15, ), - /* 130 */ array(12, 15, 16, ), - /* 131 */ array(12, 15, 54, ), + /* 130 */ array(12, 15, 55, ), + /* 131 */ array(12, 13, 15, ), /* 132 */ array(13, 19, ), /* 133 */ array(13, 19, ), /* 134 */ array(13, 19, ), /* 135 */ array(13, 19, ), - /* 136 */ array(13, 19, ), - /* 137 */ array(13, 19, ), - /* 138 */ array(13, 19, ), - /* 139 */ array(12, 46, ), - /* 140 */ array(51, 56, ), - /* 141 */ array(51, 56, ), - /* 142 */ array(51, 56, ), + /* 136 */ array(52, 57, ), + /* 137 */ array(12, 46, ), + /* 138 */ array(52, 57, ), + /* 139 */ array(13, 19, ), + /* 140 */ array(13, 19, ), + /* 141 */ array(13, 19, ), + /* 142 */ array(13, 19, ), /* 143 */ array(13, 19, ), - /* 144 */ array(51, 56, ), + /* 144 */ array(52, 57, ), /* 145 */ array(13, 19, ), - /* 146 */ array(13, 19, ), + /* 146 */ array(52, 57, ), /* 147 */ array(13, 19, ), /* 148 */ array(13, 19, ), /* 149 */ array(13, 19, ), /* 150 */ array(13, 19, ), /* 151 */ array(13, 19, ), - /* 152 */ array(51, 56, ), - /* 153 */ array(13, 19, ), - /* 154 */ array(14, ), - /* 155 */ array(17, ), + /* 152 */ array(13, 19, ), + /* 153 */ array(52, 57, ), + /* 154 */ array(19, ), + /* 155 */ array(46, ), /* 156 */ array(17, ), /* 157 */ array(17, ), - /* 158 */ array(19, ), - /* 159 */ array(10, ), + /* 158 */ array(10, ), + /* 159 */ array(14, ), /* 160 */ array(2, ), - /* 161 */ array(19, ), - /* 162 */ array(46, ), + /* 161 */ array(17, ), + /* 162 */ array(19, ), /* 163 */ array(), /* 164 */ array(), /* 165 */ array(), /* 166 */ array(), /* 167 */ array(), /* 168 */ array(), - /* 169 */ array(46, 51, 53, 57, ), + /* 169 */ array(46, 52, 54, 58, ), /* 170 */ array(12, 14, 15, 29, ), - /* 171 */ array(16, 26, 46, 53, ), - /* 172 */ array(13, 19, 46, 53, ), + /* 171 */ array(13, 19, 46, 54, ), + /* 172 */ array(16, 26, 46, 54, ), /* 173 */ array(13, 19, 45, ), - /* 174 */ array(27, 46, 53, ), - /* 175 */ array(2, 16, ), - /* 176 */ array(27, 45, ), - /* 177 */ array(46, 53, ), - /* 178 */ array(16, 51, ), - /* 179 */ array(30, 57, ), - /* 180 */ array(15, 29, ), + /* 174 */ array(27, 46, 54, ), + /* 175 */ array(15, 55, ), + /* 176 */ array(46, 54, ), + /* 177 */ array(27, 45, ), + /* 178 */ array(46, 54, ), + /* 179 */ array(15, 29, ), + /* 180 */ array(16, 52, ), /* 181 */ array(13, 45, ), - /* 182 */ array(22, 71, ), - /* 183 */ array(15, 54, ), - /* 184 */ array(21, 30, ), - /* 185 */ array(46, 53, ), - /* 186 */ array(51, ), - /* 187 */ array(15, ), - /* 188 */ array(46, ), - /* 189 */ array(48, ), - /* 190 */ array(29, ), - /* 191 */ array(13, ), - /* 192 */ array(13, ), + /* 182 */ array(2, 16, ), + /* 183 */ array(21, 30, ), + /* 184 */ array(30, 58, ), + /* 185 */ array(22, 72, ), + /* 186 */ array(26, ), + /* 187 */ array(14, ), + /* 188 */ array(14, ), + /* 189 */ array(15, ), + /* 190 */ array(26, ), + /* 191 */ array(15, ), + /* 192 */ array(15, ), /* 193 */ array(47, ), - /* 194 */ array(2, ), - /* 195 */ array(45, ), - /* 196 */ array(46, ), - /* 197 */ array(15, ), - /* 198 */ array(15, ), - /* 199 */ array(57, ), - /* 200 */ array(55, ), - /* 201 */ array(15, ), + /* 194 */ array(14, ), + /* 195 */ array(14, ), + /* 196 */ array(15, ), + /* 197 */ array(14, ), + /* 198 */ array(58, ), + /* 199 */ array(13, ), + /* 200 */ array(15, ), + /* 201 */ array(56, ), /* 202 */ array(19, ), - /* 203 */ array(55, ), - /* 204 */ array(47, ), - /* 205 */ array(14, ), - /* 206 */ array(16, ), - /* 207 */ array(22, ), - /* 208 */ array(15, ), - /* 209 */ array(14, ), - /* 210 */ array(14, ), - /* 211 */ array(19, ), - /* 212 */ array(26, ), - /* 213 */ array(47, ), - /* 214 */ array(15, ), - /* 215 */ array(15, ), - /* 216 */ array(16, ), - /* 217 */ array(15, ), + /* 203 */ array(56, ), + /* 204 */ array(29, ), + /* 205 */ array(19, ), + /* 206 */ array(15, ), + /* 207 */ array(13, ), + /* 208 */ array(47, ), + /* 209 */ array(15, ), + /* 210 */ array(47, ), + /* 211 */ array(46, ), + /* 212 */ array(16, ), + /* 213 */ array(48, ), + /* 214 */ array(2, ), + /* 215 */ array(52, ), + /* 216 */ array(23, ), + /* 217 */ array(46, ), /* 218 */ array(13, ), - /* 219 */ array(23, ), - /* 220 */ array(14, ), - /* 221 */ array(26, ), - /* 222 */ array(14, ), + /* 219 */ array(22, ), + /* 220 */ array(16, ), + /* 221 */ array(29, ), + /* 222 */ array(45, ), /* 223 */ array(15, ), - /* 224 */ array(), + /* 224 */ array(15, ), /* 225 */ array(), /* 226 */ array(), /* 227 */ array(), @@ -1067,50 +1030,53 @@ static public $yy_action = array( /* 354 */ array(), /* 355 */ array(), /* 356 */ array(), + /* 357 */ array(), + /* 358 */ array(), + /* 359 */ array(), ); static public $yy_default = array( - /* 0 */ 538, 521, 494, 494, 538, 538, 538, 538, 538, 494, - /* 10 */ 538, 538, 494, 538, 538, 538, 538, 538, 538, 538, - /* 20 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, - /* 30 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, - /* 40 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, - /* 50 */ 538, 411, 411, 411, 538, 538, 538, 538, 538, 538, - /* 60 */ 538, 538, 493, 538, 538, 538, 538, 440, 413, 441, - /* 70 */ 431, 524, 436, 396, 417, 444, 433, 432, 428, 522, - /* 80 */ 420, 523, 437, 357, 538, 452, 538, 538, 500, 411, - /* 90 */ 411, 411, 411, 538, 538, 467, 538, 467, 445, 460, - /* 100 */ 421, 445, 467, 538, 538, 538, 538, 538, 538, 538, - /* 110 */ 538, 460, 538, 538, 538, 538, 538, 538, 460, 538, - /* 120 */ 497, 411, 411, 411, 411, 538, 538, 538, 538, 538, - /* 130 */ 538, 468, 538, 538, 538, 538, 538, 538, 538, 467, - /* 140 */ 484, 465, 487, 538, 485, 538, 538, 538, 538, 538, - /* 150 */ 538, 538, 486, 538, 538, 498, 501, 481, 537, 371, - /* 160 */ 427, 537, 467, 503, 503, 503, 467, 503, 467, 452, - /* 170 */ 538, 416, 452, 421, 452, 479, 421, 452, 450, 538, - /* 180 */ 538, 421, 445, 538, 538, 442, 450, 538, 499, 454, - /* 190 */ 538, 538, 538, 538, 479, 421, 479, 538, 538, 538, - /* 200 */ 538, 538, 538, 538, 538, 538, 416, 445, 538, 538, - /* 210 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 418, - /* 220 */ 538, 538, 538, 538, 364, 398, 365, 463, 367, 473, - /* 230 */ 368, 488, 464, 475, 366, 363, 360, 492, 359, 358, - /* 240 */ 415, 491, 423, 394, 362, 361, 399, 372, 504, 505, - /* 250 */ 490, 375, 443, 404, 376, 378, 409, 403, 408, 377, - /* 260 */ 489, 374, 476, 393, 480, 370, 474, 419, 373, 424, - /* 270 */ 472, 397, 454, 536, 369, 531, 430, 429, 453, 425, - /* 280 */ 455, 456, 435, 434, 458, 379, 532, 469, 381, 382, - /* 290 */ 477, 533, 471, 470, 380, 483, 438, 509, 510, 511, - /* 300 */ 508, 507, 495, 496, 506, 512, 513, 459, 462, 439, - /* 310 */ 426, 517, 514, 515, 516, 466, 383, 527, 479, 530, - /* 320 */ 529, 526, 405, 406, 391, 525, 534, 535, 520, 519, - /* 330 */ 400, 401, 518, 528, 478, 402, 392, 407, 451, 386, - /* 340 */ 448, 457, 385, 461, 384, 422, 447, 387, 502, 390, - /* 350 */ 410, 389, 388, 482, 446, 449, 395, + /* 0 */ 544, 527, 544, 500, 544, 544, 544, 544, 500, 544, + /* 10 */ 544, 500, 500, 544, 544, 544, 544, 544, 544, 544, + /* 20 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, + /* 30 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, + /* 40 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, + /* 50 */ 414, 544, 414, 414, 544, 544, 544, 544, 544, 499, + /* 60 */ 544, 544, 544, 544, 544, 544, 544, 399, 444, 528, + /* 70 */ 420, 416, 435, 443, 436, 529, 423, 431, 447, 439, + /* 80 */ 440, 434, 530, 360, 544, 458, 544, 544, 506, 414, + /* 90 */ 414, 414, 414, 544, 544, 473, 544, 473, 448, 466, + /* 100 */ 424, 448, 544, 544, 544, 466, 473, 544, 544, 544, + /* 110 */ 544, 544, 544, 544, 544, 544, 544, 544, 414, 414, + /* 120 */ 503, 414, 466, 544, 414, 544, 544, 544, 544, 544, + /* 130 */ 474, 544, 544, 544, 544, 544, 490, 473, 493, 544, + /* 140 */ 544, 544, 544, 544, 492, 544, 491, 544, 544, 544, + /* 150 */ 544, 544, 544, 471, 543, 473, 507, 504, 374, 544, + /* 160 */ 430, 487, 543, 509, 473, 509, 509, 473, 509, 458, + /* 170 */ 544, 458, 419, 424, 458, 544, 445, 424, 458, 544, + /* 180 */ 454, 424, 485, 544, 544, 448, 544, 544, 544, 544, + /* 190 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, + /* 200 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, + /* 210 */ 544, 485, 419, 460, 485, 454, 421, 505, 544, 448, + /* 220 */ 544, 456, 424, 544, 544, 481, 470, 482, 401, 402, + /* 230 */ 368, 426, 480, 479, 367, 366, 381, 483, 363, 362, + /* 240 */ 497, 361, 418, 476, 380, 397, 365, 494, 364, 469, + /* 250 */ 460, 378, 486, 400, 542, 411, 442, 427, 373, 407, + /* 260 */ 406, 477, 375, 377, 422, 372, 369, 495, 428, 478, + /* 270 */ 457, 376, 446, 370, 511, 371, 510, 496, 441, 379, + /* 280 */ 540, 437, 382, 538, 413, 508, 450, 449, 452, 410, + /* 290 */ 383, 386, 467, 387, 385, 409, 539, 425, 384, 438, + /* 300 */ 451, 517, 518, 519, 516, 515, 512, 513, 514, 520, + /* 310 */ 521, 501, 489, 453, 468, 465, 522, 523, 429, 408, + /* 320 */ 388, 535, 537, 502, 536, 463, 531, 532, 533, 541, + /* 330 */ 534, 396, 432, 412, 525, 526, 455, 433, 524, 394, + /* 340 */ 461, 389, 390, 488, 404, 472, 485, 484, 405, 403, + /* 350 */ 464, 462, 395, 398, 475, 393, 391, 392, 459, 498, ); - const YYNOCODE = 115; + const YYNOCODE = 116; const YYSTACKDEPTH = 100; - const YYNSTATE = 357; - const YYNRULE = 181; - const YYERRORSYMBOL = 73; + const YYNSTATE = 360; + const YYNRULE = 184; + const YYERRORSYMBOL = 74; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; static public $yyFallback = array( @@ -1151,23 +1117,23 @@ static public $yy_action = array( 'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF', 'OPENP', 'CLOSEP', - 'QMARK', 'NOT', 'TYPECAST', 'DOT', - 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT', 'HATCH', - 'OPENB', 'CLOSEB', 'EQUALS', 'NOTEQUALS', - 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', - 'IDENTITY', 'NONEIDENTITY', 'MOD', 'LAND', - 'LOR', 'LXOR', 'QUOTE', 'BACKTICK', - 'DOLLARID', 'error', 'start', 'template', - 'template_element', 'smartytag', 'literal', 'literal_elements', - 'literal_element', 'value', 'attributes', 'variable', - 'expr', 'ternary', 'varindexed', 'modifier', - 'modparameters', 'statement', 'statements', 'optspace', - 'varvar', 'foraction', 'array', 'attribute', - 'ifcond', 'lop', 'function', 'doublequoted_with_quotes', - 'static_class_access', 'object', 'arrayindex', 'indexdef', - 'varvarele', 'objectchain', 'objectelement', 'method', - 'params', 'modparameter', 'arrayelements', 'arrayelement', - 'doublequoted', 'doublequotedcontent', + 'QMARK', 'NOT', 'TYPECAST', 'HEX', + 'DOT', 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT', + 'HATCH', 'OPENB', 'CLOSEB', 'EQUALS', + 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', + 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', 'MOD', + 'LAND', 'LOR', 'LXOR', 'QUOTE', + 'BACKTICK', 'DOLLARID', 'error', 'start', + 'template', 'template_element', 'smartytag', 'literal', + 'literal_elements', 'literal_element', 'value', 'attributes', + 'variable', 'expr', 'ternary', 'varindexed', + 'modifier', 'modparameters', 'statement', 'statements', + 'optspace', 'varvar', 'foraction', 'array', + 'attribute', 'ifcond', 'lop', 'function', + 'doublequoted_with_quotes', 'static_class_access', 'object', 'arrayindex', + 'indexdef', 'varvarele', 'objectchain', 'objectelement', + 'method', 'params', 'modparameter', 'arrayelements', + 'arrayelement', 'doublequoted', 'doublequotedcontent', ); static public $yyRuleName = array( @@ -1264,94 +1230,97 @@ static public $yy_action = array( /* 90 */ "value ::= NOT value", /* 91 */ "value ::= TYPECAST value", /* 92 */ "value ::= variable INCDEC", - /* 93 */ "value ::= INTEGER", - /* 94 */ "value ::= INTEGER DOT INTEGER", - /* 95 */ "value ::= ID", - /* 96 */ "value ::= function", - /* 97 */ "value ::= OPENP expr CLOSEP", - /* 98 */ "value ::= SINGLEQUOTESTRING", - /* 99 */ "value ::= doublequoted_with_quotes", - /* 100 */ "value ::= ID DOUBLECOLON static_class_access", - /* 101 */ "value ::= varindexed DOUBLECOLON static_class_access", - /* 102 */ "value ::= smartytag", - /* 103 */ "variable ::= varindexed", - /* 104 */ "variable ::= DOLLAR varvar AT ID", - /* 105 */ "variable ::= object", - /* 106 */ "variable ::= HATCH ID HATCH", - /* 107 */ "variable ::= HATCH variable HATCH", - /* 108 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 109 */ "arrayindex ::= arrayindex indexdef", - /* 110 */ "arrayindex ::=", - /* 111 */ "indexdef ::= DOT DOLLAR varvar", - /* 112 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 113 */ "indexdef ::= DOT ID", - /* 114 */ "indexdef ::= DOT INTEGER", - /* 115 */ "indexdef ::= DOT LDEL expr RDEL", - /* 116 */ "indexdef ::= OPENB ID CLOSEB", - /* 117 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 118 */ "indexdef ::= OPENB expr CLOSEB", - /* 119 */ "indexdef ::= OPENB CLOSEB", - /* 120 */ "varvar ::= varvarele", - /* 121 */ "varvar ::= varvar varvarele", - /* 122 */ "varvarele ::= ID", - /* 123 */ "varvarele ::= LDEL expr RDEL", - /* 124 */ "object ::= varindexed objectchain", - /* 125 */ "objectchain ::= objectelement", - /* 126 */ "objectchain ::= objectchain objectelement", - /* 127 */ "objectelement ::= PTR ID arrayindex", - /* 128 */ "objectelement ::= PTR DOLLAR varvar arrayindex", - /* 129 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 130 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 131 */ "objectelement ::= PTR method", - /* 132 */ "function ::= ID OPENP params CLOSEP", - /* 133 */ "method ::= ID OPENP params CLOSEP", - /* 134 */ "method ::= DOLLAR ID OPENP params CLOSEP", - /* 135 */ "params ::= expr COMMA params", - /* 136 */ "params ::= expr", - /* 137 */ "params ::=", - /* 138 */ "modifier ::= VERT AT ID", - /* 139 */ "modifier ::= VERT ID", - /* 140 */ "static_class_access ::= method", - /* 141 */ "static_class_access ::= method objectchain", - /* 142 */ "static_class_access ::= ID", - /* 143 */ "static_class_access ::= DOLLAR ID arrayindex", - /* 144 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", - /* 145 */ "modparameters ::= modparameters modparameter", - /* 146 */ "modparameters ::=", - /* 147 */ "modparameter ::= COLON value", - /* 148 */ "modparameter ::= COLON array", - /* 149 */ "ifcond ::= EQUALS", - /* 150 */ "ifcond ::= NOTEQUALS", - /* 151 */ "ifcond ::= GREATERTHAN", - /* 152 */ "ifcond ::= LESSTHAN", - /* 153 */ "ifcond ::= GREATEREQUAL", - /* 154 */ "ifcond ::= LESSEQUAL", - /* 155 */ "ifcond ::= IDENTITY", - /* 156 */ "ifcond ::= NONEIDENTITY", - /* 157 */ "ifcond ::= MOD", - /* 158 */ "lop ::= LAND", - /* 159 */ "lop ::= LOR", - /* 160 */ "lop ::= LXOR", - /* 161 */ "array ::= OPENB arrayelements CLOSEB", - /* 162 */ "arrayelements ::= arrayelement", - /* 163 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 164 */ "arrayelements ::=", - /* 165 */ "arrayelement ::= value APTR expr", - /* 166 */ "arrayelement ::= ID APTR expr", - /* 167 */ "arrayelement ::= expr", - /* 168 */ "doublequoted_with_quotes ::= QUOTE QUOTE", - /* 169 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", - /* 170 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 171 */ "doublequoted ::= doublequotedcontent", - /* 172 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 173 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 174 */ "doublequotedcontent ::= DOLLARID", - /* 175 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 176 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 177 */ "doublequotedcontent ::= smartytag", - /* 178 */ "doublequotedcontent ::= OTHER", - /* 179 */ "optspace ::= SPACE", - /* 180 */ "optspace ::=", + /* 93 */ "value ::= HEX", + /* 94 */ "value ::= INTEGER", + /* 95 */ "value ::= INTEGER DOT INTEGER", + /* 96 */ "value ::= INTEGER DOT", + /* 97 */ "value ::= DOT INTEGER", + /* 98 */ "value ::= ID", + /* 99 */ "value ::= function", + /* 100 */ "value ::= OPENP expr CLOSEP", + /* 101 */ "value ::= SINGLEQUOTESTRING", + /* 102 */ "value ::= doublequoted_with_quotes", + /* 103 */ "value ::= ID DOUBLECOLON static_class_access", + /* 104 */ "value ::= varindexed DOUBLECOLON static_class_access", + /* 105 */ "value ::= smartytag", + /* 106 */ "variable ::= varindexed", + /* 107 */ "variable ::= DOLLAR varvar AT ID", + /* 108 */ "variable ::= object", + /* 109 */ "variable ::= HATCH ID HATCH", + /* 110 */ "variable ::= HATCH variable HATCH", + /* 111 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 112 */ "arrayindex ::= arrayindex indexdef", + /* 113 */ "arrayindex ::=", + /* 114 */ "indexdef ::= DOT DOLLAR varvar", + /* 115 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 116 */ "indexdef ::= DOT ID", + /* 117 */ "indexdef ::= DOT INTEGER", + /* 118 */ "indexdef ::= DOT LDEL expr RDEL", + /* 119 */ "indexdef ::= OPENB ID CLOSEB", + /* 120 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 121 */ "indexdef ::= OPENB expr CLOSEB", + /* 122 */ "indexdef ::= OPENB CLOSEB", + /* 123 */ "varvar ::= varvarele", + /* 124 */ "varvar ::= varvar varvarele", + /* 125 */ "varvarele ::= ID", + /* 126 */ "varvarele ::= LDEL expr RDEL", + /* 127 */ "object ::= varindexed objectchain", + /* 128 */ "objectchain ::= objectelement", + /* 129 */ "objectchain ::= objectchain objectelement", + /* 130 */ "objectelement ::= PTR ID arrayindex", + /* 131 */ "objectelement ::= PTR DOLLAR varvar arrayindex", + /* 132 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 133 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 134 */ "objectelement ::= PTR method", + /* 135 */ "function ::= ID OPENP params CLOSEP", + /* 136 */ "method ::= ID OPENP params CLOSEP", + /* 137 */ "method ::= DOLLAR ID OPENP params CLOSEP", + /* 138 */ "params ::= expr COMMA params", + /* 139 */ "params ::= expr", + /* 140 */ "params ::=", + /* 141 */ "modifier ::= VERT AT ID", + /* 142 */ "modifier ::= VERT ID", + /* 143 */ "static_class_access ::= method", + /* 144 */ "static_class_access ::= method objectchain", + /* 145 */ "static_class_access ::= ID", + /* 146 */ "static_class_access ::= DOLLAR ID arrayindex", + /* 147 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", + /* 148 */ "modparameters ::= modparameters modparameter", + /* 149 */ "modparameters ::=", + /* 150 */ "modparameter ::= COLON value", + /* 151 */ "modparameter ::= COLON array", + /* 152 */ "ifcond ::= EQUALS", + /* 153 */ "ifcond ::= NOTEQUALS", + /* 154 */ "ifcond ::= GREATERTHAN", + /* 155 */ "ifcond ::= LESSTHAN", + /* 156 */ "ifcond ::= GREATEREQUAL", + /* 157 */ "ifcond ::= LESSEQUAL", + /* 158 */ "ifcond ::= IDENTITY", + /* 159 */ "ifcond ::= NONEIDENTITY", + /* 160 */ "ifcond ::= MOD", + /* 161 */ "lop ::= LAND", + /* 162 */ "lop ::= LOR", + /* 163 */ "lop ::= LXOR", + /* 164 */ "array ::= OPENB arrayelements CLOSEB", + /* 165 */ "arrayelements ::= arrayelement", + /* 166 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 167 */ "arrayelements ::=", + /* 168 */ "arrayelement ::= value APTR expr", + /* 169 */ "arrayelement ::= ID APTR expr", + /* 170 */ "arrayelement ::= expr", + /* 171 */ "doublequoted_with_quotes ::= QUOTE QUOTE", + /* 172 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", + /* 173 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 174 */ "doublequoted ::= doublequotedcontent", + /* 175 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 176 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", + /* 177 */ "doublequotedcontent ::= DOLLARID", + /* 178 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 179 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 180 */ "doublequotedcontent ::= smartytag", + /* 181 */ "doublequotedcontent ::= OTHER", + /* 182 */ "optspace ::= SPACE", + /* 183 */ "optspace ::=", ); function tokenName($tokenType) @@ -1611,7 +1580,7 @@ static public $yy_action = array( $this->internalError = true; $this->compiler->trigger_template_error("Stack overflow in template parser"); -#line 1610 "smarty_internal_templateparser.php" +#line 1579 "smarty_internal_templateparser.php" return; } $yytos = new TP_yyStackEntry; @@ -1632,187 +1601,190 @@ static public $yy_action = array( } static public $yyRuleInfo = array( - array( 'lhs' => 74, 'rhs' => 1 ), array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 2 ), array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 2 ), - array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), array( 'lhs' => 79, 'rhs' => 2 ), - array( 'lhs' => 79, 'rhs' => 0 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 6 ), - array( 'lhs' => 77, 'rhs' => 6 ), - array( 'lhs' => 77, 'rhs' => 7 ), - array( 'lhs' => 77, 'rhs' => 7 ), - array( 'lhs' => 77, 'rhs' => 6 ), - array( 'lhs' => 77, 'rhs' => 6 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 6 ), - array( 'lhs' => 77, 'rhs' => 6 ), - array( 'lhs' => 77, 'rhs' => 8 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 12 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 7 ), - array( 'lhs' => 77, 'rhs' => 8 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 7 ), - array( 'lhs' => 77, 'rhs' => 10 ), - array( 'lhs' => 77, 'rhs' => 7 ), - array( 'lhs' => 77, 'rhs' => 10 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 6 ), - array( 'lhs' => 77, 'rhs' => 5 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 80, 'rhs' => 2 ), + array( 'lhs' => 80, 'rhs' => 0 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 8 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 12 ), + array( 'lhs' => 94, 'rhs' => 2 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 8 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 10 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 10 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 5 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 0 ), + array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 96, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 4 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 4 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 86, 'rhs' => 7 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 2 ), array( 'lhs' => 82, 'rhs' => 2 ), array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 0 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 89, 'rhs' => 4 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 1 ), array( 'lhs' => 84, 'rhs' => 1 ), array( 'lhs' => 84, 'rhs' => 4 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), array( 'lhs' => 84, 'rhs' => 1 ), array( 'lhs' => 84, 'rhs' => 3 ), array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 7 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 2 ), - array( 'lhs' => 81, 'rhs' => 2 ), - array( 'lhs' => 81, 'rhs' => 2 ), - array( 'lhs' => 81, 'rhs' => 2 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 0 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 5 ), + array( 'lhs' => 87, 'rhs' => 3 ), array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 4 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 5 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 92, 'rhs' => 1 ), - array( 'lhs' => 92, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 0 ), array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 5 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 4 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 5 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 2 ), array( 'lhs' => 105, 'rhs' => 1 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 4 ), - array( 'lhs' => 106, 'rhs' => 5 ), - array( 'lhs' => 106, 'rhs' => 6 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 1 ), array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 107, 'rhs' => 3 ), array( 'lhs' => 107, 'rhs' => 4 ), array( 'lhs' => 107, 'rhs' => 5 ), - array( 'lhs' => 108, 'rhs' => 3 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 0 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 3 ), - array( 'lhs' => 100, 'rhs' => 4 ), + array( 'lhs' => 107, 'rhs' => 6 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 108, 'rhs' => 4 ), + array( 'lhs' => 108, 'rhs' => 5 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 88, 'rhs' => 3 ), array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 0 ), - array( 'lhs' => 109, 'rhs' => 2 ), - array( 'lhs' => 109, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 4 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 89, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 110, 'rhs' => 2 ), array( 'lhs' => 97, 'rhs' => 1 ), array( 'lhs' => 97, 'rhs' => 1 ), array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 0 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 3 ), array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 0 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 3 ), - array( 'lhs' => 113, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 2 ), + array( 'lhs' => 100, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 2 ), array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 3 ), - array( 'lhs' => 113, 'rhs' => 3 ), - array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 0 ), + array( 'lhs' => 114, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 114, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 0 ), ); static public $yyReduceMap = array( @@ -1823,12 +1795,13 @@ static public $yy_action = array( 64 => 0, 88 => 0, 93 => 0, - 96 => 0, - 98 => 0, + 94 => 0, 99 => 0, - 105 => 0, - 140 => 0, - 162 => 0, + 101 => 0, + 102 => 0, + 108 => 0, + 143 => 0, + 165 => 0, 1 => 1, 2 => 2, 3 => 3, @@ -1845,7 +1818,7 @@ static public $yy_action = array( 89 => 13, 91 => 13, 92 => 13, - 141 => 13, + 144 => 13, 17 => 17, 18 => 17, 19 => 19, @@ -1871,9 +1844,9 @@ static public $yy_action = array( 39 => 39, 40 => 40, 53 => 40, - 136 => 40, - 142 => 40, - 167 => 40, + 139 => 40, + 145 => 40, + 170 => 40, 41 => 41, 42 => 42, 43 => 43, @@ -1901,8 +1874,8 @@ static public $yy_action = array( 67 => 66, 68 => 66, 69 => 69, - 120 => 69, - 179 => 69, + 123 => 69, + 182 => 69, 70 => 70, 71 => 71, 74 => 71, @@ -1922,33 +1895,32 @@ static public $yy_action = array( 86 => 86, 87 => 87, 90 => 90, - 94 => 94, 95 => 95, + 96 => 96, 97 => 97, + 98 => 98, 100 => 100, - 101 => 101, - 102 => 102, 103 => 103, 104 => 104, + 105 => 105, 106 => 106, 107 => 107, - 108 => 108, 109 => 109, 110 => 110, - 146 => 110, 111 => 111, 112 => 112, 113 => 113, + 149 => 113, 114 => 114, 115 => 115, - 118 => 115, 116 => 116, 117 => 117, + 118 => 118, + 121 => 118, 119 => 119, - 180 => 119, - 121 => 121, + 120 => 120, 122 => 122, - 123 => 123, + 183 => 122, 124 => 124, 125 => 125, 126 => 126, @@ -1961,17 +1933,17 @@ static public $yy_action = array( 133 => 133, 134 => 134, 135 => 135, + 136 => 136, 137 => 137, 138 => 138, - 139 => 138, - 143 => 143, - 144 => 144, - 145 => 145, + 140 => 140, + 141 => 141, + 142 => 141, + 146 => 146, 147 => 147, - 148 => 147, - 149 => 149, + 148 => 148, 150 => 150, - 151 => 151, + 151 => 150, 152 => 152, 153 => 153, 154 => 154, @@ -1982,25 +1954,28 @@ static public $yy_action = array( 159 => 159, 160 => 160, 161 => 161, + 162 => 162, 163 => 163, 164 => 164, - 165 => 165, 166 => 166, + 167 => 167, 168 => 168, 169 => 169, - 170 => 170, 171 => 171, 172 => 172, - 173 => 172, - 175 => 172, + 173 => 173, 174 => 174, - 176 => 176, + 175 => 175, + 176 => 175, + 178 => 175, 177 => 177, - 178 => 178, + 179 => 179, + 180 => 180, + 181 => 181, ); #line 91 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1999 "smarty_internal_templateparser.php" +#line 1974 "smarty_internal_templateparser.php" #line 97 "smarty_internal_templateparser.y" function yy_r1(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; @@ -2009,7 +1984,7 @@ static public $yy_action = array( $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor; } } -#line 2008 "smarty_internal_templateparser.php" +#line 1983 "smarty_internal_templateparser.php" #line 105 "smarty_internal_templateparser.y" function yy_r2(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; @@ -2019,7 +1994,7 @@ static public $yy_action = array( $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } } -#line 2018 "smarty_internal_templateparser.php" +#line 1993 "smarty_internal_templateparser.php" #line 118 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { @@ -2031,10 +2006,10 @@ static public $yy_action = array( $this->compiler->has_variable_string = false; $this->block_nesting_level = count($this->compiler->_tag_stack); } -#line 2030 "smarty_internal_templateparser.php" +#line 2005 "smarty_internal_templateparser.php" #line 130 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 2033 "smarty_internal_templateparser.php" +#line 2008 "smarty_internal_templateparser.php" #line 136 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { @@ -2047,7 +2022,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2046 "smarty_internal_templateparser.php" +#line 2021 "smarty_internal_templateparser.php" #line 148 "smarty_internal_templateparser.y" function yy_r7(){if ($this->is_xml) { $this->compiler->tag_nocache = true; @@ -2063,7 +2038,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2062 "smarty_internal_templateparser.php" +#line 2037 "smarty_internal_templateparser.php" #line 163 "smarty_internal_templateparser.y" function yy_r8(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); @@ -2071,10 +2046,10 @@ static public $yy_action = array( $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } } -#line 2070 "smarty_internal_templateparser.php" +#line 2045 "smarty_internal_templateparser.php" #line 171 "smarty_internal_templateparser.y" function yy_r9(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = $this->compiler->processNocacheCode("", $this->compiler, true); } -#line 2073 "smarty_internal_templateparser.php" +#line 2048 "smarty_internal_templateparser.php" #line 174 "smarty_internal_templateparser.y" function yy_r10(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); @@ -2082,114 +2057,114 @@ static public $yy_action = array( $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } } -#line 2081 "smarty_internal_templateparser.php" +#line 2056 "smarty_internal_templateparser.php" #line 182 "smarty_internal_templateparser.y" function yy_r11(){ $this->_retvalue = ''; } -#line 2084 "smarty_internal_templateparser.php" +#line 2059 "smarty_internal_templateparser.php" #line 183 "smarty_internal_templateparser.y" function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2087 "smarty_internal_templateparser.php" +#line 2062 "smarty_internal_templateparser.php" #line 185 "smarty_internal_templateparser.y" function yy_r13(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2090 "smarty_internal_templateparser.php" +#line 2065 "smarty_internal_templateparser.php" #line 190 "smarty_internal_templateparser.y" function yy_r17(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2093 "smarty_internal_templateparser.php" +#line 2068 "smarty_internal_templateparser.php" #line 192 "smarty_internal_templateparser.y" function yy_r19(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2096 "smarty_internal_templateparser.php" +#line 2071 "smarty_internal_templateparser.php" #line 200 "smarty_internal_templateparser.y" function yy_r20(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2099 "smarty_internal_templateparser.php" +#line 2074 "smarty_internal_templateparser.php" #line 201 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2102 "smarty_internal_templateparser.php" +#line 2077 "smarty_internal_templateparser.php" #line 212 "smarty_internal_templateparser.y" function yy_r25(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2105 "smarty_internal_templateparser.php" +#line 2080 "smarty_internal_templateparser.php" #line 214 "smarty_internal_templateparser.y" function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2108 "smarty_internal_templateparser.php" +#line 2083 "smarty_internal_templateparser.php" #line 216 "smarty_internal_templateparser.y" function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } -#line 2111 "smarty_internal_templateparser.php" +#line 2086 "smarty_internal_templateparser.php" #line 219 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2114 "smarty_internal_templateparser.php" +#line 2089 "smarty_internal_templateparser.php" #line 220 "smarty_internal_templateparser.y" function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2117 "smarty_internal_templateparser.php" +#line 2092 "smarty_internal_templateparser.php" #line 222 "smarty_internal_templateparser.y" function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2120 "smarty_internal_templateparser.php" +#line 2095 "smarty_internal_templateparser.php" #line 224 "smarty_internal_templateparser.y" function yy_r34(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2125 "smarty_internal_templateparser.php" +#line 2100 "smarty_internal_templateparser.php" #line 228 "smarty_internal_templateparser.y" function yy_r35(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2130 "smarty_internal_templateparser.php" +#line 2105 "smarty_internal_templateparser.php" #line 232 "smarty_internal_templateparser.y" function yy_r36(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2133 "smarty_internal_templateparser.php" +#line 2108 "smarty_internal_templateparser.php" #line 235 "smarty_internal_templateparser.y" function yy_r38(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2137 "smarty_internal_templateparser.php" +#line 2112 "smarty_internal_templateparser.php" #line 238 "smarty_internal_templateparser.y" function yy_r39(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2140 "smarty_internal_templateparser.php" +#line 2115 "smarty_internal_templateparser.php" #line 239 "smarty_internal_templateparser.y" function yy_r40(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2143 "smarty_internal_templateparser.php" +#line 2118 "smarty_internal_templateparser.php" #line 240 "smarty_internal_templateparser.y" function yy_r41(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2146 "smarty_internal_templateparser.php" +#line 2121 "smarty_internal_templateparser.php" #line 241 "smarty_internal_templateparser.y" function yy_r42(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2149 "smarty_internal_templateparser.php" +#line 2124 "smarty_internal_templateparser.php" #line 243 "smarty_internal_templateparser.y" function yy_r43(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); } -#line 2152 "smarty_internal_templateparser.php" +#line 2127 "smarty_internal_templateparser.php" #line 245 "smarty_internal_templateparser.y" function yy_r44(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2156 "smarty_internal_templateparser.php" +#line 2131 "smarty_internal_templateparser.php" #line 247 "smarty_internal_templateparser.y" function yy_r45(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2160 "smarty_internal_templateparser.php" +#line 2135 "smarty_internal_templateparser.php" #line 249 "smarty_internal_templateparser.y" function yy_r46(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2164 "smarty_internal_templateparser.php" +#line 2139 "smarty_internal_templateparser.php" #line 251 "smarty_internal_templateparser.y" function yy_r47(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2168 "smarty_internal_templateparser.php" +#line 2143 "smarty_internal_templateparser.php" #line 255 "smarty_internal_templateparser.y" function yy_r48(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2171 "smarty_internal_templateparser.php" +#line 2146 "smarty_internal_templateparser.php" #line 256 "smarty_internal_templateparser.y" function yy_r49(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2174 "smarty_internal_templateparser.php" +#line 2149 "smarty_internal_templateparser.php" #line 257 "smarty_internal_templateparser.y" function yy_r50(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2179 "smarty_internal_templateparser.php" +#line 2154 "smarty_internal_templateparser.php" #line 261 "smarty_internal_templateparser.y" function yy_r51(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2182 "smarty_internal_templateparser.php" +#line 2157 "smarty_internal_templateparser.php" #line 268 "smarty_internal_templateparser.y" function yy_r52(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[key($this->yystack[$this->yyidx + 0]->minor)] = $this->yystack[$this->yyidx + 0]->minor[key($this->yystack[$this->yyidx + 0]->minor)]; } -#line 2185 "smarty_internal_templateparser.php" +#line 2160 "smarty_internal_templateparser.php" #line 272 "smarty_internal_templateparser.y" function yy_r54(){ $this->_retvalue = array(); } -#line 2188 "smarty_internal_templateparser.php" +#line 2163 "smarty_internal_templateparser.php" #line 275 "smarty_internal_templateparser.y" function yy_r55(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true'); @@ -2199,78 +2174,84 @@ static public $yy_action = array( $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null'); } else $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2198 "smarty_internal_templateparser.php" +#line 2173 "smarty_internal_templateparser.php" #line 283 "smarty_internal_templateparser.y" function yy_r56(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2201 "smarty_internal_templateparser.php" +#line 2176 "smarty_internal_templateparser.php" #line 286 "smarty_internal_templateparser.y" function yy_r59(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2204 "smarty_internal_templateparser.php" +#line 2179 "smarty_internal_templateparser.php" #line 287 "smarty_internal_templateparser.y" function yy_r60(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2207 "smarty_internal_templateparser.php" +#line 2182 "smarty_internal_templateparser.php" #line 293 "smarty_internal_templateparser.y" function yy_r61(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2210 "smarty_internal_templateparser.php" +#line 2185 "smarty_internal_templateparser.php" #line 294 "smarty_internal_templateparser.y" function yy_r62(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2213 "smarty_internal_templateparser.php" +#line 2188 "smarty_internal_templateparser.php" #line 296 "smarty_internal_templateparser.y" function yy_r63(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2216 "smarty_internal_templateparser.php" +#line 2191 "smarty_internal_templateparser.php" #line 305 "smarty_internal_templateparser.y" function yy_r65(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2219 "smarty_internal_templateparser.php" +#line 2194 "smarty_internal_templateparser.php" #line 307 "smarty_internal_templateparser.y" function yy_r66(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2222 "smarty_internal_templateparser.php" +#line 2197 "smarty_internal_templateparser.php" #line 313 "smarty_internal_templateparser.y" function yy_r69(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2225 "smarty_internal_templateparser.php" +#line 2200 "smarty_internal_templateparser.php" #line 316 "smarty_internal_templateparser.y" function yy_r70(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } -#line 2228 "smarty_internal_templateparser.php" +#line 2203 "smarty_internal_templateparser.php" #line 320 "smarty_internal_templateparser.y" function yy_r71(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2231 "smarty_internal_templateparser.php" +#line 2206 "smarty_internal_templateparser.php" #line 321 "smarty_internal_templateparser.y" function yy_r72(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2234 "smarty_internal_templateparser.php" +#line 2209 "smarty_internal_templateparser.php" #line 322 "smarty_internal_templateparser.y" function yy_r73(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2237 "smarty_internal_templateparser.php" +#line 2212 "smarty_internal_templateparser.php" #line 324 "smarty_internal_templateparser.y" function yy_r75(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2240 "smarty_internal_templateparser.php" +#line 2215 "smarty_internal_templateparser.php" #line 325 "smarty_internal_templateparser.y" function yy_r76(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2243 "smarty_internal_templateparser.php" +#line 2218 "smarty_internal_templateparser.php" #line 326 "smarty_internal_templateparser.y" function yy_r77(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2246 "smarty_internal_templateparser.php" +#line 2221 "smarty_internal_templateparser.php" #line 327 "smarty_internal_templateparser.y" function yy_r78(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2249 "smarty_internal_templateparser.php" +#line 2224 "smarty_internal_templateparser.php" #line 328 "smarty_internal_templateparser.y" function yy_r79(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2252 "smarty_internal_templateparser.php" +#line 2227 "smarty_internal_templateparser.php" #line 329 "smarty_internal_templateparser.y" function yy_r80(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2255 "smarty_internal_templateparser.php" +#line 2230 "smarty_internal_templateparser.php" #line 335 "smarty_internal_templateparser.y" function yy_r86(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2258 "smarty_internal_templateparser.php" +#line 2233 "smarty_internal_templateparser.php" #line 341 "smarty_internal_templateparser.y" function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2261 "smarty_internal_templateparser.php" +#line 2236 "smarty_internal_templateparser.php" #line 348 "smarty_internal_templateparser.y" function yy_r90(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2264 "smarty_internal_templateparser.php" -#line 353 "smarty_internal_templateparser.y" - function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2267 "smarty_internal_templateparser.php" +#line 2239 "smarty_internal_templateparser.php" +#line 354 "smarty_internal_templateparser.y" + function yy_r95(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2242 "smarty_internal_templateparser.php" #line 355 "smarty_internal_templateparser.y" - function yy_r95(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { + function yy_r96(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; } +#line 2245 "smarty_internal_templateparser.php" +#line 356 "smarty_internal_templateparser.y" + function yy_r97(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2248 "smarty_internal_templateparser.php" +#line 358 "smarty_internal_templateparser.y" + function yy_r98(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'true'; } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'false'; @@ -2278,24 +2259,24 @@ static public $yy_action = array( $this->_retvalue = 'null'; } else $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } -#line 2277 "smarty_internal_templateparser.php" -#line 366 "smarty_internal_templateparser.y" - function yy_r97(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2280 "smarty_internal_templateparser.php" -#line 372 "smarty_internal_templateparser.y" - function yy_r100(){if (!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) { +#line 2258 "smarty_internal_templateparser.php" +#line 369 "smarty_internal_templateparser.y" + function yy_r100(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2261 "smarty_internal_templateparser.php" +#line 375 "smarty_internal_templateparser.y" + function yy_r103(){if (!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) { $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } } -#line 2285 "smarty_internal_templateparser.php" -#line 375 "smarty_internal_templateparser.y" - function yy_r101(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else { - $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2289 "smarty_internal_templateparser.php" +#line 2266 "smarty_internal_templateparser.php" #line 378 "smarty_internal_templateparser.y" - function yy_r102(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2292 "smarty_internal_templateparser.php" -#line 387 "smarty_internal_templateparser.y" - function yy_r103(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); + function yy_r104(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else { + $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} } +#line 2270 "smarty_internal_templateparser.php" +#line 381 "smarty_internal_templateparser.y" + function yy_r105(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } +#line 2273 "smarty_internal_templateparser.php" +#line 390 "smarty_internal_templateparser.y" + function yy_r106(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); } else { if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + 0]->minor['var']])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + 0]->minor['var'] .']->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; @@ -2303,210 +2284,210 @@ static public $yy_action = array( $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2302 "smarty_internal_templateparser.php" -#line 396 "smarty_internal_templateparser.y" - function yy_r104(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { +#line 2283 "smarty_internal_templateparser.php" +#line 399 "smarty_internal_templateparser.y" + function yy_r107(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor; } else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2310 "smarty_internal_templateparser.php" -#line 405 "smarty_internal_templateparser.y" - function yy_r106(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2313 "smarty_internal_templateparser.php" -#line 406 "smarty_internal_templateparser.y" - function yy_r107(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2316 "smarty_internal_templateparser.php" +#line 2291 "smarty_internal_templateparser.php" +#line 408 "smarty_internal_templateparser.y" + function yy_r109(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2294 "smarty_internal_templateparser.php" #line 409 "smarty_internal_templateparser.y" - function yy_r108(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2319 "smarty_internal_templateparser.php" -#line 415 "smarty_internal_templateparser.y" - function yy_r109(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2322 "smarty_internal_templateparser.php" -#line 417 "smarty_internal_templateparser.y" - function yy_r110(){return; } -#line 2325 "smarty_internal_templateparser.php" -#line 421 "smarty_internal_templateparser.y" - function yy_r111(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } -#line 2328 "smarty_internal_templateparser.php" -#line 422 "smarty_internal_templateparser.y" - function yy_r112(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2331 "smarty_internal_templateparser.php" -#line 423 "smarty_internal_templateparser.y" - function yy_r113(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2334 "smarty_internal_templateparser.php" + function yy_r110(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2297 "smarty_internal_templateparser.php" +#line 412 "smarty_internal_templateparser.y" + function yy_r111(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2300 "smarty_internal_templateparser.php" +#line 418 "smarty_internal_templateparser.y" + function yy_r112(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2303 "smarty_internal_templateparser.php" +#line 420 "smarty_internal_templateparser.y" + function yy_r113(){return; } +#line 2306 "smarty_internal_templateparser.php" #line 424 "smarty_internal_templateparser.y" - function yy_r114(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2337 "smarty_internal_templateparser.php" + function yy_r114(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } +#line 2309 "smarty_internal_templateparser.php" #line 425 "smarty_internal_templateparser.y" - function yy_r115(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2340 "smarty_internal_templateparser.php" + function yy_r115(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } +#line 2312 "smarty_internal_templateparser.php" +#line 426 "smarty_internal_templateparser.y" + function yy_r116(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2315 "smarty_internal_templateparser.php" #line 427 "smarty_internal_templateparser.y" - function yy_r116(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2343 "smarty_internal_templateparser.php" + function yy_r117(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2318 "smarty_internal_templateparser.php" #line 428 "smarty_internal_templateparser.y" - function yy_r117(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2346 "smarty_internal_templateparser.php" -#line 432 "smarty_internal_templateparser.y" - function yy_r119(){$this->_retvalue = ''; } -#line 2349 "smarty_internal_templateparser.php" -#line 440 "smarty_internal_templateparser.y" - function yy_r121(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2352 "smarty_internal_templateparser.php" -#line 442 "smarty_internal_templateparser.y" - function yy_r122(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2355 "smarty_internal_templateparser.php" -#line 444 "smarty_internal_templateparser.y" - function yy_r123(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2358 "smarty_internal_templateparser.php" -#line 449 "smarty_internal_templateparser.y" - function yy_r124(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { - $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2362 "smarty_internal_templateparser.php" + function yy_r118(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2321 "smarty_internal_templateparser.php" +#line 430 "smarty_internal_templateparser.y" + function yy_r119(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2324 "smarty_internal_templateparser.php" +#line 431 "smarty_internal_templateparser.y" + function yy_r120(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2327 "smarty_internal_templateparser.php" +#line 435 "smarty_internal_templateparser.y" + function yy_r122(){$this->_retvalue = ''; } +#line 2330 "smarty_internal_templateparser.php" +#line 443 "smarty_internal_templateparser.y" + function yy_r124(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2333 "smarty_internal_templateparser.php" +#line 445 "smarty_internal_templateparser.y" + function yy_r125(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2336 "smarty_internal_templateparser.php" +#line 447 "smarty_internal_templateparser.y" + function yy_r126(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2339 "smarty_internal_templateparser.php" #line 452 "smarty_internal_templateparser.y" - function yy_r125(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2365 "smarty_internal_templateparser.php" -#line 454 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2368 "smarty_internal_templateparser.php" -#line 456 "smarty_internal_templateparser.y" - function yy_r127(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2371 "smarty_internal_templateparser.php" + function yy_r127(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { + $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } +#line 2343 "smarty_internal_templateparser.php" +#line 455 "smarty_internal_templateparser.y" + function yy_r128(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2346 "smarty_internal_templateparser.php" #line 457 "smarty_internal_templateparser.y" - function yy_r128(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; } -#line 2374 "smarty_internal_templateparser.php" -#line 458 "smarty_internal_templateparser.y" - function yy_r129(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2377 "smarty_internal_templateparser.php" + function yy_r129(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2349 "smarty_internal_templateparser.php" #line 459 "smarty_internal_templateparser.y" - function yy_r130(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2380 "smarty_internal_templateparser.php" + function yy_r130(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2352 "smarty_internal_templateparser.php" +#line 460 "smarty_internal_templateparser.y" + function yy_r131(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; } +#line 2355 "smarty_internal_templateparser.php" #line 461 "smarty_internal_templateparser.y" - function yy_r131(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2383 "smarty_internal_templateparser.php" -#line 467 "smarty_internal_templateparser.y" - function yy_r132(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r132(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2358 "smarty_internal_templateparser.php" +#line 462 "smarty_internal_templateparser.y" + function yy_r133(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2361 "smarty_internal_templateparser.php" +#line 464 "smarty_internal_templateparser.y" + function yy_r134(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2364 "smarty_internal_templateparser.php" +#line 470 "smarty_internal_templateparser.y" + function yy_r135(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } else { $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2392 "smarty_internal_templateparser.php" -#line 478 "smarty_internal_templateparser.y" - function yy_r133(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2395 "smarty_internal_templateparser.php" -#line 479 "smarty_internal_templateparser.y" - function yy_r134(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2398 "smarty_internal_templateparser.php" -#line 483 "smarty_internal_templateparser.y" - function yy_r135(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2401 "smarty_internal_templateparser.php" -#line 487 "smarty_internal_templateparser.y" - function yy_r137(){ return; } -#line 2404 "smarty_internal_templateparser.php" -#line 492 "smarty_internal_templateparser.y" - function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2407 "smarty_internal_templateparser.php" -#line 502 "smarty_internal_templateparser.y" - function yy_r143(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2410 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r144(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2413 "smarty_internal_templateparser.php" -#line 515 "smarty_internal_templateparser.y" - function yy_r145(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2416 "smarty_internal_templateparser.php" -#line 519 "smarty_internal_templateparser.y" - function yy_r147(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2419 "smarty_internal_templateparser.php" -#line 523 "smarty_internal_templateparser.y" - function yy_r149(){$this->_retvalue = '=='; } -#line 2422 "smarty_internal_templateparser.php" -#line 524 "smarty_internal_templateparser.y" - function yy_r150(){$this->_retvalue = '!='; } -#line 2425 "smarty_internal_templateparser.php" -#line 525 "smarty_internal_templateparser.y" - function yy_r151(){$this->_retvalue = '>'; } -#line 2428 "smarty_internal_templateparser.php" +#line 2373 "smarty_internal_templateparser.php" +#line 481 "smarty_internal_templateparser.y" + function yy_r136(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2376 "smarty_internal_templateparser.php" +#line 482 "smarty_internal_templateparser.y" + function yy_r137(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2379 "smarty_internal_templateparser.php" +#line 486 "smarty_internal_templateparser.y" + function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2382 "smarty_internal_templateparser.php" +#line 490 "smarty_internal_templateparser.y" + function yy_r140(){ return; } +#line 2385 "smarty_internal_templateparser.php" +#line 495 "smarty_internal_templateparser.y" + function yy_r141(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2388 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" + function yy_r146(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2391 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" + function yy_r147(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2394 "smarty_internal_templateparser.php" +#line 518 "smarty_internal_templateparser.y" + function yy_r148(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2397 "smarty_internal_templateparser.php" +#line 522 "smarty_internal_templateparser.y" + function yy_r150(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2400 "smarty_internal_templateparser.php" #line 526 "smarty_internal_templateparser.y" - function yy_r152(){$this->_retvalue = '<'; } -#line 2431 "smarty_internal_templateparser.php" + function yy_r152(){$this->_retvalue = '=='; } +#line 2403 "smarty_internal_templateparser.php" #line 527 "smarty_internal_templateparser.y" - function yy_r153(){$this->_retvalue = '>='; } -#line 2434 "smarty_internal_templateparser.php" + function yy_r153(){$this->_retvalue = '!='; } +#line 2406 "smarty_internal_templateparser.php" #line 528 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = '<='; } -#line 2437 "smarty_internal_templateparser.php" + function yy_r154(){$this->_retvalue = '>'; } +#line 2409 "smarty_internal_templateparser.php" #line 529 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '==='; } -#line 2440 "smarty_internal_templateparser.php" + function yy_r155(){$this->_retvalue = '<'; } +#line 2412 "smarty_internal_templateparser.php" #line 530 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '!=='; } -#line 2443 "smarty_internal_templateparser.php" + function yy_r156(){$this->_retvalue = '>='; } +#line 2415 "smarty_internal_templateparser.php" #line 531 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue = '%'; } -#line 2446 "smarty_internal_templateparser.php" + function yy_r157(){$this->_retvalue = '<='; } +#line 2418 "smarty_internal_templateparser.php" +#line 532 "smarty_internal_templateparser.y" + function yy_r158(){$this->_retvalue = '==='; } +#line 2421 "smarty_internal_templateparser.php" #line 533 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = '&&'; } -#line 2449 "smarty_internal_templateparser.php" + function yy_r159(){$this->_retvalue = '!=='; } +#line 2424 "smarty_internal_templateparser.php" #line 534 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '||'; } -#line 2452 "smarty_internal_templateparser.php" -#line 535 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = ' XOR '; } -#line 2455 "smarty_internal_templateparser.php" -#line 540 "smarty_internal_templateparser.y" - function yy_r161(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2458 "smarty_internal_templateparser.php" -#line 542 "smarty_internal_templateparser.y" - function yy_r163(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2461 "smarty_internal_templateparser.php" + function yy_r160(){$this->_retvalue = '%'; } +#line 2427 "smarty_internal_templateparser.php" +#line 536 "smarty_internal_templateparser.y" + function yy_r161(){$this->_retvalue = '&&'; } +#line 2430 "smarty_internal_templateparser.php" +#line 537 "smarty_internal_templateparser.y" + function yy_r162(){$this->_retvalue = '||'; } +#line 2433 "smarty_internal_templateparser.php" +#line 538 "smarty_internal_templateparser.y" + function yy_r163(){$this->_retvalue = ' XOR '; } +#line 2436 "smarty_internal_templateparser.php" #line 543 "smarty_internal_templateparser.y" - function yy_r164(){ return; } -#line 2464 "smarty_internal_templateparser.php" -#line 544 "smarty_internal_templateparser.y" - function yy_r165(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2467 "smarty_internal_templateparser.php" + function yy_r164(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2439 "smarty_internal_templateparser.php" #line 545 "smarty_internal_templateparser.y" - function yy_r166(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2470 "smarty_internal_templateparser.php" -#line 552 "smarty_internal_templateparser.y" - function yy_r168(){ $this->_retvalue = "''"; } -#line 2473 "smarty_internal_templateparser.php" -#line 553 "smarty_internal_templateparser.y" - function yy_r169(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } -#line 2476 "smarty_internal_templateparser.php" + function yy_r166(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2442 "smarty_internal_templateparser.php" +#line 546 "smarty_internal_templateparser.y" + function yy_r167(){ return; } +#line 2445 "smarty_internal_templateparser.php" +#line 547 "smarty_internal_templateparser.y" + function yy_r168(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2448 "smarty_internal_templateparser.php" +#line 548 "smarty_internal_templateparser.y" + function yy_r169(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2451 "smarty_internal_templateparser.php" #line 555 "smarty_internal_templateparser.y" - function yy_r170(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2479 "smarty_internal_templateparser.php" + function yy_r171(){ $this->_retvalue = "''"; } +#line 2454 "smarty_internal_templateparser.php" #line 556 "smarty_internal_templateparser.y" - function yy_r171(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2482 "smarty_internal_templateparser.php" + function yy_r172(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } +#line 2457 "smarty_internal_templateparser.php" #line 558 "smarty_internal_templateparser.y" - function yy_r172(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } -#line 2485 "smarty_internal_templateparser.php" -#line 560 "smarty_internal_templateparser.y" - function yy_r174(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { + function yy_r173(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 2460 "smarty_internal_templateparser.php" +#line 559 "smarty_internal_templateparser.y" + function yy_r174(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2463 "smarty_internal_templateparser.php" +#line 561 "smarty_internal_templateparser.y" + function yy_r175(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } +#line 2466 "smarty_internal_templateparser.php" +#line 563 "smarty_internal_templateparser.y" + function yy_r177(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value'); } else { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'); } $this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; } -#line 2494 "smarty_internal_templateparser.php" -#line 568 "smarty_internal_templateparser.y" - function yy_r176(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } -#line 2497 "smarty_internal_templateparser.php" -#line 569 "smarty_internal_templateparser.y" - function yy_r177(){ +#line 2475 "smarty_internal_templateparser.php" +#line 571 "smarty_internal_templateparser.y" + function yy_r179(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } +#line 2478 "smarty_internal_templateparser.php" +#line 572 "smarty_internal_templateparser.y" + function yy_r180(){ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2502 "smarty_internal_templateparser.php" -#line 572 "smarty_internal_templateparser.y" - function yy_r178(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2505 "smarty_internal_templateparser.php" +#line 2483 "smarty_internal_templateparser.php" +#line 575 "smarty_internal_templateparser.y" + function yy_r181(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2486 "smarty_internal_templateparser.php" private $_retvalue; @@ -2568,7 +2549,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2568 "smarty_internal_templateparser.php" +#line 2549 "smarty_internal_templateparser.php" } function yy_accept() @@ -2585,7 +2566,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2586 "smarty_internal_templateparser.php" +#line 2567 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)