diff --git a/change_log.txt b/change_log.txt index 5e485f36..e5a8325b 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,11 @@ +13/10/2010 +- bugfix removed ambiguity between ternary and stream variable in template syntax +- bugfix use caching properties of template instead of smarty object when compiling child {block} +- bugfix {*block}...{/block*} did throw an exception in template inheritance + + +===== RC4 ===== + 01/10/2010 - added {break} and {continue} tags for flow control of {foreach},{section},{for} and {while} loops - change of 'string' resource. It's no longer evaluated and compiled files are now stored diff --git a/libs/sysplugins/smarty_internal_compile_block.php b/libs/sysplugins/smarty_internal_compile_block.php index 7e651e43..0a0b48d3 100644 --- a/libs/sysplugins/smarty_internal_compile_block.php +++ b/libs/sysplugins/smarty_internal_compile_block.php @@ -71,7 +71,9 @@ class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_CompileBase { } $_name = trim($saved_data[0]['name'], "\"'"); if (isset($compiler->template->block_data[$_name])) { - $_tpl = $this->smarty->createTemplate('eval:' . $compiler->template->block_data[$_name]['source'], null, null, $compiler->template); +// $_tpl = $this->smarty->createTemplate('eval:' . $compiler->template->block_data[$_name]['source'], null, null, $compiler->template); + $_tpl = new Smarty_Internal_template ('eval:' . $compiler->template->block_data[$_name]['source'], $this->smarty, $compiler->template, $compiler->template->cache_id, + $compiler->template->compile_id = null, $compiler->template->caching, $compiler->template->cache_lifetime); $_tpl->properties['nocache_hash'] = $compiler->template->properties['nocache_hash']; $_tpl->template_filepath = $compiler->template->block_data[$_name]['file']; if ($compiler->nocache) { diff --git a/libs/sysplugins/smarty_internal_compile_extends.php b/libs/sysplugins/smarty_internal_compile_extends.php index 245fe9c4..37ebf7fd 100644 --- a/libs/sysplugins/smarty_internal_compile_extends.php +++ b/libs/sysplugins/smarty_internal_compile_extends.php @@ -43,10 +43,10 @@ class Smarty_Internal_Compile_Extends extends Smarty_Internal_CompileBase { $compiler->template->properties['file_dependency'][$template_sha1] = array($_template->getTemplateFilepath(), $_template->getTemplateTimestamp()); $_content = $compiler->template->template_source; if (preg_match_all("!({$this->_ldl}block\s(.+?){$this->_rdl})!", $_content, $s) != - preg_match_all("!({$this->_ldl}/block(.*?){$this->_rdl})!", $_content, $c)) { + preg_match_all("!({$this->_ldl}/block{$this->_rdl})!", $_content, $c)) { $this->compiler->trigger_template_error('unmatched {block} {/block} pairs'); } - preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block(.*?){$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE); + preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block{$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE); $_result_count = count($_result[0]); $_start = 0; while ($_start < $_result_count) { diff --git a/libs/sysplugins/smarty_internal_resource_extends.php b/libs/sysplugins/smarty_internal_resource_extends.php index c263f8ac..95572f31 100644 --- a/libs/sysplugins/smarty_internal_resource_extends.php +++ b/libs/sysplugins/smarty_internal_resource_extends.php @@ -104,10 +104,10 @@ class Smarty_Internal_Resource_Extends { $_content = file_get_contents($_filepath); if ($_filepath != $_last) { if (preg_match_all("!({$this->_ldl}block\s(.+?){$this->_rdl})!", $_content, $_open) != - preg_match_all("!({$this->_ldl}/block(.*?){$this->_rdl})!", $_content, $_close)) { + preg_match_all("!({$this->_ldl}/block{$this->_rdl})!", $_content, $_close)) { $this->smarty->trigger_error("unmatched {block} {/block} pairs in file '$_filepath'"); } - preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block(.*?){$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE); + preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block{$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE); $_result_count = count($_result[0]); $_start = 0; while ($_start < $_result_count) { diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 03aa3482..02e8237c 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -212,339 +212,349 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php const TP_QUOTE = 74; const TP_BACKTICK = 75; const TP_DOLLARID = 76; - const YY_NO_ACTION = 564; - const YY_ACCEPT_ACTION = 563; - const YY_ERROR_ACTION = 562; + const YY_NO_ACTION = 570; + const YY_ACCEPT_ACTION = 569; + const YY_ERROR_ACTION = 568; - const YY_SZ_ACTTAB = 2088; + const YY_SZ_ACTTAB = 2183; static public $yy_action = array( - /* 0 */ 182, 20, 8, 140, 302, 299, 298, 294, 293, 295, - /* 10 */ 296, 297, 304, 160, 163, 323, 2, 270, 161, 341, - /* 20 */ 4, 188, 195, 168, 208, 27, 26, 38, 114, 124, - /* 30 */ 265, 271, 204, 48, 47, 44, 39, 32, 30, 348, - /* 40 */ 349, 28, 15, 356, 357, 16, 18, 312, 307, 306, - /* 50 */ 308, 311, 431, 7, 130, 160, 313, 316, 431, 6, - /* 60 */ 322, 364, 365, 366, 367, 363, 362, 358, 359, 360, - /* 70 */ 361, 344, 343, 182, 326, 300, 301, 303, 194, 12, - /* 80 */ 210, 53, 174, 120, 106, 4, 141, 13, 319, 163, - /* 90 */ 266, 104, 43, 114, 188, 240, 353, 345, 168, 327, - /* 100 */ 270, 26, 38, 217, 193, 133, 48, 47, 44, 39, - /* 110 */ 32, 30, 348, 349, 28, 15, 356, 357, 16, 18, - /* 120 */ 563, 85, 229, 301, 303, 33, 24, 110, 136, 272, - /* 130 */ 36, 94, 237, 84, 364, 365, 366, 367, 363, 362, - /* 140 */ 358, 359, 360, 361, 344, 343, 182, 182, 326, 145, - /* 150 */ 24, 276, 176, 272, 210, 77, 24, 231, 106, 272, - /* 160 */ 36, 167, 338, 270, 266, 199, 189, 188, 188, 216, - /* 170 */ 353, 345, 34, 327, 24, 256, 197, 272, 92, 48, - /* 180 */ 47, 44, 39, 32, 30, 348, 349, 28, 15, 356, - /* 190 */ 357, 16, 18, 9, 278, 4, 24, 23, 24, 272, - /* 200 */ 21, 272, 40, 114, 103, 223, 258, 364, 365, 366, - /* 210 */ 367, 363, 362, 358, 359, 360, 361, 344, 343, 182, - /* 220 */ 326, 135, 188, 164, 98, 24, 99, 50, 272, 123, - /* 230 */ 100, 325, 166, 211, 170, 155, 266, 188, 90, 130, - /* 240 */ 278, 216, 353, 345, 230, 327, 88, 168, 197, 270, - /* 250 */ 26, 38, 48, 47, 44, 39, 32, 30, 348, 349, - /* 260 */ 28, 15, 356, 357, 16, 18, 182, 430, 224, 24, - /* 270 */ 277, 6, 272, 188, 174, 35, 278, 105, 317, 13, - /* 280 */ 364, 365, 366, 367, 363, 362, 358, 359, 360, 361, - /* 290 */ 344, 343, 318, 282, 286, 156, 341, 182, 5, 48, - /* 300 */ 47, 44, 39, 32, 30, 348, 349, 28, 15, 356, - /* 310 */ 357, 16, 18, 182, 150, 339, 273, 331, 188, 275, - /* 320 */ 43, 188, 214, 188, 182, 188, 121, 364, 365, 366, - /* 330 */ 367, 363, 362, 358, 359, 360, 361, 344, 343, 430, - /* 340 */ 24, 327, 206, 272, 87, 188, 48, 47, 44, 39, - /* 350 */ 32, 30, 348, 349, 28, 15, 356, 357, 16, 18, - /* 360 */ 182, 25, 330, 321, 269, 340, 158, 341, 188, 188, - /* 370 */ 188, 188, 192, 248, 364, 365, 366, 367, 363, 362, - /* 380 */ 358, 359, 360, 361, 344, 343, 220, 24, 10, 24, - /* 390 */ 196, 31, 207, 48, 47, 44, 39, 32, 30, 348, - /* 400 */ 349, 28, 15, 356, 357, 16, 18, 4, 320, 43, - /* 410 */ 309, 433, 234, 218, 188, 114, 188, 433, 188, 247, - /* 420 */ 219, 364, 365, 366, 367, 363, 362, 358, 359, 360, - /* 430 */ 361, 344, 343, 182, 326, 23, 243, 139, 194, 126, - /* 440 */ 210, 66, 43, 43, 106, 213, 138, 4, 233, 163, - /* 450 */ 266, 270, 188, 284, 10, 114, 353, 345, 168, 327, - /* 460 */ 270, 26, 38, 315, 474, 314, 48, 47, 44, 39, - /* 470 */ 32, 30, 348, 349, 28, 15, 356, 357, 16, 18, - /* 480 */ 165, 355, 240, 329, 4, 337, 153, 332, 273, 188, - /* 490 */ 130, 188, 114, 188, 364, 365, 366, 367, 363, 362, - /* 500 */ 358, 359, 360, 361, 344, 343, 182, 182, 326, 285, - /* 510 */ 24, 255, 98, 272, 102, 52, 125, 123, 100, 336, - /* 520 */ 147, 221, 268, 163, 266, 209, 222, 104, 188, 162, - /* 530 */ 353, 345, 168, 327, 270, 26, 38, 225, 183, 48, - /* 540 */ 47, 44, 39, 32, 30, 348, 349, 28, 15, 356, - /* 550 */ 357, 16, 18, 182, 347, 280, 333, 310, 324, 246, - /* 560 */ 249, 125, 188, 188, 188, 142, 137, 364, 365, 366, - /* 570 */ 367, 363, 362, 358, 359, 360, 361, 344, 343, 270, - /* 580 */ 270, 24, 354, 212, 181, 254, 48, 47, 44, 39, - /* 590 */ 32, 30, 348, 349, 28, 15, 356, 357, 16, 18, - /* 600 */ 201, 37, 250, 267, 342, 202, 239, 283, 251, 188, - /* 610 */ 188, 157, 274, 273, 364, 365, 366, 367, 363, 362, - /* 620 */ 358, 359, 360, 361, 344, 343, 182, 368, 326, 109, - /* 630 */ 115, 127, 178, 211, 210, 51, 29, 122, 106, 290, - /* 640 */ 144, 128, 263, 93, 266, 284, 111, 188, 278, 113, - /* 650 */ 353, 345, 168, 327, 270, 284, 119, 3, 281, 48, - /* 660 */ 47, 44, 39, 32, 30, 348, 349, 28, 15, 356, - /* 670 */ 357, 16, 18, 112, 292, 282, 40, 130, 118, 328, - /* 680 */ 273, 41, 260, 271, 134, 232, 305, 364, 365, 366, - /* 690 */ 367, 363, 362, 358, 359, 360, 361, 344, 343, 182, - /* 700 */ 326, 159, 182, 95, 194, 326, 210, 80, 235, 194, - /* 710 */ 106, 210, 62, 167, 264, 106, 266, 108, 89, 314, - /* 720 */ 314, 266, 353, 345, 200, 327, 314, 353, 345, 14, - /* 730 */ 327, 284, 48, 47, 44, 39, 32, 30, 348, 349, - /* 740 */ 28, 15, 356, 357, 16, 18, 182, 314, 314, 314, - /* 750 */ 314, 314, 314, 314, 314, 314, 314, 314, 96, 97, - /* 760 */ 364, 365, 366, 367, 363, 362, 358, 359, 360, 361, - /* 770 */ 344, 343, 284, 284, 314, 314, 314, 314, 314, 48, - /* 780 */ 47, 44, 39, 32, 30, 348, 349, 28, 15, 356, - /* 790 */ 357, 16, 18, 314, 314, 205, 314, 314, 314, 314, - /* 800 */ 314, 314, 314, 314, 314, 314, 314, 364, 365, 366, - /* 810 */ 367, 363, 362, 358, 359, 360, 361, 344, 343, 182, - /* 820 */ 326, 314, 314, 129, 194, 326, 210, 63, 314, 194, - /* 830 */ 106, 210, 75, 314, 245, 106, 266, 284, 314, 314, - /* 840 */ 314, 266, 353, 345, 314, 327, 314, 353, 345, 314, - /* 850 */ 327, 314, 48, 47, 44, 39, 32, 30, 348, 349, - /* 860 */ 28, 15, 356, 357, 16, 18, 314, 314, 314, 314, - /* 870 */ 314, 314, 314, 314, 314, 314, 314, 314, 314, 154, - /* 880 */ 364, 365, 366, 367, 363, 362, 358, 359, 360, 361, - /* 890 */ 344, 343, 182, 270, 314, 326, 314, 314, 151, 194, - /* 900 */ 314, 210, 65, 238, 314, 106, 314, 171, 11, 314, - /* 910 */ 169, 266, 270, 314, 195, 314, 208, 353, 345, 314, - /* 920 */ 327, 124, 314, 314, 204, 48, 47, 44, 39, 32, - /* 930 */ 30, 348, 349, 28, 15, 356, 357, 16, 18, 182, - /* 940 */ 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - /* 950 */ 314, 131, 101, 364, 365, 366, 367, 363, 362, 358, - /* 960 */ 359, 360, 361, 344, 343, 284, 284, 335, 19, 228, - /* 970 */ 314, 314, 48, 47, 44, 39, 32, 30, 348, 349, - /* 980 */ 28, 15, 356, 357, 16, 18, 314, 314, 244, 314, - /* 990 */ 314, 314, 314, 314, 314, 314, 314, 314, 314, 143, - /* 1000 */ 364, 365, 366, 367, 363, 362, 358, 359, 360, 361, - /* 1010 */ 344, 343, 182, 270, 314, 326, 314, 314, 152, 194, - /* 1020 */ 314, 210, 71, 238, 314, 106, 314, 291, 11, 314, - /* 1030 */ 167, 266, 270, 314, 195, 314, 208, 353, 345, 314, - /* 1040 */ 327, 124, 314, 314, 204, 48, 47, 44, 39, 32, - /* 1050 */ 30, 348, 349, 28, 15, 356, 357, 16, 18, 182, - /* 1060 */ 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - /* 1070 */ 314, 149, 132, 364, 365, 366, 367, 363, 362, 358, - /* 1080 */ 359, 360, 361, 344, 343, 270, 284, 334, 19, 228, - /* 1090 */ 314, 314, 48, 47, 44, 39, 32, 30, 348, 349, - /* 1100 */ 28, 15, 356, 357, 16, 18, 314, 314, 314, 314, - /* 1110 */ 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - /* 1120 */ 364, 365, 366, 367, 363, 362, 358, 359, 360, 361, - /* 1130 */ 344, 343, 314, 146, 148, 314, 2, 91, 116, 175, - /* 1140 */ 314, 314, 195, 314, 208, 167, 168, 270, 270, 124, - /* 1150 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1160 */ 314, 314, 326, 314, 314, 314, 179, 314, 210, 74, - /* 1170 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1180 */ 88, 1, 242, 314, 353, 345, 2, 327, 116, 184, - /* 1190 */ 314, 314, 195, 314, 208, 86, 180, 241, 314, 124, - /* 1200 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1210 */ 314, 314, 326, 314, 314, 314, 179, 314, 210, 74, - /* 1220 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1230 */ 88, 1, 314, 314, 353, 345, 2, 327, 103, 173, - /* 1240 */ 314, 314, 195, 314, 208, 86, 314, 259, 314, 124, - /* 1250 */ 314, 314, 204, 187, 314, 314, 45, 314, 314, 314, - /* 1260 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 67, - /* 1270 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1280 */ 88, 1, 314, 314, 353, 345, 2, 327, 103, 184, - /* 1290 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1300 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1310 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 68, - /* 1320 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1330 */ 88, 1, 314, 314, 353, 345, 2, 327, 117, 83, - /* 1340 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1350 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1360 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 81, - /* 1370 */ 22, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1380 */ 88, 1, 314, 314, 353, 345, 2, 327, 116, 177, - /* 1390 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1400 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1410 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 64, - /* 1420 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1430 */ 88, 1, 314, 314, 353, 345, 2, 327, 116, 184, - /* 1440 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1450 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1460 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 72, - /* 1470 */ 22, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1480 */ 88, 1, 314, 314, 353, 345, 2, 327, 107, 184, - /* 1490 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1500 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1510 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 69, - /* 1520 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1530 */ 88, 1, 314, 314, 353, 345, 2, 327, 116, 172, - /* 1540 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1550 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1560 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 54, - /* 1570 */ 22, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1580 */ 88, 1, 314, 314, 353, 345, 2, 327, 103, 184, - /* 1590 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1600 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1610 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 57, - /* 1620 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1630 */ 88, 314, 314, 314, 353, 345, 2, 327, 103, 186, - /* 1640 */ 314, 314, 195, 314, 208, 86, 314, 314, 314, 124, - /* 1650 */ 314, 314, 204, 198, 314, 314, 45, 314, 314, 314, - /* 1660 */ 314, 314, 326, 314, 314, 314, 194, 314, 210, 60, - /* 1670 */ 17, 314, 106, 42, 46, 289, 190, 346, 266, 314, - /* 1680 */ 88, 314, 314, 314, 353, 345, 314, 327, 314, 314, - /* 1690 */ 314, 314, 314, 314, 226, 86, 314, 314, 314, 314, - /* 1700 */ 326, 314, 314, 314, 194, 326, 210, 76, 314, 194, - /* 1710 */ 106, 210, 60, 314, 314, 106, 266, 314, 314, 314, - /* 1720 */ 314, 266, 353, 345, 314, 327, 314, 353, 345, 314, - /* 1730 */ 327, 314, 314, 314, 326, 314, 314, 227, 194, 314, - /* 1740 */ 210, 60, 314, 314, 106, 314, 314, 314, 326, 314, - /* 1750 */ 266, 314, 194, 314, 210, 60, 353, 345, 106, 327, - /* 1760 */ 314, 314, 314, 314, 266, 314, 252, 314, 314, 314, - /* 1770 */ 353, 345, 314, 327, 314, 314, 314, 326, 314, 314, - /* 1780 */ 215, 194, 326, 210, 61, 314, 194, 106, 210, 59, - /* 1790 */ 314, 314, 106, 266, 314, 314, 314, 314, 266, 353, - /* 1800 */ 345, 314, 327, 314, 353, 345, 314, 327, 314, 326, - /* 1810 */ 314, 314, 314, 194, 314, 210, 78, 314, 314, 106, - /* 1820 */ 326, 314, 314, 314, 194, 266, 210, 82, 314, 314, - /* 1830 */ 106, 353, 345, 314, 327, 314, 266, 314, 314, 314, - /* 1840 */ 326, 314, 353, 345, 194, 327, 210, 58, 326, 314, - /* 1850 */ 106, 314, 194, 314, 210, 49, 266, 314, 106, 314, - /* 1860 */ 314, 314, 353, 345, 266, 327, 314, 314, 326, 314, - /* 1870 */ 353, 345, 194, 327, 210, 70, 314, 314, 106, 314, - /* 1880 */ 314, 314, 326, 314, 266, 314, 194, 314, 185, 55, - /* 1890 */ 353, 345, 106, 327, 314, 314, 314, 314, 266, 314, - /* 1900 */ 314, 314, 326, 314, 353, 345, 194, 327, 210, 73, - /* 1910 */ 314, 314, 106, 326, 314, 314, 314, 194, 266, 210, - /* 1920 */ 56, 314, 314, 106, 353, 345, 314, 327, 314, 266, - /* 1930 */ 314, 314, 314, 314, 314, 353, 345, 326, 327, 314, - /* 1940 */ 314, 194, 314, 210, 79, 326, 314, 106, 314, 203, - /* 1950 */ 314, 210, 314, 266, 314, 106, 314, 314, 314, 353, - /* 1960 */ 345, 191, 327, 314, 314, 314, 314, 353, 345, 314, - /* 1970 */ 327, 326, 314, 314, 314, 350, 314, 210, 314, 314, - /* 1980 */ 326, 106, 314, 314, 288, 314, 210, 351, 314, 314, - /* 1990 */ 106, 326, 314, 353, 345, 261, 327, 210, 314, 314, - /* 2000 */ 326, 106, 353, 345, 253, 327, 210, 262, 314, 314, - /* 2010 */ 106, 326, 314, 353, 345, 287, 327, 210, 314, 314, - /* 2020 */ 326, 106, 353, 345, 352, 327, 210, 314, 314, 314, - /* 2030 */ 106, 326, 314, 353, 345, 279, 327, 210, 314, 314, - /* 2040 */ 314, 106, 353, 345, 314, 327, 314, 314, 314, 314, - /* 2050 */ 314, 314, 314, 353, 345, 314, 327, 326, 314, 314, - /* 2060 */ 314, 236, 326, 210, 314, 314, 257, 106, 210, 314, - /* 2070 */ 314, 314, 106, 314, 314, 314, 314, 314, 314, 353, - /* 2080 */ 345, 314, 327, 314, 353, 345, 314, 327, + /* 0 */ 185, 38, 164, 313, 265, 270, 269, 281, 292, 290, + /* 10 */ 289, 233, 373, 167, 5, 133, 6, 367, 159, 306, + /* 20 */ 10, 192, 215, 4, 214, 192, 32, 173, 113, 124, + /* 30 */ 39, 36, 218, 48, 46, 45, 41, 27, 16, 342, + /* 40 */ 370, 14, 19, 360, 362, 24, 17, 354, 365, 336, + /* 50 */ 312, 371, 111, 96, 355, 167, 353, 343, 274, 279, + /* 60 */ 264, 335, 309, 314, 308, 301, 300, 302, 303, 304, + /* 70 */ 316, 317, 330, 185, 328, 28, 334, 8, 101, 10, + /* 80 */ 102, 50, 192, 122, 100, 211, 158, 113, 319, 159, + /* 90 */ 329, 248, 367, 44, 192, 162, 262, 285, 173, 331, + /* 100 */ 250, 39, 36, 169, 163, 340, 48, 46, 45, 41, + /* 110 */ 27, 16, 342, 370, 14, 19, 360, 362, 24, 17, + /* 120 */ 569, 87, 275, 279, 264, 249, 299, 436, 34, 364, + /* 130 */ 112, 140, 192, 436, 335, 309, 314, 308, 301, 300, + /* 140 */ 302, 303, 304, 316, 317, 330, 185, 328, 105, 26, + /* 150 */ 359, 180, 346, 217, 76, 165, 276, 120, 44, 157, + /* 160 */ 10, 347, 159, 329, 222, 227, 2, 192, 113, 262, + /* 170 */ 285, 173, 331, 250, 39, 36, 480, 93, 185, 48, + /* 180 */ 46, 45, 41, 27, 16, 342, 370, 14, 19, 360, + /* 190 */ 362, 24, 17, 352, 202, 183, 10, 196, 26, 192, + /* 200 */ 245, 346, 30, 282, 113, 166, 313, 335, 309, 314, + /* 210 */ 308, 301, 300, 302, 303, 304, 316, 317, 330, 185, + /* 220 */ 328, 230, 229, 10, 186, 26, 217, 51, 346, 125, + /* 230 */ 120, 113, 148, 333, 170, 159, 329, 142, 108, 192, + /* 240 */ 95, 221, 262, 285, 173, 331, 250, 39, 36, 173, + /* 250 */ 369, 250, 48, 46, 45, 41, 27, 16, 342, 370, + /* 260 */ 14, 19, 360, 362, 24, 17, 235, 26, 225, 26, + /* 270 */ 346, 18, 346, 30, 318, 26, 341, 296, 346, 220, + /* 280 */ 335, 309, 314, 308, 301, 300, 302, 303, 304, 316, + /* 290 */ 317, 330, 185, 328, 212, 435, 7, 219, 127, 217, + /* 300 */ 54, 192, 128, 120, 245, 155, 44, 171, 91, 329, + /* 310 */ 133, 160, 313, 331, 21, 262, 285, 173, 331, 250, + /* 320 */ 39, 36, 141, 195, 345, 48, 46, 45, 41, 27, + /* 330 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 35, + /* 340 */ 198, 26, 283, 26, 346, 178, 346, 178, 11, 151, + /* 350 */ 13, 345, 13, 335, 309, 314, 308, 301, 300, 302, + /* 360 */ 303, 304, 316, 317, 330, 185, 185, 328, 241, 26, + /* 370 */ 286, 101, 346, 104, 53, 207, 122, 100, 106, 143, + /* 380 */ 136, 311, 94, 329, 199, 209, 221, 192, 161, 262, + /* 390 */ 285, 173, 331, 250, 250, 185, 109, 110, 48, 46, + /* 400 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362, + /* 410 */ 24, 17, 185, 344, 10, 337, 192, 26, 121, 213, + /* 420 */ 216, 33, 113, 114, 287, 144, 335, 309, 314, 308, + /* 430 */ 301, 300, 302, 303, 304, 316, 317, 330, 297, 250, + /* 440 */ 26, 223, 284, 346, 3, 48, 46, 45, 41, 27, + /* 450 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 185, + /* 460 */ 92, 322, 320, 307, 44, 207, 253, 192, 192, 192, + /* 470 */ 245, 137, 192, 335, 309, 314, 308, 301, 300, 302, + /* 480 */ 303, 304, 316, 317, 330, 250, 40, 26, 26, 293, + /* 490 */ 206, 193, 48, 46, 45, 41, 27, 16, 342, 370, + /* 500 */ 14, 19, 360, 362, 24, 17, 192, 89, 263, 267, + /* 510 */ 480, 321, 323, 325, 326, 192, 480, 192, 192, 192, + /* 520 */ 335, 309, 314, 308, 301, 300, 302, 303, 304, 316, + /* 530 */ 317, 330, 185, 372, 328, 150, 149, 277, 219, 205, + /* 540 */ 217, 58, 480, 10, 120, 201, 145, 266, 438, 250, + /* 550 */ 329, 113, 168, 200, 438, 363, 262, 285, 174, 331, + /* 560 */ 250, 192, 254, 259, 11, 48, 46, 45, 41, 27, + /* 570 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 245, + /* 580 */ 44, 2, 315, 351, 310, 361, 356, 220, 192, 192, + /* 590 */ 192, 192, 192, 335, 309, 314, 308, 301, 300, 302, + /* 600 */ 303, 304, 316, 317, 330, 185, 328, 273, 324, 98, + /* 610 */ 219, 328, 217, 57, 192, 219, 120, 217, 64, 232, + /* 620 */ 237, 120, 329, 288, 20, 133, 255, 329, 262, 285, + /* 630 */ 244, 331, 345, 262, 285, 272, 331, 31, 48, 46, + /* 640 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362, + /* 650 */ 24, 17, 185, 349, 278, 26, 86, 22, 188, 126, + /* 660 */ 123, 123, 111, 9, 153, 146, 335, 309, 314, 308, + /* 670 */ 301, 300, 302, 303, 304, 316, 317, 330, 250, 250, + /* 680 */ 258, 348, 252, 204, 305, 48, 46, 45, 41, 27, + /* 690 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 35, + /* 700 */ 185, 282, 133, 154, 345, 174, 192, 42, 116, 242, + /* 710 */ 327, 23, 251, 335, 309, 314, 308, 301, 300, 302, + /* 720 */ 303, 304, 316, 317, 330, 185, 328, 259, 350, 135, + /* 730 */ 219, 328, 217, 81, 291, 219, 120, 217, 83, 147, + /* 740 */ 40, 120, 329, 288, 294, 97, 192, 329, 262, 285, + /* 750 */ 228, 331, 315, 262, 285, 90, 331, 315, 48, 46, + /* 760 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362, + /* 770 */ 24, 17, 315, 315, 315, 315, 315, 315, 315, 315, + /* 780 */ 315, 315, 315, 315, 315, 99, 335, 309, 314, 308, + /* 790 */ 301, 300, 302, 303, 304, 316, 317, 330, 185, 288, + /* 800 */ 315, 328, 315, 315, 152, 219, 315, 217, 73, 368, + /* 810 */ 315, 120, 315, 247, 12, 315, 174, 329, 250, 315, + /* 820 */ 215, 315, 214, 262, 285, 315, 331, 124, 315, 315, + /* 830 */ 218, 48, 46, 45, 41, 27, 16, 342, 370, 14, + /* 840 */ 19, 360, 362, 24, 17, 185, 15, 315, 315, 315, + /* 850 */ 315, 315, 315, 315, 315, 315, 315, 134, 129, 335, + /* 860 */ 309, 314, 308, 301, 300, 302, 303, 304, 316, 317, + /* 870 */ 330, 288, 288, 358, 37, 366, 315, 315, 48, 46, + /* 880 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362, + /* 890 */ 24, 17, 185, 315, 315, 315, 315, 315, 315, 315, + /* 900 */ 315, 315, 315, 315, 130, 103, 335, 309, 314, 308, + /* 910 */ 301, 300, 302, 303, 304, 316, 317, 330, 288, 288, + /* 920 */ 315, 315, 315, 315, 315, 48, 46, 45, 41, 27, + /* 930 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 315, + /* 940 */ 315, 208, 315, 315, 315, 315, 315, 315, 315, 315, + /* 950 */ 315, 315, 156, 335, 309, 314, 308, 301, 300, 302, + /* 960 */ 303, 304, 316, 317, 330, 185, 250, 315, 328, 315, + /* 970 */ 315, 139, 219, 315, 217, 69, 368, 315, 120, 315, + /* 980 */ 332, 12, 315, 172, 329, 250, 315, 215, 315, 214, + /* 990 */ 262, 285, 315, 331, 124, 315, 315, 218, 48, 46, + /* 1000 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362, + /* 1010 */ 24, 17, 185, 315, 315, 315, 315, 315, 315, 315, + /* 1020 */ 315, 315, 315, 315, 132, 117, 335, 309, 314, 308, + /* 1030 */ 301, 300, 302, 303, 304, 316, 317, 330, 288, 288, + /* 1040 */ 357, 37, 366, 315, 315, 48, 46, 45, 41, 27, + /* 1050 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 185, + /* 1060 */ 315, 257, 315, 315, 315, 315, 315, 315, 315, 315, + /* 1070 */ 315, 131, 315, 335, 309, 314, 308, 301, 300, 302, + /* 1080 */ 303, 304, 316, 317, 330, 288, 315, 315, 315, 315, + /* 1090 */ 315, 315, 48, 46, 45, 41, 27, 16, 342, 370, + /* 1100 */ 14, 19, 360, 362, 24, 17, 315, 315, 315, 315, + /* 1110 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + /* 1120 */ 335, 309, 314, 308, 301, 300, 302, 303, 304, 316, + /* 1130 */ 317, 330, 315, 185, 315, 315, 6, 315, 118, 179, + /* 1140 */ 315, 315, 215, 138, 214, 315, 315, 315, 435, 124, + /* 1150 */ 315, 315, 218, 226, 192, 174, 49, 250, 315, 315, + /* 1160 */ 315, 315, 328, 315, 315, 315, 182, 315, 217, 71, + /* 1170 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1180 */ 92, 1, 260, 315, 262, 285, 6, 331, 118, 184, + /* 1190 */ 315, 315, 215, 315, 214, 88, 190, 339, 315, 124, + /* 1200 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1210 */ 315, 315, 328, 315, 315, 315, 182, 315, 217, 71, + /* 1220 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1230 */ 92, 1, 315, 315, 262, 285, 6, 331, 121, 177, + /* 1240 */ 315, 315, 215, 315, 214, 88, 315, 338, 315, 124, + /* 1250 */ 315, 315, 218, 189, 315, 315, 49, 315, 315, 315, + /* 1260 */ 315, 315, 328, 315, 315, 315, 219, 315, 191, 59, + /* 1270 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1280 */ 92, 1, 315, 315, 262, 285, 6, 331, 121, 184, + /* 1290 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1300 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1310 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 79, + /* 1320 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1330 */ 92, 1, 315, 315, 262, 285, 6, 331, 118, 175, + /* 1340 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1350 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1360 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 68, + /* 1370 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1380 */ 92, 1, 315, 315, 262, 285, 6, 331, 118, 181, + /* 1390 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1400 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1410 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 78, + /* 1420 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1430 */ 92, 1, 315, 315, 262, 285, 6, 331, 118, 184, + /* 1440 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1450 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1460 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 74, + /* 1470 */ 25, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1480 */ 92, 1, 315, 315, 262, 285, 6, 331, 115, 85, + /* 1490 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1500 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1510 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 60, + /* 1520 */ 25, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1530 */ 92, 1, 315, 315, 262, 285, 6, 331, 119, 184, + /* 1540 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1550 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1560 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 70, + /* 1570 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1580 */ 92, 1, 315, 315, 262, 285, 6, 331, 107, 184, + /* 1590 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1600 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1610 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 72, + /* 1620 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1630 */ 92, 1, 315, 315, 262, 285, 6, 331, 118, 176, + /* 1640 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1650 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1660 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 82, + /* 1670 */ 25, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1680 */ 92, 1, 315, 315, 262, 285, 6, 331, 121, 184, + /* 1690 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1700 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1710 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 55, + /* 1720 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1730 */ 92, 315, 315, 315, 262, 285, 6, 331, 121, 187, + /* 1740 */ 315, 315, 215, 315, 214, 88, 315, 315, 315, 124, + /* 1750 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315, + /* 1760 */ 315, 315, 328, 315, 315, 315, 219, 315, 217, 66, + /* 1770 */ 29, 315, 120, 47, 43, 268, 231, 246, 329, 315, + /* 1780 */ 92, 315, 315, 315, 262, 285, 315, 331, 315, 315, + /* 1790 */ 315, 315, 315, 315, 197, 88, 315, 315, 315, 315, + /* 1800 */ 328, 315, 315, 315, 219, 328, 217, 56, 315, 219, + /* 1810 */ 120, 217, 66, 315, 315, 120, 329, 315, 315, 315, + /* 1820 */ 315, 329, 262, 285, 315, 331, 315, 262, 285, 315, + /* 1830 */ 331, 315, 315, 315, 328, 315, 315, 210, 219, 315, + /* 1840 */ 217, 66, 315, 315, 120, 315, 315, 315, 328, 315, + /* 1850 */ 329, 315, 219, 315, 217, 66, 262, 285, 120, 331, + /* 1860 */ 315, 315, 315, 315, 329, 315, 203, 315, 315, 315, + /* 1870 */ 262, 285, 315, 331, 315, 315, 315, 328, 315, 315, + /* 1880 */ 298, 219, 328, 217, 65, 315, 219, 120, 217, 52, + /* 1890 */ 315, 315, 120, 329, 315, 315, 315, 315, 329, 262, + /* 1900 */ 285, 315, 331, 315, 262, 285, 315, 331, 315, 328, + /* 1910 */ 315, 315, 315, 219, 315, 217, 61, 315, 315, 120, + /* 1920 */ 328, 315, 315, 315, 219, 329, 217, 63, 315, 315, + /* 1930 */ 120, 262, 285, 315, 331, 315, 329, 315, 315, 315, + /* 1940 */ 328, 315, 262, 285, 219, 331, 217, 62, 328, 315, + /* 1950 */ 120, 315, 219, 315, 217, 84, 329, 315, 120, 315, + /* 1960 */ 315, 315, 262, 285, 329, 331, 315, 315, 328, 315, + /* 1970 */ 262, 285, 219, 331, 217, 77, 315, 315, 120, 315, + /* 1980 */ 315, 315, 328, 315, 329, 315, 219, 315, 217, 75, + /* 1990 */ 262, 285, 120, 331, 315, 315, 315, 315, 329, 315, + /* 2000 */ 315, 315, 328, 315, 262, 285, 219, 331, 217, 67, + /* 2010 */ 315, 315, 120, 328, 315, 315, 315, 219, 329, 217, + /* 2020 */ 80, 315, 315, 120, 262, 285, 315, 331, 315, 329, + /* 2030 */ 315, 315, 315, 315, 315, 262, 285, 328, 331, 315, + /* 2040 */ 315, 224, 315, 217, 315, 328, 315, 120, 315, 238, + /* 2050 */ 315, 217, 315, 194, 315, 120, 315, 315, 315, 262, + /* 2060 */ 285, 240, 331, 315, 315, 315, 315, 262, 285, 315, + /* 2070 */ 331, 328, 315, 315, 315, 234, 315, 217, 315, 315, + /* 2080 */ 328, 120, 315, 315, 239, 315, 217, 256, 315, 315, + /* 2090 */ 120, 328, 315, 262, 285, 271, 331, 217, 315, 315, + /* 2100 */ 328, 120, 262, 285, 243, 331, 217, 315, 315, 315, + /* 2110 */ 120, 328, 315, 262, 285, 280, 331, 217, 315, 315, + /* 2120 */ 328, 120, 262, 285, 261, 331, 217, 315, 315, 315, + /* 2130 */ 120, 328, 315, 262, 285, 295, 331, 217, 315, 315, + /* 2140 */ 315, 120, 262, 285, 315, 331, 315, 315, 315, 315, + /* 2150 */ 315, 315, 315, 262, 285, 315, 331, 328, 315, 315, + /* 2160 */ 315, 236, 315, 217, 315, 315, 315, 120, 315, 315, + /* 2170 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 262, + /* 2180 */ 285, 315, 331, ); static public $yy_lookahead = array( - /* 0 */ 1, 30, 33, 86, 3, 4, 5, 6, 7, 8, - /* 10 */ 9, 10, 11, 12, 89, 16, 15, 100, 110, 111, - /* 20 */ 49, 22, 21, 98, 23, 15, 101, 102, 57, 28, - /* 30 */ 61, 114, 31, 34, 35, 36, 37, 38, 39, 40, + /* 0 */ 1, 30, 110, 111, 3, 4, 5, 6, 7, 8, + /* 10 */ 9, 10, 11, 12, 19, 20, 15, 81, 89, 16, + /* 20 */ 49, 22, 21, 49, 23, 22, 27, 98, 57, 28, + /* 30 */ 101, 102, 31, 34, 35, 36, 37, 38, 39, 40, /* 40 */ 41, 42, 43, 44, 45, 46, 47, 4, 5, 6, - /* 50 */ 7, 8, 16, 19, 20, 12, 13, 14, 22, 49, - /* 60 */ 16, 62, 63, 64, 65, 66, 67, 68, 69, 70, - /* 70 */ 71, 72, 73, 1, 81, 80, 81, 82, 85, 22, - /* 80 */ 87, 88, 55, 90, 91, 49, 86, 60, 16, 89, - /* 90 */ 97, 57, 48, 57, 22, 81, 103, 104, 98, 106, - /* 100 */ 100, 101, 102, 17, 18, 107, 34, 35, 36, 37, + /* 50 */ 7, 8, 57, 117, 118, 12, 13, 14, 80, 81, + /* 60 */ 82, 62, 63, 64, 65, 66, 67, 68, 69, 70, + /* 70 */ 71, 72, 73, 1, 81, 30, 16, 33, 85, 49, + /* 80 */ 87, 88, 22, 90, 91, 55, 86, 57, 16, 89, + /* 90 */ 97, 61, 81, 48, 22, 24, 103, 104, 98, 106, + /* 100 */ 100, 101, 102, 99, 33, 61, 34, 35, 36, 37, /* 110 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - /* 120 */ 78, 79, 80, 81, 82, 15, 15, 17, 18, 18, - /* 130 */ 19, 117, 118, 18, 62, 63, 64, 65, 66, 67, - /* 140 */ 68, 69, 70, 71, 72, 73, 1, 1, 81, 86, - /* 150 */ 15, 16, 85, 18, 87, 88, 15, 90, 91, 18, - /* 160 */ 19, 98, 16, 100, 97, 30, 20, 22, 22, 58, - /* 170 */ 103, 104, 27, 106, 15, 16, 2, 18, 99, 34, + /* 120 */ 78, 79, 80, 81, 82, 18, 16, 16, 15, 118, + /* 130 */ 17, 18, 22, 22, 62, 63, 64, 65, 66, 67, + /* 140 */ 68, 69, 70, 71, 72, 73, 1, 81, 17, 15, + /* 150 */ 16, 85, 18, 87, 88, 99, 90, 91, 48, 86, + /* 160 */ 49, 16, 89, 97, 30, 58, 19, 22, 57, 103, + /* 170 */ 104, 98, 106, 100, 101, 102, 29, 99, 1, 34, /* 180 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 190 */ 45, 46, 47, 19, 25, 49, 15, 19, 15, 18, - /* 200 */ 19, 18, 2, 57, 17, 18, 25, 62, 63, 64, + /* 190 */ 45, 46, 47, 16, 92, 93, 49, 20, 15, 22, + /* 200 */ 25, 18, 19, 108, 57, 110, 111, 62, 63, 64, /* 210 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 1, - /* 220 */ 81, 107, 22, 24, 85, 15, 87, 88, 18, 90, - /* 230 */ 91, 16, 33, 55, 16, 86, 97, 22, 89, 20, - /* 240 */ 25, 58, 103, 104, 75, 106, 59, 98, 2, 100, - /* 250 */ 101, 102, 34, 35, 36, 37, 38, 39, 40, 41, - /* 260 */ 42, 43, 44, 45, 46, 47, 1, 16, 58, 15, - /* 270 */ 16, 49, 18, 22, 55, 15, 25, 17, 18, 60, + /* 220 */ 81, 17, 18, 49, 85, 15, 87, 88, 18, 90, + /* 230 */ 91, 57, 86, 16, 16, 89, 97, 86, 17, 22, + /* 240 */ 89, 58, 103, 104, 98, 106, 100, 101, 102, 98, + /* 250 */ 75, 100, 34, 35, 36, 37, 38, 39, 40, 41, + /* 260 */ 42, 43, 44, 45, 46, 47, 50, 15, 58, 15, + /* 270 */ 18, 19, 18, 19, 16, 15, 16, 25, 18, 2, /* 280 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, - /* 290 */ 72, 73, 32, 108, 32, 110, 111, 1, 33, 34, - /* 300 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 310 */ 45, 46, 47, 1, 107, 16, 109, 16, 22, 16, - /* 320 */ 48, 22, 87, 22, 1, 22, 91, 62, 63, 64, - /* 330 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 16, - /* 340 */ 15, 106, 29, 18, 18, 22, 34, 35, 36, 37, - /* 350 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - /* 360 */ 1, 2, 16, 16, 16, 16, 110, 111, 22, 22, - /* 370 */ 22, 22, 18, 61, 62, 63, 64, 65, 66, 67, - /* 380 */ 68, 69, 70, 71, 72, 73, 32, 15, 19, 15, - /* 390 */ 18, 30, 18, 34, 35, 36, 37, 38, 39, 40, - /* 400 */ 41, 42, 43, 44, 45, 46, 47, 49, 16, 48, - /* 410 */ 16, 16, 16, 55, 22, 57, 22, 22, 22, 61, - /* 420 */ 18, 62, 63, 64, 65, 66, 67, 68, 69, 70, - /* 430 */ 71, 72, 73, 1, 81, 19, 61, 86, 85, 95, - /* 440 */ 87, 88, 48, 48, 91, 92, 86, 49, 16, 89, - /* 450 */ 97, 100, 22, 109, 19, 57, 103, 104, 98, 106, - /* 460 */ 100, 101, 102, 82, 29, 84, 34, 35, 36, 37, - /* 470 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - /* 480 */ 18, 18, 81, 16, 49, 16, 107, 16, 109, 22, - /* 490 */ 20, 22, 57, 22, 62, 63, 64, 65, 66, 67, - /* 500 */ 68, 69, 70, 71, 72, 73, 1, 1, 81, 105, - /* 510 */ 15, 16, 85, 18, 87, 88, 112, 90, 91, 118, - /* 520 */ 86, 58, 16, 89, 97, 30, 20, 57, 22, 24, - /* 530 */ 103, 104, 98, 106, 100, 101, 102, 92, 93, 34, - /* 540 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 550 */ 45, 46, 47, 1, 105, 18, 16, 16, 16, 50, - /* 560 */ 50, 112, 22, 22, 22, 86, 86, 62, 63, 64, - /* 570 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 100, - /* 580 */ 100, 15, 18, 18, 18, 50, 34, 35, 36, 37, - /* 590 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - /* 600 */ 96, 26, 59, 16, 16, 29, 16, 18, 59, 22, - /* 610 */ 22, 99, 16, 109, 62, 63, 64, 65, 66, 67, - /* 620 */ 68, 69, 70, 71, 72, 73, 1, 75, 81, 17, - /* 630 */ 17, 95, 85, 55, 87, 88, 51, 90, 91, 32, - /* 640 */ 86, 95, 16, 89, 97, 109, 17, 22, 25, 17, - /* 650 */ 103, 104, 98, 106, 100, 109, 22, 49, 18, 34, - /* 660 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 670 */ 45, 46, 47, 17, 100, 108, 2, 20, 17, 111, - /* 680 */ 109, 22, 112, 114, 107, 92, 13, 62, 63, 64, - /* 690 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 1, - /* 700 */ 81, 99, 1, 83, 85, 81, 87, 88, 22, 85, - /* 710 */ 91, 87, 88, 98, 16, 91, 97, 95, 107, 119, - /* 720 */ 119, 97, 103, 104, 94, 106, 119, 103, 104, 94, - /* 730 */ 106, 109, 34, 35, 36, 37, 38, 39, 40, 41, - /* 740 */ 42, 43, 44, 45, 46, 47, 1, 119, 119, 119, - /* 750 */ 119, 119, 119, 119, 119, 119, 119, 119, 95, 95, - /* 760 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, - /* 770 */ 72, 73, 109, 109, 119, 119, 119, 119, 119, 34, - /* 780 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 790 */ 45, 46, 47, 119, 119, 50, 119, 119, 119, 119, - /* 800 */ 119, 119, 119, 119, 119, 119, 119, 62, 63, 64, - /* 810 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 1, - /* 820 */ 81, 119, 119, 95, 85, 81, 87, 88, 119, 85, - /* 830 */ 91, 87, 88, 119, 16, 91, 97, 109, 119, 119, - /* 840 */ 119, 97, 103, 104, 119, 106, 119, 103, 104, 119, - /* 850 */ 106, 119, 34, 35, 36, 37, 38, 39, 40, 41, - /* 860 */ 42, 43, 44, 45, 46, 47, 119, 119, 119, 119, - /* 870 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 86, - /* 880 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, - /* 890 */ 72, 73, 1, 100, 119, 81, 119, 119, 86, 85, - /* 900 */ 119, 87, 88, 10, 119, 91, 119, 16, 15, 119, - /* 910 */ 98, 97, 100, 119, 21, 119, 23, 103, 104, 119, - /* 920 */ 106, 28, 119, 119, 31, 34, 35, 36, 37, 38, - /* 930 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1, - /* 940 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, - /* 950 */ 119, 95, 95, 62, 63, 64, 65, 66, 67, 68, - /* 960 */ 69, 70, 71, 72, 73, 109, 109, 74, 75, 76, - /* 970 */ 119, 119, 34, 35, 36, 37, 38, 39, 40, 41, - /* 980 */ 42, 43, 44, 45, 46, 47, 119, 119, 50, 119, - /* 990 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 86, - /* 1000 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, - /* 1010 */ 72, 73, 1, 100, 119, 81, 119, 119, 86, 85, - /* 1020 */ 119, 87, 88, 10, 119, 91, 119, 16, 15, 119, - /* 1030 */ 98, 97, 100, 119, 21, 119, 23, 103, 104, 119, - /* 1040 */ 106, 28, 119, 119, 31, 34, 35, 36, 37, 38, + /* 290 */ 72, 73, 1, 81, 87, 16, 19, 85, 91, 87, + /* 300 */ 88, 22, 90, 91, 25, 86, 48, 16, 89, 97, + /* 310 */ 20, 110, 111, 106, 15, 103, 104, 98, 106, 100, + /* 320 */ 101, 102, 107, 18, 109, 34, 35, 36, 37, 38, + /* 330 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 19, + /* 340 */ 29, 15, 16, 15, 18, 55, 18, 55, 49, 107, + /* 350 */ 60, 109, 60, 62, 63, 64, 65, 66, 67, 68, + /* 360 */ 69, 70, 71, 72, 73, 1, 1, 81, 16, 15, + /* 370 */ 16, 85, 18, 87, 88, 55, 90, 91, 17, 86, + /* 380 */ 86, 16, 89, 97, 30, 20, 58, 22, 24, 103, + /* 390 */ 104, 98, 106, 100, 100, 1, 17, 17, 34, 35, + /* 400 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + /* 410 */ 46, 47, 1, 82, 49, 84, 22, 15, 17, 18, + /* 420 */ 18, 15, 57, 17, 18, 86, 62, 63, 64, 65, + /* 430 */ 66, 67, 68, 69, 70, 71, 72, 73, 32, 100, + /* 440 */ 15, 29, 18, 18, 33, 34, 35, 36, 37, 38, + /* 450 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1, + /* 460 */ 59, 16, 16, 16, 48, 55, 16, 22, 22, 22, + /* 470 */ 25, 86, 22, 62, 63, 64, 65, 66, 67, 68, + /* 480 */ 69, 70, 71, 72, 73, 100, 2, 15, 15, 18, + /* 490 */ 18, 18, 34, 35, 36, 37, 38, 39, 40, 41, + /* 500 */ 42, 43, 44, 45, 46, 47, 22, 18, 18, 16, + /* 510 */ 16, 16, 16, 16, 16, 22, 22, 22, 22, 22, + /* 520 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + /* 530 */ 72, 73, 1, 75, 81, 86, 107, 32, 85, 18, + /* 540 */ 87, 88, 48, 49, 91, 92, 86, 16, 16, 100, + /* 550 */ 97, 57, 18, 32, 22, 16, 103, 104, 98, 106, + /* 560 */ 100, 22, 18, 114, 49, 34, 35, 36, 37, 38, + /* 570 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 25, + /* 580 */ 48, 19, 16, 16, 16, 16, 16, 2, 22, 22, + /* 590 */ 22, 22, 22, 62, 63, 64, 65, 66, 67, 68, + /* 600 */ 69, 70, 71, 72, 73, 1, 81, 32, 16, 95, + /* 610 */ 85, 81, 87, 88, 22, 85, 91, 87, 88, 96, + /* 620 */ 16, 91, 97, 109, 2, 20, 61, 97, 103, 104, + /* 630 */ 50, 106, 109, 103, 104, 16, 106, 26, 34, 35, + /* 640 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + /* 650 */ 46, 47, 1, 105, 105, 15, 18, 51, 18, 22, + /* 660 */ 112, 112, 57, 22, 86, 86, 62, 63, 64, 65, + /* 670 */ 66, 67, 68, 69, 70, 71, 72, 73, 100, 100, + /* 680 */ 59, 50, 59, 18, 100, 34, 35, 36, 37, 38, + /* 690 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 19, + /* 700 */ 1, 108, 20, 107, 109, 98, 22, 22, 17, 112, + /* 710 */ 111, 94, 61, 62, 63, 64, 65, 66, 67, 68, + /* 720 */ 69, 70, 71, 72, 73, 1, 81, 114, 13, 95, + /* 730 */ 85, 81, 87, 88, 92, 85, 91, 87, 88, 107, + /* 740 */ 2, 91, 97, 109, 22, 83, 22, 97, 103, 104, + /* 750 */ 94, 106, 119, 103, 104, 107, 106, 119, 34, 35, + /* 760 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + /* 770 */ 46, 47, 119, 119, 119, 119, 119, 119, 119, 119, + /* 780 */ 119, 119, 119, 119, 119, 95, 62, 63, 64, 65, + /* 790 */ 66, 67, 68, 69, 70, 71, 72, 73, 1, 109, + /* 800 */ 119, 81, 119, 119, 86, 85, 119, 87, 88, 10, + /* 810 */ 119, 91, 119, 16, 15, 119, 98, 97, 100, 119, + /* 820 */ 21, 119, 23, 103, 104, 119, 106, 28, 119, 119, + /* 830 */ 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, + /* 840 */ 43, 44, 45, 46, 47, 1, 2, 119, 119, 119, + /* 850 */ 119, 119, 119, 119, 119, 119, 119, 95, 95, 62, + /* 860 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, + /* 870 */ 73, 109, 109, 74, 75, 76, 119, 119, 34, 35, + /* 880 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + /* 890 */ 46, 47, 1, 119, 119, 119, 119, 119, 119, 119, + /* 900 */ 119, 119, 119, 119, 95, 95, 62, 63, 64, 65, + /* 910 */ 66, 67, 68, 69, 70, 71, 72, 73, 109, 109, + /* 920 */ 119, 119, 119, 119, 119, 34, 35, 36, 37, 38, + /* 930 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 119, + /* 940 */ 119, 50, 119, 119, 119, 119, 119, 119, 119, 119, + /* 950 */ 119, 119, 86, 62, 63, 64, 65, 66, 67, 68, + /* 960 */ 69, 70, 71, 72, 73, 1, 100, 119, 81, 119, + /* 970 */ 119, 86, 85, 119, 87, 88, 10, 119, 91, 119, + /* 980 */ 16, 15, 119, 98, 97, 100, 119, 21, 119, 23, + /* 990 */ 103, 104, 119, 106, 28, 119, 119, 31, 34, 35, + /* 1000 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + /* 1010 */ 46, 47, 1, 119, 119, 119, 119, 119, 119, 119, + /* 1020 */ 119, 119, 119, 119, 95, 95, 62, 63, 64, 65, + /* 1030 */ 66, 67, 68, 69, 70, 71, 72, 73, 109, 109, + /* 1040 */ 74, 75, 76, 119, 119, 34, 35, 36, 37, 38, /* 1050 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1, - /* 1060 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, - /* 1070 */ 119, 86, 95, 62, 63, 64, 65, 66, 67, 68, - /* 1080 */ 69, 70, 71, 72, 73, 100, 109, 74, 75, 76, + /* 1060 */ 119, 50, 119, 119, 119, 119, 119, 119, 119, 119, + /* 1070 */ 119, 95, 119, 62, 63, 64, 65, 66, 67, 68, + /* 1080 */ 69, 70, 71, 72, 73, 109, 119, 119, 119, 119, /* 1090 */ 119, 119, 34, 35, 36, 37, 38, 39, 40, 41, /* 1100 */ 42, 43, 44, 45, 46, 47, 119, 119, 119, 119, /* 1110 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, /* 1120 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, - /* 1130 */ 72, 73, 119, 86, 86, 119, 15, 89, 17, 18, - /* 1140 */ 119, 119, 21, 119, 23, 98, 98, 100, 100, 28, - /* 1150 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119, + /* 1130 */ 72, 73, 119, 1, 119, 119, 15, 119, 17, 18, + /* 1140 */ 119, 119, 21, 86, 23, 119, 119, 119, 16, 28, + /* 1150 */ 119, 119, 31, 32, 22, 98, 35, 100, 119, 119, /* 1160 */ 119, 119, 81, 119, 119, 119, 85, 119, 87, 88, /* 1170 */ 49, 119, 91, 52, 53, 54, 55, 56, 97, 119, /* 1180 */ 59, 60, 61, 119, 103, 104, 15, 106, 17, 18, @@ -592,101 +602,112 @@ static public $yy_action = array( /* 1600 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119, /* 1610 */ 119, 119, 81, 119, 119, 119, 85, 119, 87, 88, /* 1620 */ 49, 119, 91, 52, 53, 54, 55, 56, 97, 119, - /* 1630 */ 59, 119, 119, 119, 103, 104, 15, 106, 17, 18, + /* 1630 */ 59, 60, 119, 119, 103, 104, 15, 106, 17, 18, /* 1640 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28, /* 1650 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119, /* 1660 */ 119, 119, 81, 119, 119, 119, 85, 119, 87, 88, /* 1670 */ 49, 119, 91, 52, 53, 54, 55, 56, 97, 119, - /* 1680 */ 59, 119, 119, 119, 103, 104, 119, 106, 119, 119, - /* 1690 */ 119, 119, 119, 119, 113, 74, 119, 119, 119, 119, - /* 1700 */ 81, 119, 119, 119, 85, 81, 87, 88, 119, 85, - /* 1710 */ 91, 87, 88, 119, 119, 91, 97, 119, 119, 119, - /* 1720 */ 119, 97, 103, 104, 119, 106, 119, 103, 104, 119, - /* 1730 */ 106, 119, 119, 119, 81, 119, 119, 113, 85, 119, - /* 1740 */ 87, 88, 119, 119, 91, 119, 119, 119, 81, 119, - /* 1750 */ 97, 119, 85, 119, 87, 88, 103, 104, 91, 106, - /* 1760 */ 119, 119, 119, 119, 97, 119, 113, 119, 119, 119, - /* 1770 */ 103, 104, 119, 106, 119, 119, 119, 81, 119, 119, - /* 1780 */ 113, 85, 81, 87, 88, 119, 85, 91, 87, 88, - /* 1790 */ 119, 119, 91, 97, 119, 119, 119, 119, 97, 103, - /* 1800 */ 104, 119, 106, 119, 103, 104, 119, 106, 119, 81, - /* 1810 */ 119, 119, 119, 85, 119, 87, 88, 119, 119, 91, - /* 1820 */ 81, 119, 119, 119, 85, 97, 87, 88, 119, 119, - /* 1830 */ 91, 103, 104, 119, 106, 119, 97, 119, 119, 119, - /* 1840 */ 81, 119, 103, 104, 85, 106, 87, 88, 81, 119, - /* 1850 */ 91, 119, 85, 119, 87, 88, 97, 119, 91, 119, - /* 1860 */ 119, 119, 103, 104, 97, 106, 119, 119, 81, 119, - /* 1870 */ 103, 104, 85, 106, 87, 88, 119, 119, 91, 119, - /* 1880 */ 119, 119, 81, 119, 97, 119, 85, 119, 87, 88, - /* 1890 */ 103, 104, 91, 106, 119, 119, 119, 119, 97, 119, - /* 1900 */ 119, 119, 81, 119, 103, 104, 85, 106, 87, 88, - /* 1910 */ 119, 119, 91, 81, 119, 119, 119, 85, 97, 87, - /* 1920 */ 88, 119, 119, 91, 103, 104, 119, 106, 119, 97, - /* 1930 */ 119, 119, 119, 119, 119, 103, 104, 81, 106, 119, - /* 1940 */ 119, 85, 119, 87, 88, 81, 119, 91, 119, 85, - /* 1950 */ 119, 87, 119, 97, 119, 91, 119, 119, 119, 103, - /* 1960 */ 104, 97, 106, 119, 119, 119, 119, 103, 104, 119, - /* 1970 */ 106, 81, 119, 119, 119, 85, 119, 87, 119, 119, - /* 1980 */ 81, 91, 119, 119, 85, 119, 87, 97, 119, 119, - /* 1990 */ 91, 81, 119, 103, 104, 85, 106, 87, 119, 119, - /* 2000 */ 81, 91, 103, 104, 85, 106, 87, 97, 119, 119, - /* 2010 */ 91, 81, 119, 103, 104, 85, 106, 87, 119, 119, - /* 2020 */ 81, 91, 103, 104, 85, 106, 87, 119, 119, 119, - /* 2030 */ 91, 81, 119, 103, 104, 85, 106, 87, 119, 119, - /* 2040 */ 119, 91, 103, 104, 119, 106, 119, 119, 119, 119, - /* 2050 */ 119, 119, 119, 103, 104, 119, 106, 81, 119, 119, - /* 2060 */ 119, 85, 81, 87, 119, 119, 85, 91, 87, 119, - /* 2070 */ 119, 119, 91, 119, 119, 119, 119, 119, 119, 103, - /* 2080 */ 104, 119, 106, 119, 103, 104, 119, 106, + /* 1680 */ 59, 60, 119, 119, 103, 104, 15, 106, 17, 18, + /* 1690 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28, + /* 1700 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119, + /* 1710 */ 119, 119, 81, 119, 119, 119, 85, 119, 87, 88, + /* 1720 */ 49, 119, 91, 52, 53, 54, 55, 56, 97, 119, + /* 1730 */ 59, 119, 119, 119, 103, 104, 15, 106, 17, 18, + /* 1740 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28, + /* 1750 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119, + /* 1760 */ 119, 119, 81, 119, 119, 119, 85, 119, 87, 88, + /* 1770 */ 49, 119, 91, 52, 53, 54, 55, 56, 97, 119, + /* 1780 */ 59, 119, 119, 119, 103, 104, 119, 106, 119, 119, + /* 1790 */ 119, 119, 119, 119, 113, 74, 119, 119, 119, 119, + /* 1800 */ 81, 119, 119, 119, 85, 81, 87, 88, 119, 85, + /* 1810 */ 91, 87, 88, 119, 119, 91, 97, 119, 119, 119, + /* 1820 */ 119, 97, 103, 104, 119, 106, 119, 103, 104, 119, + /* 1830 */ 106, 119, 119, 119, 81, 119, 119, 113, 85, 119, + /* 1840 */ 87, 88, 119, 119, 91, 119, 119, 119, 81, 119, + /* 1850 */ 97, 119, 85, 119, 87, 88, 103, 104, 91, 106, + /* 1860 */ 119, 119, 119, 119, 97, 119, 113, 119, 119, 119, + /* 1870 */ 103, 104, 119, 106, 119, 119, 119, 81, 119, 119, + /* 1880 */ 113, 85, 81, 87, 88, 119, 85, 91, 87, 88, + /* 1890 */ 119, 119, 91, 97, 119, 119, 119, 119, 97, 103, + /* 1900 */ 104, 119, 106, 119, 103, 104, 119, 106, 119, 81, + /* 1910 */ 119, 119, 119, 85, 119, 87, 88, 119, 119, 91, + /* 1920 */ 81, 119, 119, 119, 85, 97, 87, 88, 119, 119, + /* 1930 */ 91, 103, 104, 119, 106, 119, 97, 119, 119, 119, + /* 1940 */ 81, 119, 103, 104, 85, 106, 87, 88, 81, 119, + /* 1950 */ 91, 119, 85, 119, 87, 88, 97, 119, 91, 119, + /* 1960 */ 119, 119, 103, 104, 97, 106, 119, 119, 81, 119, + /* 1970 */ 103, 104, 85, 106, 87, 88, 119, 119, 91, 119, + /* 1980 */ 119, 119, 81, 119, 97, 119, 85, 119, 87, 88, + /* 1990 */ 103, 104, 91, 106, 119, 119, 119, 119, 97, 119, + /* 2000 */ 119, 119, 81, 119, 103, 104, 85, 106, 87, 88, + /* 2010 */ 119, 119, 91, 81, 119, 119, 119, 85, 97, 87, + /* 2020 */ 88, 119, 119, 91, 103, 104, 119, 106, 119, 97, + /* 2030 */ 119, 119, 119, 119, 119, 103, 104, 81, 106, 119, + /* 2040 */ 119, 85, 119, 87, 119, 81, 119, 91, 119, 85, + /* 2050 */ 119, 87, 119, 97, 119, 91, 119, 119, 119, 103, + /* 2060 */ 104, 97, 106, 119, 119, 119, 119, 103, 104, 119, + /* 2070 */ 106, 81, 119, 119, 119, 85, 119, 87, 119, 119, + /* 2080 */ 81, 91, 119, 119, 85, 119, 87, 97, 119, 119, + /* 2090 */ 91, 81, 119, 103, 104, 85, 106, 87, 119, 119, + /* 2100 */ 81, 91, 103, 104, 85, 106, 87, 119, 119, 119, + /* 2110 */ 91, 81, 119, 103, 104, 85, 106, 87, 119, 119, + /* 2120 */ 81, 91, 103, 104, 85, 106, 87, 119, 119, 119, + /* 2130 */ 91, 81, 119, 103, 104, 85, 106, 87, 119, 119, + /* 2140 */ 119, 91, 103, 104, 119, 106, 119, 119, 119, 119, + /* 2150 */ 119, 119, 119, 103, 104, 119, 106, 81, 119, 119, + /* 2160 */ 119, 85, 119, 87, 119, 119, 119, 91, 119, 119, + /* 2170 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 103, + /* 2180 */ 104, 119, 106, ); - const YY_SHIFT_USE_DFLT = -32; - const YY_SHIFT_MAX = 227; + const YY_SHIFT_USE_DFLT = -30; + const YY_SHIFT_MAX = 232; static public $yy_shift_ofst = array( - /* 0 */ 1, 1371, 1321, 1171, 1171, 1171, 1171, 1421, 1371, 1421, - /* 10 */ 1521, 1321, 1471, 1121, 1171, 1171, 1171, 1171, 1171, 1171, - /* 20 */ 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, - /* 30 */ 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1271, - /* 40 */ 1271, 1221, 1571, 1621, 1571, 1571, 1571, 1571, 1571, 145, - /* 50 */ 72, -1, 625, 625, 698, 552, 818, 891, 938, 432, - /* 60 */ 265, 218, 312, 505, 359, 745, 1011, 1058, 1058, 1058, + /* 0 */ 1, 1371, 1621, 1171, 1171, 1421, 1471, 1421, 1371, 1571, + /* 10 */ 1171, 1171, 1471, 1121, 1171, 1171, 1171, 1171, 1171, 1171, + /* 20 */ 1321, 1171, 1521, 1171, 1171, 1171, 1171, 1171, 1171, 1171, + /* 30 */ 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, + /* 40 */ 1271, 1271, 1221, 1671, 1721, 1671, 1671, 1671, 1671, 1671, + /* 50 */ 145, 72, -1, 724, 724, 797, 844, 651, 964, 458, + /* 60 */ 1011, 291, 218, 364, 604, 531, 411, 891, 1058, 1058, /* 70 */ 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, - /* 80 */ 1058, 1058, 1058, 146, 296, 1, 1013, 506, 187, 219, - /* 90 */ 323, 296, 200, 296, 893, 43, 111, 181, 394, 215, - /* 100 */ 34, 183, 251, 325, 86, 325, 470, 372, 325, 325, - /* 110 */ 374, 325, 325, 325, 86, 325, 372, 566, 325, 661, - /* 120 */ 430, 657, 430, 430, 659, 657, 135, 495, 159, 210, - /* 130 */ 110, 141, 254, 27, 27, 27, 10, 301, 299, 303, - /* 140 */ 348, 346, 347, 349, 588, 540, 471, 396, 469, 541, - /* 150 */ 27, 587, 542, 27, 467, 392, 657, 674, 657, 674, - /* 160 */ 673, 657, 686, 701, 686, 608, 661, -32, -32, -32, - /* 170 */ -32, -32, 36, 435, 260, 358, 395, -29, 44, 361, - /* 180 */ -31, 174, 463, 199, 398, 169, 398, 178, 354, 115, - /* 190 */ 262, 313, 369, 222, 272, 57, 246, 640, 578, 613, - /* 200 */ 612, 596, 656, 576, 326, 585, 629, 608, 634, 632, - /* 210 */ 623, 607, 626, 590, 549, 509, 537, 462, 402, 375, - /* 220 */ 416, 564, 565, 543, 589, 575, 535, 510, + /* 80 */ 1058, 1058, 1058, 1058, 1058, 365, 394, 1, 966, 177, + /* 90 */ 290, 1132, 401, 484, 394, 394, 799, 43, 252, 183, + /* 100 */ -5, 110, 445, 328, 279, 425, 425, 402, 425, 425, + /* 110 */ 425, 204, 473, 204, 425, 640, 425, 425, 402, 472, + /* 120 */ 605, 425, 684, 682, 685, 684, 691, 682, 684, 354, + /* 130 */ 134, 210, 254, 113, 260, 326, 217, 60, 570, 567, + /* 140 */ 299, 292, 569, 568, 566, 539, 3, 292, 447, 292, + /* 150 */ 450, 292, 497, 495, 292, 592, 496, 493, 446, 699, + /* 160 */ 682, 722, 722, 691, 682, 738, 682, 715, -26, 738, + /* 170 */ -30, -30, -30, -30, -30, 494, 111, 147, 406, 30, + /* 180 */ 532, -29, 45, 71, 174, 107, 258, 174, 277, 320, + /* 190 */ 44, 175, 521, -26, 311, 352, 305, 216, 221, 131, + /* 200 */ 680, 619, 611, 580, 565, 562, 622, 575, 606, 638, + /* 210 */ 631, 665, 623, 621, 637, 641, 585, 554, 489, 416, + /* 220 */ 471, 424, 379, 380, 412, 490, 410, 544, 361, 515, + /* 230 */ 534, 505, 498, ); - const YY_REDUCE_USE_DFLT = -93; - const YY_REDUCE_MAX = 171; + const YY_REDUCE_USE_DFLT = -109; + const YY_REDUCE_MAX = 174; static public $yy_reduce_ofst = array( - /* 0 */ 42, 1081, 427, 1624, 1667, 1653, 1581, -7, 1131, 547, - /* 10 */ 67, 139, 353, 624, 739, 744, 1728, 1759, 1739, 1801, - /* 20 */ 1821, 1281, 814, 1381, 1481, 619, 1431, 1531, 1619, 1331, - /* 30 */ 934, 1181, 1231, 1696, 1701, 1832, 1856, 1767, 1787, 1890, - /* 40 */ 1910, 1864, 1930, 1919, 1939, 1950, 1899, 1981, 1976, 434, - /* 50 */ 149, 0, 149, 360, -75, -75, -75, -75, -75, -75, - /* 60 */ -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, - /* 70 */ -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, - /* 80 */ -75, -75, -75, 554, 1048, -5, 14, 812, 235, 185, - /* 90 */ 932, 63, -83, 1047, 401, 381, 379, 504, 985, 793, - /* 100 */ 256, 379, 793, 857, 449, 728, 256, 663, 207, 664, - /* 110 */ 622, 536, 344, 546, 404, 977, 857, 857, 856, 445, - /* 120 */ 913, 256, 480, 479, 351, -92, 571, 571, 571, 571, - /* 130 */ 570, 571, 571, 567, 567, 567, 577, 574, 574, 574, - /* 140 */ 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, - /* 150 */ 567, 574, 574, 567, 574, 574, 568, 569, 568, 569, - /* 160 */ 620, 568, 630, 615, 635, 611, 593, 602, 512, 79, - /* 170 */ -2, 114, + /* 0 */ 42, 1081, 66, 1767, 1724, 212, 286, 139, 1131, 453, + /* 10 */ 1753, 1681, -7, 525, 650, 645, 720, 1901, 1887, 1331, + /* 20 */ 1231, 1859, 1719, 1839, 1381, 1921, 530, 1932, 1867, 1431, + /* 30 */ 1281, 1801, 1796, 1631, 1828, 1581, 1531, 1181, 887, 1481, + /* 40 */ 1964, 1990, 1956, 2030, 1999, 2076, 2050, 2039, 2010, 2019, + /* 50 */ 219, 0, 73, 219, 146, -71, -71, -71, -71, -71, + /* 60 */ -71, -71, -71, -71, -71, -71, -71, -71, -71, -71, + /* 70 */ -71, -71, -71, -71, -71, -71, -71, -71, -71, -71, + /* 80 */ -71, -71, -71, -71, -71, 293, 151, -22, -64, 885, + /* 90 */ 95, 718, 207, 449, 1057, 460, 11, 331, 523, 242, + /* 100 */ -108, 579, 578, 242, 578, 634, 514, 690, 763, 762, + /* 110 */ 809, 548, 930, 549, 976, 810, 929, 215, 810, 810, + /* 120 */ -108, 810, 866, 201, 385, 294, 102, -108, 339, 595, + /* 130 */ 595, 595, 595, 597, 595, 595, 584, 584, 584, 584, + /* 140 */ 596, 593, 584, 584, 584, 584, 584, 593, 584, 593, + /* 150 */ 584, 593, 584, 584, 593, 584, 584, 584, 584, 607, + /* 160 */ 599, 656, 617, 642, 599, 613, 599, 662, 648, 613, + /* 170 */ 632, 429, 78, 56, 4, ); static public $yyExpectedTokens = array( /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, ), @@ -731,32 +752,32 @@ static public $yy_action = array( /* 39 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), /* 40 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), /* 41 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), - /* 42 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 42 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), /* 43 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), /* 44 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), /* 45 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), /* 46 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), /* 47 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), /* 48 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), - /* 49 */ array(1, 22, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 49 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), /* 50 */ array(1, 16, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 51 */ array(1, 16, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 52 */ array(1, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 52 */ array(1, 22, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 53 */ array(1, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 54 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 55 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, ), - /* 56 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 57 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 58 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 59 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 60 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 54 */ array(1, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 55 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 56 */ array(1, 2, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 57 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 58 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 59 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, ), + /* 60 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 61 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 62 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 62 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 63 */ array(1, 24, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 64 */ array(1, 2, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 65 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 66 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 67 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 64 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 65 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 66 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 67 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 68 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 69 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 70 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), @@ -772,156 +793,156 @@ static public $yy_action = array( /* 80 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 81 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), /* 82 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), - /* 83 */ array(1, 16, 20, 22, 49, 57, ), - /* 84 */ array(1, 22, ), - /* 85 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, ), - /* 86 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ), - /* 87 */ array(1, 16, 20, 22, ), - /* 88 */ array(17, 18, 59, ), - /* 89 */ array(20, 55, 60, ), - /* 90 */ array(1, 16, 22, ), - /* 91 */ array(1, 22, ), - /* 92 */ array(2, 22, ), - /* 93 */ array(1, 22, ), - /* 94 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ), - /* 95 */ array(4, 5, 6, 7, 8, 12, 13, 14, ), - /* 96 */ array(15, 18, 19, 58, ), - /* 97 */ array(15, 18, 19, 25, ), - /* 98 */ array(16, 22, 48, ), - /* 99 */ array(16, 22, 25, ), + /* 83 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 84 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 85 */ array(1, 16, 20, 22, 49, 57, ), + /* 86 */ array(1, 22, ), + /* 87 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, ), + /* 88 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ), + /* 89 */ array(1, 16, 20, 22, ), + /* 90 */ array(20, 55, 60, ), + /* 91 */ array(1, 16, 22, ), + /* 92 */ array(17, 18, 59, ), + /* 93 */ array(2, 22, ), + /* 94 */ array(1, 22, ), + /* 95 */ array(1, 22, ), + /* 96 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ), + /* 97 */ array(4, 5, 6, 7, 8, 12, 13, 14, ), + /* 98 */ array(15, 18, 19, 25, ), + /* 99 */ array(15, 18, 19, 58, ), /* 100 */ array(19, 20, 57, ), - /* 101 */ array(15, 18, 58, ), + /* 101 */ array(16, 22, 48, ), /* 102 */ array(16, 22, 25, ), - /* 103 */ array(15, 18, ), - /* 104 */ array(17, 18, ), + /* 103 */ array(15, 18, 58, ), + /* 104 */ array(16, 22, 25, ), /* 105 */ array(15, 18, ), - /* 106 */ array(20, 57, ), + /* 106 */ array(15, 18, ), /* 107 */ array(15, 18, ), /* 108 */ array(15, 18, ), /* 109 */ array(15, 18, ), /* 110 */ array(15, 18, ), - /* 111 */ array(15, 18, ), + /* 111 */ array(17, 18, ), /* 112 */ array(15, 18, ), - /* 113 */ array(15, 18, ), - /* 114 */ array(17, 18, ), + /* 113 */ array(17, 18, ), + /* 114 */ array(15, 18, ), /* 115 */ array(15, 18, ), /* 116 */ array(15, 18, ), /* 117 */ array(15, 18, ), /* 118 */ array(15, 18, ), - /* 119 */ array(17, ), - /* 120 */ array(22, ), - /* 121 */ array(20, ), + /* 119 */ array(15, 18, ), + /* 120 */ array(20, 57, ), + /* 121 */ array(15, 18, ), /* 122 */ array(22, ), - /* 123 */ array(22, ), + /* 123 */ array(20, ), /* 124 */ array(22, ), - /* 125 */ array(20, ), - /* 126 */ array(15, 16, 18, 30, ), - /* 127 */ array(15, 16, 18, 30, ), - /* 128 */ array(15, 16, 18, ), - /* 129 */ array(15, 18, 58, ), - /* 130 */ array(15, 17, 18, ), - /* 131 */ array(15, 18, 19, ), - /* 132 */ array(15, 16, 18, ), - /* 133 */ array(55, 60, ), - /* 134 */ array(55, 60, ), - /* 135 */ array(55, 60, ), - /* 136 */ array(15, 49, ), + /* 125 */ array(22, ), + /* 126 */ array(17, ), + /* 127 */ array(20, ), + /* 128 */ array(22, ), + /* 129 */ array(15, 16, 18, 30, ), + /* 130 */ array(15, 16, 18, 30, ), + /* 131 */ array(15, 18, 58, ), + /* 132 */ array(15, 18, 19, ), + /* 133 */ array(15, 17, 18, ), + /* 134 */ array(15, 16, 18, ), + /* 135 */ array(15, 16, 18, ), + /* 136 */ array(16, 22, ), /* 137 */ array(16, 22, ), /* 138 */ array(16, 22, ), /* 139 */ array(16, 22, ), - /* 140 */ array(16, 22, ), - /* 141 */ array(16, 22, ), + /* 140 */ array(15, 49, ), + /* 141 */ array(55, 60, ), /* 142 */ array(16, 22, ), /* 143 */ array(16, 22, ), /* 144 */ array(16, 22, ), /* 145 */ array(16, 22, ), /* 146 */ array(16, 22, ), - /* 147 */ array(16, 22, ), + /* 147 */ array(55, 60, ), /* 148 */ array(16, 22, ), - /* 149 */ array(16, 22, ), - /* 150 */ array(55, 60, ), - /* 151 */ array(16, 22, ), + /* 149 */ array(55, 60, ), + /* 150 */ array(16, 22, ), + /* 151 */ array(55, 60, ), /* 152 */ array(16, 22, ), - /* 153 */ array(55, 60, ), - /* 154 */ array(16, 22, ), + /* 153 */ array(16, 22, ), + /* 154 */ array(55, 60, ), /* 155 */ array(16, 22, ), - /* 156 */ array(20, ), - /* 157 */ array(2, ), - /* 158 */ array(20, ), - /* 159 */ array(2, ), - /* 160 */ array(13, ), - /* 161 */ array(20, ), + /* 156 */ array(16, 22, ), + /* 157 */ array(16, 22, ), + /* 158 */ array(16, 22, ), + /* 159 */ array(1, ), + /* 160 */ array(20, ), + /* 161 */ array(22, ), /* 162 */ array(22, ), - /* 163 */ array(1, ), - /* 164 */ array(22, ), - /* 165 */ array(49, ), - /* 166 */ array(17, ), - /* 167 */ array(), - /* 168 */ array(), - /* 169 */ array(), + /* 163 */ array(17, ), + /* 164 */ array(20, ), + /* 165 */ array(2, ), + /* 166 */ array(20, ), + /* 167 */ array(13, ), + /* 168 */ array(49, ), + /* 169 */ array(2, ), /* 170 */ array(), /* 171 */ array(), - /* 172 */ array(16, 22, 49, 57, ), - /* 173 */ array(19, 29, 49, 57, ), - /* 174 */ array(15, 17, 18, 32, ), - /* 175 */ array(49, 55, 57, 61, ), - /* 176 */ array(16, 22, 48, ), - /* 177 */ array(30, 49, 57, ), - /* 178 */ array(16, 48, ), - /* 179 */ array(30, 48, ), - /* 180 */ array(33, 61, ), - /* 181 */ array(2, 19, ), - /* 182 */ array(18, 58, ), + /* 172 */ array(), + /* 173 */ array(), + /* 174 */ array(), + /* 175 */ array(16, 22, 48, 49, 57, ), + /* 176 */ array(16, 22, 49, 57, ), + /* 177 */ array(19, 29, 49, 57, ), + /* 178 */ array(15, 17, 18, 32, ), + /* 179 */ array(49, 55, 57, 61, ), + /* 180 */ array(16, 22, 48, ), + /* 181 */ array(30, 49, 57, ), + /* 182 */ array(30, 48, ), /* 183 */ array(24, 33, ), /* 184 */ array(49, 57, ), - /* 185 */ array(25, 75, ), - /* 186 */ array(49, 57, ), - /* 187 */ array(19, 55, ), - /* 188 */ array(18, 32, ), - /* 189 */ array(18, ), - /* 190 */ array(32, ), - /* 191 */ array(29, ), - /* 192 */ array(19, ), + /* 185 */ array(18, 58, ), + /* 186 */ array(16, 48, ), + /* 187 */ array(49, 57, ), + /* 188 */ array(2, 19, ), + /* 189 */ array(19, 55, ), + /* 190 */ array(33, 61, ), + /* 191 */ array(25, 75, ), + /* 192 */ array(18, 32, ), /* 193 */ array(49, ), - /* 194 */ array(48, ), - /* 195 */ array(22, ), - /* 196 */ array(2, ), - /* 197 */ array(18, ), - /* 198 */ array(55, ), + /* 194 */ array(29, ), + /* 195 */ array(16, ), + /* 196 */ array(18, ), + /* 197 */ array(50, ), + /* 198 */ array(17, ), /* 199 */ array(17, ), - /* 200 */ array(17, ), + /* 200 */ array(19, ), /* 201 */ array(16, ), - /* 202 */ array(17, ), - /* 203 */ array(29, ), - /* 204 */ array(18, ), - /* 205 */ array(51, ), - /* 206 */ array(17, ), - /* 207 */ array(49, ), - /* 208 */ array(22, ), - /* 209 */ array(17, ), - /* 210 */ array(25, ), - /* 211 */ array(32, ), - /* 212 */ array(16, ), - /* 213 */ array(16, ), - /* 214 */ array(59, ), - /* 215 */ array(50, ), - /* 216 */ array(18, ), - /* 217 */ array(18, ), + /* 202 */ array(26, ), + /* 203 */ array(50, ), + /* 204 */ array(61, ), + /* 205 */ array(19, ), + /* 206 */ array(2, ), + /* 207 */ array(32, ), + /* 208 */ array(51, ), + /* 209 */ array(18, ), + /* 210 */ array(50, ), + /* 211 */ array(18, ), + /* 212 */ array(59, ), + /* 213 */ array(59, ), + /* 214 */ array(22, ), + /* 215 */ array(22, ), + /* 216 */ array(2, ), + /* 217 */ array(25, ), /* 218 */ array(18, ), - /* 219 */ array(61, ), - /* 220 */ array(19, ), + /* 219 */ array(48, ), + /* 220 */ array(18, ), /* 221 */ array(18, ), - /* 222 */ array(18, ), - /* 223 */ array(59, ), - /* 224 */ array(18, ), - /* 225 */ array(26, ), - /* 226 */ array(50, ), - /* 227 */ array(50, ), - /* 228 */ array(), - /* 229 */ array(), - /* 230 */ array(), - /* 231 */ array(), - /* 232 */ array(), + /* 222 */ array(17, ), + /* 223 */ array(17, ), + /* 224 */ array(29, ), + /* 225 */ array(18, ), + /* 226 */ array(55, ), + /* 227 */ array(18, ), + /* 228 */ array(17, ), + /* 229 */ array(49, ), + /* 230 */ array(18, ), + /* 231 */ array(32, ), + /* 232 */ array(16, ), /* 233 */ array(), /* 234 */ array(), /* 235 */ array(), @@ -1058,50 +1079,56 @@ static public $yy_action = array( /* 366 */ array(), /* 367 */ array(), /* 368 */ array(), + /* 369 */ array(), + /* 370 */ array(), + /* 371 */ array(), + /* 372 */ array(), + /* 373 */ array(), ); static public $yy_default = array( - /* 0 */ 372, 545, 562, 516, 516, 516, 516, 562, 562, 562, - /* 10 */ 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, - /* 20 */ 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, - /* 30 */ 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, - /* 40 */ 562, 562, 562, 562, 562, 562, 562, 562, 562, 430, - /* 50 */ 562, 562, 430, 430, 562, 562, 562, 562, 562, 562, - /* 60 */ 515, 562, 562, 562, 562, 562, 562, 546, 451, 447, - /* 70 */ 450, 452, 436, 547, 548, 456, 455, 432, 459, 439, - /* 80 */ 463, 415, 460, 474, 430, 369, 562, 562, 562, 528, - /* 90 */ 446, 430, 430, 430, 562, 562, 489, 562, 440, 464, - /* 100 */ 482, 489, 464, 562, 562, 562, 482, 562, 489, 562, - /* 110 */ 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, - /* 120 */ 430, 482, 430, 430, 430, 525, 562, 562, 562, 490, - /* 130 */ 562, 562, 562, 508, 506, 509, 489, 562, 562, 562, - /* 140 */ 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, - /* 150 */ 507, 562, 562, 487, 562, 562, 529, 518, 503, 517, - /* 160 */ 387, 526, 561, 446, 561, 489, 562, 522, 522, 522, - /* 170 */ 489, 489, 474, 435, 562, 474, 440, 474, 440, 440, - /* 180 */ 562, 501, 562, 562, 474, 464, 461, 470, 562, 562, - /* 190 */ 562, 562, 435, 527, 440, 562, 501, 562, 470, 562, - /* 200 */ 562, 562, 562, 562, 562, 476, 562, 501, 562, 562, - /* 210 */ 464, 472, 562, 562, 562, 562, 562, 562, 562, 562, - /* 220 */ 562, 562, 562, 562, 562, 437, 562, 562, 555, 370, - /* 230 */ 553, 434, 438, 418, 417, 560, 442, 552, 559, 413, - /* 240 */ 558, 543, 498, 496, 476, 494, 511, 495, 497, 513, - /* 250 */ 485, 486, 514, 462, 512, 422, 423, 443, 416, 544, - /* 260 */ 510, 523, 524, 427, 502, 542, 445, 425, 424, 426, - /* 270 */ 429, 521, 501, 500, 414, 419, 420, 421, 468, 465, - /* 280 */ 483, 441, 488, 491, 499, 479, 473, 466, 467, 469, - /* 290 */ 471, 412, 428, 379, 378, 380, 381, 382, 377, 376, - /* 300 */ 371, 373, 374, 375, 383, 384, 393, 392, 394, 395, - /* 310 */ 396, 391, 390, 385, 386, 388, 389, 492, 493, 557, - /* 320 */ 399, 400, 401, 402, 398, 556, 481, 484, 505, 397, - /* 330 */ 403, 404, 410, 411, 549, 550, 551, 409, 408, 405, - /* 340 */ 406, 504, 407, 541, 540, 478, 477, 480, 453, 454, - /* 350 */ 449, 448, 444, 475, 519, 520, 457, 458, 536, 537, - /* 360 */ 538, 539, 535, 534, 530, 531, 532, 533, 554, + /* 0 */ 377, 551, 568, 522, 522, 568, 568, 568, 568, 568, + /* 10 */ 522, 522, 568, 568, 568, 568, 568, 568, 568, 568, + /* 20 */ 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, + /* 30 */ 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, + /* 40 */ 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, + /* 50 */ 568, 568, 435, 435, 435, 568, 568, 568, 568, 568, + /* 60 */ 568, 568, 568, 568, 568, 568, 521, 568, 444, 553, + /* 70 */ 452, 554, 455, 457, 464, 465, 437, 420, 461, 468, + /* 80 */ 456, 469, 441, 460, 552, 480, 435, 374, 568, 568, + /* 90 */ 534, 451, 568, 435, 435, 435, 568, 568, 568, 495, + /* 100 */ 488, 445, 470, 495, 470, 568, 568, 568, 568, 568, + /* 110 */ 568, 568, 568, 568, 568, 568, 568, 495, 568, 568, + /* 120 */ 488, 568, 435, 531, 435, 435, 568, 488, 435, 568, + /* 130 */ 568, 496, 568, 568, 568, 568, 568, 568, 568, 568, + /* 140 */ 495, 513, 568, 568, 568, 568, 568, 515, 568, 514, + /* 150 */ 568, 493, 568, 568, 512, 568, 568, 568, 568, 451, + /* 160 */ 532, 567, 567, 568, 509, 524, 535, 392, 495, 523, + /* 170 */ 495, 495, 528, 528, 528, 446, 480, 440, 568, 480, + /* 180 */ 445, 480, 445, 568, 480, 568, 445, 466, 507, 476, + /* 190 */ 568, 470, 568, 507, 568, 568, 568, 568, 568, 568, + /* 200 */ 568, 568, 442, 568, 568, 440, 507, 478, 482, 568, + /* 210 */ 568, 568, 568, 568, 568, 568, 507, 470, 568, 445, + /* 220 */ 568, 568, 568, 568, 568, 568, 476, 568, 568, 533, + /* 230 */ 568, 568, 568, 387, 454, 518, 449, 508, 529, 467, + /* 240 */ 530, 432, 516, 471, 517, 474, 483, 500, 501, 526, + /* 250 */ 434, 503, 492, 431, 525, 502, 453, 482, 491, 527, + /* 260 */ 504, 472, 481, 497, 380, 379, 423, 422, 475, 382, + /* 270 */ 381, 447, 418, 477, 376, 375, 439, 479, 485, 378, + /* 280 */ 473, 383, 494, 428, 489, 484, 427, 498, 505, 386, + /* 290 */ 385, 443, 384, 446, 566, 448, 421, 499, 520, 400, + /* 300 */ 541, 540, 542, 543, 544, 433, 401, 410, 539, 537, + /* 310 */ 412, 413, 399, 510, 538, 411, 545, 546, 406, 407, + /* 320 */ 408, 402, 562, 405, 404, 403, 419, 511, 487, 450, + /* 330 */ 547, 490, 417, 409, 424, 536, 398, 391, 550, 549, + /* 340 */ 548, 426, 458, 394, 393, 506, 507, 563, 519, 486, + /* 350 */ 389, 430, 429, 390, 395, 558, 415, 555, 556, 425, + /* 360 */ 462, 414, 463, 416, 557, 397, 561, 564, 565, 559, + /* 370 */ 459, 396, 560, 388, ); const YYNOCODE = 120; const YYSTACKDEPTH = 100; - const YYNSTATE = 369; - const YYNRULE = 193; + const YYNSTATE = 374; + const YYNRULE = 194; const YYERRORSYMBOL = 77; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; @@ -1258,105 +1285,106 @@ static public $yy_action = array( /* 91 */ "expr ::= expr ISNOTODDBY expr", /* 92 */ "expr ::= value INSTANCEOF ID", /* 93 */ "expr ::= value INSTANCEOF value", - /* 94 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 95 */ "value ::= variable", - /* 96 */ "value ::= UNIMATH value", - /* 97 */ "value ::= NOT value", - /* 98 */ "value ::= TYPECAST value", - /* 99 */ "value ::= variable INCDEC", - /* 100 */ "value ::= HEX", - /* 101 */ "value ::= INTEGER", - /* 102 */ "value ::= INTEGER DOT INTEGER", - /* 103 */ "value ::= INTEGER DOT", - /* 104 */ "value ::= DOT INTEGER", - /* 105 */ "value ::= ID", - /* 106 */ "value ::= function", - /* 107 */ "value ::= OPENP expr CLOSEP", - /* 108 */ "value ::= SINGLEQUOTESTRING", - /* 109 */ "value ::= doublequoted_with_quotes", - /* 110 */ "value ::= ID DOUBLECOLON static_class_access", - /* 111 */ "value ::= varindexed DOUBLECOLON static_class_access", - /* 112 */ "value ::= smartytag", - /* 113 */ "variable ::= varindexed", - /* 114 */ "variable ::= DOLLAR varvar AT ID", - /* 115 */ "variable ::= object", - /* 116 */ "variable ::= HATCH ID HATCH", - /* 117 */ "variable ::= HATCH variable HATCH", - /* 118 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 119 */ "arrayindex ::= arrayindex indexdef", - /* 120 */ "arrayindex ::=", - /* 121 */ "indexdef ::= DOT DOLLAR varvar", - /* 122 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 123 */ "indexdef ::= DOT ID", - /* 124 */ "indexdef ::= DOT INTEGER", - /* 125 */ "indexdef ::= DOT LDEL expr RDEL", - /* 126 */ "indexdef ::= OPENB ID CLOSEB", - /* 127 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 128 */ "indexdef ::= OPENB expr CLOSEB", - /* 129 */ "indexdef ::= OPENB CLOSEB", - /* 130 */ "varvar ::= varvarele", - /* 131 */ "varvar ::= varvar varvarele", - /* 132 */ "varvarele ::= ID", - /* 133 */ "varvarele ::= LDEL expr RDEL", - /* 134 */ "object ::= varindexed objectchain", - /* 135 */ "objectchain ::= objectelement", - /* 136 */ "objectchain ::= objectchain objectelement", - /* 137 */ "objectelement ::= PTR ID arrayindex", - /* 138 */ "objectelement ::= PTR DOLLAR varvar arrayindex", - /* 139 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 140 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 141 */ "objectelement ::= PTR method", - /* 142 */ "function ::= ID OPENP params CLOSEP", - /* 143 */ "method ::= ID OPENP params CLOSEP", - /* 144 */ "method ::= DOLLAR ID OPENP params CLOSEP", - /* 145 */ "params ::= expr COMMA params", - /* 146 */ "params ::= expr", - /* 147 */ "params ::=", - /* 148 */ "modifierlist ::= modifierlist modifier modparameters", - /* 149 */ "modifierlist ::= modifier modparameters", - /* 150 */ "modifier ::= VERT AT ID", - /* 151 */ "modifier ::= VERT ID", - /* 152 */ "modparameters ::= modparameters modparameter", - /* 153 */ "modparameters ::=", - /* 154 */ "modparameter ::= COLON value", - /* 155 */ "modparameter ::= COLON array", - /* 156 */ "static_class_access ::= method", - /* 157 */ "static_class_access ::= method objectchain", - /* 158 */ "static_class_access ::= ID", - /* 159 */ "static_class_access ::= DOLLAR ID arrayindex", - /* 160 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", - /* 161 */ "ifcond ::= EQUALS", - /* 162 */ "ifcond ::= NOTEQUALS", - /* 163 */ "ifcond ::= GREATERTHAN", - /* 164 */ "ifcond ::= LESSTHAN", - /* 165 */ "ifcond ::= GREATEREQUAL", - /* 166 */ "ifcond ::= LESSEQUAL", - /* 167 */ "ifcond ::= IDENTITY", - /* 168 */ "ifcond ::= NONEIDENTITY", - /* 169 */ "ifcond ::= MOD", - /* 170 */ "lop ::= LAND", - /* 171 */ "lop ::= LOR", - /* 172 */ "lop ::= LXOR", - /* 173 */ "array ::= OPENB arrayelements CLOSEB", - /* 174 */ "arrayelements ::= arrayelement", - /* 175 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 176 */ "arrayelements ::=", - /* 177 */ "arrayelement ::= value APTR expr", - /* 178 */ "arrayelement ::= ID APTR expr", - /* 179 */ "arrayelement ::= expr", - /* 180 */ "doublequoted_with_quotes ::= QUOTE QUOTE", - /* 181 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", - /* 182 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 183 */ "doublequoted ::= doublequotedcontent", - /* 184 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 185 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 186 */ "doublequotedcontent ::= DOLLARID", - /* 187 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 188 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 189 */ "doublequotedcontent ::= smartytag", - /* 190 */ "doublequotedcontent ::= OTHER", - /* 191 */ "optspace ::= SPACE", - /* 192 */ "optspace ::=", + /* 94 */ "ternary ::= OPENP expr CLOSEP QMARK DOLLAR ID COLON expr", + /* 95 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 96 */ "value ::= variable", + /* 97 */ "value ::= UNIMATH value", + /* 98 */ "value ::= NOT value", + /* 99 */ "value ::= TYPECAST value", + /* 100 */ "value ::= variable INCDEC", + /* 101 */ "value ::= HEX", + /* 102 */ "value ::= INTEGER", + /* 103 */ "value ::= INTEGER DOT INTEGER", + /* 104 */ "value ::= INTEGER DOT", + /* 105 */ "value ::= DOT INTEGER", + /* 106 */ "value ::= ID", + /* 107 */ "value ::= function", + /* 108 */ "value ::= OPENP expr CLOSEP", + /* 109 */ "value ::= SINGLEQUOTESTRING", + /* 110 */ "value ::= doublequoted_with_quotes", + /* 111 */ "value ::= ID DOUBLECOLON static_class_access", + /* 112 */ "value ::= varindexed DOUBLECOLON static_class_access", + /* 113 */ "value ::= smartytag", + /* 114 */ "variable ::= varindexed", + /* 115 */ "variable ::= DOLLAR varvar AT ID", + /* 116 */ "variable ::= object", + /* 117 */ "variable ::= HATCH ID HATCH", + /* 118 */ "variable ::= HATCH variable HATCH", + /* 119 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 120 */ "arrayindex ::= arrayindex indexdef", + /* 121 */ "arrayindex ::=", + /* 122 */ "indexdef ::= DOT DOLLAR varvar", + /* 123 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 124 */ "indexdef ::= DOT ID", + /* 125 */ "indexdef ::= DOT INTEGER", + /* 126 */ "indexdef ::= DOT LDEL expr RDEL", + /* 127 */ "indexdef ::= OPENB ID CLOSEB", + /* 128 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 129 */ "indexdef ::= OPENB expr CLOSEB", + /* 130 */ "indexdef ::= OPENB CLOSEB", + /* 131 */ "varvar ::= varvarele", + /* 132 */ "varvar ::= varvar varvarele", + /* 133 */ "varvarele ::= ID", + /* 134 */ "varvarele ::= LDEL expr RDEL", + /* 135 */ "object ::= varindexed objectchain", + /* 136 */ "objectchain ::= objectelement", + /* 137 */ "objectchain ::= objectchain objectelement", + /* 138 */ "objectelement ::= PTR ID arrayindex", + /* 139 */ "objectelement ::= PTR DOLLAR varvar arrayindex", + /* 140 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 141 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 142 */ "objectelement ::= PTR method", + /* 143 */ "function ::= ID OPENP params CLOSEP", + /* 144 */ "method ::= ID OPENP params CLOSEP", + /* 145 */ "method ::= DOLLAR ID OPENP params CLOSEP", + /* 146 */ "params ::= expr COMMA params", + /* 147 */ "params ::= expr", + /* 148 */ "params ::=", + /* 149 */ "modifierlist ::= modifierlist modifier modparameters", + /* 150 */ "modifierlist ::= modifier modparameters", + /* 151 */ "modifier ::= VERT AT ID", + /* 152 */ "modifier ::= VERT ID", + /* 153 */ "modparameters ::= modparameters modparameter", + /* 154 */ "modparameters ::=", + /* 155 */ "modparameter ::= COLON value", + /* 156 */ "modparameter ::= COLON array", + /* 157 */ "static_class_access ::= method", + /* 158 */ "static_class_access ::= method objectchain", + /* 159 */ "static_class_access ::= ID", + /* 160 */ "static_class_access ::= DOLLAR ID arrayindex", + /* 161 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", + /* 162 */ "ifcond ::= EQUALS", + /* 163 */ "ifcond ::= NOTEQUALS", + /* 164 */ "ifcond ::= GREATERTHAN", + /* 165 */ "ifcond ::= LESSTHAN", + /* 166 */ "ifcond ::= GREATEREQUAL", + /* 167 */ "ifcond ::= LESSEQUAL", + /* 168 */ "ifcond ::= IDENTITY", + /* 169 */ "ifcond ::= NONEIDENTITY", + /* 170 */ "ifcond ::= MOD", + /* 171 */ "lop ::= LAND", + /* 172 */ "lop ::= LOR", + /* 173 */ "lop ::= LXOR", + /* 174 */ "array ::= OPENB arrayelements CLOSEB", + /* 175 */ "arrayelements ::= arrayelement", + /* 176 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 177 */ "arrayelements ::=", + /* 178 */ "arrayelement ::= value APTR expr", + /* 179 */ "arrayelement ::= ID APTR expr", + /* 180 */ "arrayelement ::= expr", + /* 181 */ "doublequoted_with_quotes ::= QUOTE QUOTE", + /* 182 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", + /* 183 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 184 */ "doublequoted ::= doublequotedcontent", + /* 185 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 186 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", + /* 187 */ "doublequotedcontent ::= DOLLARID", + /* 188 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 189 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 190 */ "doublequotedcontent ::= smartytag", + /* 191 */ "doublequotedcontent ::= OTHER", + /* 192 */ "optspace ::= SPACE", + /* 193 */ "optspace ::=", ); function tokenName($tokenType) @@ -1616,7 +1644,7 @@ static public $yy_action = array( $this->internalError = true; $this->compiler->trigger_template_error("Stack overflow in template parser"); -#line 1615 "smarty_internal_templateparser.php" +#line 1643 "smarty_internal_templateparser.php" return; } $yytos = new TP_yyStackEntry; @@ -1731,6 +1759,7 @@ static public $yy_action = array( array( 'lhs' => 88, 'rhs' => 3 ), array( 'lhs' => 88, 'rhs' => 3 ), array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 8 ), array( 'lhs' => 90, 'rhs' => 7 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 2 ), @@ -1851,22 +1880,22 @@ static public $yy_action = array( 18 => 15, 16 => 16, 17 => 17, - 96 => 17, - 98 => 17, + 97 => 17, 99 => 17, - 157 => 17, + 100 => 17, + 158 => 17, 19 => 19, 20 => 19, 71 => 19, - 95 => 19, - 100 => 19, + 96 => 19, 101 => 19, - 106 => 19, - 108 => 19, + 102 => 19, + 107 => 19, 109 => 19, - 115 => 19, - 156 => 19, - 174 => 19, + 110 => 19, + 116 => 19, + 157 => 19, + 175 => 19, 21 => 21, 22 => 21, 23 => 23, @@ -1895,10 +1924,10 @@ static public $yy_action = array( 46 => 46, 47 => 47, 60 => 47, - 146 => 47, - 150 => 47, - 158 => 47, - 179 => 47, + 147 => 47, + 151 => 47, + 159 => 47, + 180 => 47, 48 => 48, 49 => 49, 50 => 50, @@ -1926,8 +1955,8 @@ static public $yy_action = array( 74 => 73, 75 => 73, 76 => 76, - 130 => 76, - 191 => 76, + 131 => 76, + 192 => 76, 77 => 77, 78 => 78, 81 => 78, @@ -1946,18 +1975,18 @@ static public $yy_action = array( 90 => 87, 93 => 93, 94 => 94, - 97 => 97, - 102 => 102, + 95 => 95, + 98 => 98, 103 => 103, 104 => 104, 105 => 105, - 107 => 107, - 110 => 110, + 106 => 106, + 108 => 108, 111 => 111, 112 => 112, 113 => 113, 114 => 114, - 116 => 116, + 115 => 115, 117 => 117, 118 => 118, 119 => 119, @@ -1967,11 +1996,11 @@ static public $yy_action = array( 123 => 123, 124 => 124, 125 => 125, - 128 => 125, 126 => 126, + 129 => 126, 127 => 127, - 129 => 129, - 131 => 131, + 128 => 128, + 130 => 130, 132 => 132, 133 => 133, 134 => 134, @@ -1986,16 +2015,16 @@ static public $yy_action = array( 143 => 143, 144 => 144, 145 => 145, - 147 => 147, + 146 => 146, 148 => 148, 149 => 149, - 151 => 151, + 150 => 150, 152 => 152, 153 => 153, - 192 => 153, 154 => 154, - 155 => 154, - 159 => 159, + 193 => 154, + 155 => 155, + 156 => 155, 160 => 160, 161 => 161, 162 => 162, @@ -2010,28 +2039,29 @@ static public $yy_action = array( 171 => 171, 172 => 172, 173 => 173, - 175 => 175, + 174 => 174, 176 => 176, 177 => 177, 178 => 178, - 180 => 180, + 179 => 179, 181 => 181, 182 => 182, 183 => 183, 184 => 184, - 185 => 184, - 187 => 184, - 186 => 186, - 188 => 188, + 185 => 185, + 186 => 185, + 188 => 185, + 187 => 187, 189 => 189, 190 => 190, + 191 => 191, ); #line 93 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->root_buffer->to_smarty_php(); } -#line 2027 "smarty_internal_templateparser.php" +#line 2057 "smarty_internal_templateparser.php" #line 99 "smarty_internal_templateparser.y" function yy_r1(){ $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); } -#line 2030 "smarty_internal_templateparser.php" +#line 2060 "smarty_internal_templateparser.php" #line 111 "smarty_internal_templateparser.y" function yy_r4(){ if ($this->compiler->has_code) { @@ -2043,13 +2073,13 @@ static public $yy_action = array( $this->compiler->has_variable_string = false; $this->block_nesting_level = count($this->compiler->_tag_stack); } -#line 2042 "smarty_internal_templateparser.php" +#line 2072 "smarty_internal_templateparser.php" #line 123 "smarty_internal_templateparser.y" function yy_r5(){ $this->_retvalue = new _smarty_tag($this, ''); } -#line 2045 "smarty_internal_templateparser.php" +#line 2075 "smarty_internal_templateparser.php" #line 126 "smarty_internal_templateparser.y" function yy_r6(){ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2048 "smarty_internal_templateparser.php" +#line 2078 "smarty_internal_templateparser.php" #line 129 "smarty_internal_templateparser.y" function yy_r7(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { @@ -2062,7 +2092,7 @@ static public $yy_action = array( $this->_retvalue = new _smarty_text($this, ''); } } -#line 2061 "smarty_internal_templateparser.php" +#line 2091 "smarty_internal_templateparser.php" #line 141 "smarty_internal_templateparser.y" function yy_r8(){if ($this->is_xml) { $this->compiler->tag_nocache = true; @@ -2078,7 +2108,7 @@ static public $yy_action = array( $this->_retvalue = new _smarty_text($this, ''); } } -#line 2077 "smarty_internal_templateparser.php" +#line 2107 "smarty_internal_templateparser.php" #line 157 "smarty_internal_templateparser.y" function yy_r9(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { @@ -2099,7 +2129,7 @@ static public $yy_action = array( } } } -#line 2098 "smarty_internal_templateparser.php" +#line 2128 "smarty_internal_templateparser.php" #line 178 "smarty_internal_templateparser.y" function yy_r10(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { @@ -2120,7 +2150,7 @@ static public $yy_action = array( } } } -#line 2119 "smarty_internal_templateparser.php" +#line 2149 "smarty_internal_templateparser.php" #line 198 "smarty_internal_templateparser.y" function yy_r11(){if ($this->lex->strip) { $this->_retvalue = new _smarty_text($this, 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))); @@ -2128,10 +2158,10 @@ static public $yy_action = array( $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } } -#line 2127 "smarty_internal_templateparser.php" +#line 2157 "smarty_internal_templateparser.php" #line 206 "smarty_internal_templateparser.y" function yy_r12(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("", $this->compiler, true)); } -#line 2130 "smarty_internal_templateparser.php" +#line 2160 "smarty_internal_templateparser.php" #line 209 "smarty_internal_templateparser.y" function yy_r13(){if ($this->lex->strip) { $this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor)); @@ -2139,131 +2169,131 @@ static public $yy_action = array( $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } } -#line 2138 "smarty_internal_templateparser.php" +#line 2168 "smarty_internal_templateparser.php" #line 215 "smarty_internal_templateparser.y" function yy_r14(){ $this->_retvalue = new _smarty_linebreak($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2143 "smarty_internal_templateparser.php" +#line 2173 "smarty_internal_templateparser.php" #line 220 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = ''; } -#line 2146 "smarty_internal_templateparser.php" +#line 2176 "smarty_internal_templateparser.php" #line 221 "smarty_internal_templateparser.y" function yy_r16(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2149 "smarty_internal_templateparser.php" +#line 2179 "smarty_internal_templateparser.php" #line 223 "smarty_internal_templateparser.y" function yy_r17(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2152 "smarty_internal_templateparser.php" +#line 2182 "smarty_internal_templateparser.php" #line 226 "smarty_internal_templateparser.y" function yy_r19(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2155 "smarty_internal_templateparser.php" +#line 2185 "smarty_internal_templateparser.php" #line 228 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2158 "smarty_internal_templateparser.php" +#line 2188 "smarty_internal_templateparser.php" #line 230 "smarty_internal_templateparser.y" function yy_r23(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2161 "smarty_internal_templateparser.php" +#line 2191 "smarty_internal_templateparser.php" #line 231 "smarty_internal_templateparser.y" function yy_r24(){ $this->_retvalue = '<%'; } -#line 2164 "smarty_internal_templateparser.php" +#line 2194 "smarty_internal_templateparser.php" #line 232 "smarty_internal_templateparser.y" function yy_r25(){ $this->_retvalue = '%>'; } -#line 2167 "smarty_internal_templateparser.php" +#line 2197 "smarty_internal_templateparser.php" #line 240 "smarty_internal_templateparser.y" function yy_r26(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2170 "smarty_internal_templateparser.php" +#line 2200 "smarty_internal_templateparser.php" #line 241 "smarty_internal_templateparser.y" function yy_r27(){ $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 2173 "smarty_internal_templateparser.php" +#line 2203 "smarty_internal_templateparser.php" #line 243 "smarty_internal_templateparser.y" function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -3]->minor,'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2176 "smarty_internal_templateparser.php" +#line 2206 "smarty_internal_templateparser.php" #line 253 "smarty_internal_templateparser.y" function yy_r32(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2179 "smarty_internal_templateparser.php" +#line 2209 "smarty_internal_templateparser.php" #line 255 "smarty_internal_templateparser.y" function yy_r34(){ $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 2182 "smarty_internal_templateparser.php" +#line 2212 "smarty_internal_templateparser.php" #line 257 "smarty_internal_templateparser.y" function yy_r36(){ $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 2185 "smarty_internal_templateparser.php" +#line 2215 "smarty_internal_templateparser.php" #line 260 "smarty_internal_templateparser.y" function yy_r38(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2188 "smarty_internal_templateparser.php" +#line 2218 "smarty_internal_templateparser.php" #line 261 "smarty_internal_templateparser.y" function yy_r39(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2191 "smarty_internal_templateparser.php" +#line 2221 "smarty_internal_templateparser.php" #line 263 "smarty_internal_templateparser.y" function yy_r40(){ $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 2194 "smarty_internal_templateparser.php" +#line 2224 "smarty_internal_templateparser.php" #line 265 "smarty_internal_templateparser.y" function yy_r41(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>'; } -#line 2199 "smarty_internal_templateparser.php" +#line 2229 "smarty_internal_templateparser.php" #line 269 "smarty_internal_templateparser.y" function yy_r42(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -3]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>'; } -#line 2204 "smarty_internal_templateparser.php" +#line 2234 "smarty_internal_templateparser.php" #line 273 "smarty_internal_templateparser.y" function yy_r43(){ $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 2207 "smarty_internal_templateparser.php" +#line 2237 "smarty_internal_templateparser.php" #line 276 "smarty_internal_templateparser.y" function yy_r45(){ $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 2211 "smarty_internal_templateparser.php" +#line 2241 "smarty_internal_templateparser.php" #line 279 "smarty_internal_templateparser.y" function yy_r46(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2214 "smarty_internal_templateparser.php" +#line 2244 "smarty_internal_templateparser.php" #line 280 "smarty_internal_templateparser.y" function yy_r47(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2217 "smarty_internal_templateparser.php" +#line 2247 "smarty_internal_templateparser.php" #line 281 "smarty_internal_templateparser.y" function yy_r48(){ $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 2220 "smarty_internal_templateparser.php" +#line 2250 "smarty_internal_templateparser.php" #line 282 "smarty_internal_templateparser.y" function yy_r49(){ $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 2223 "smarty_internal_templateparser.php" +#line 2253 "smarty_internal_templateparser.php" #line 284 "smarty_internal_templateparser.y" function yy_r50(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); } -#line 2226 "smarty_internal_templateparser.php" +#line 2256 "smarty_internal_templateparser.php" #line 286 "smarty_internal_templateparser.y" function yy_r51(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2230 "smarty_internal_templateparser.php" +#line 2260 "smarty_internal_templateparser.php" #line 288 "smarty_internal_templateparser.y" function yy_r52(){ $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 2234 "smarty_internal_templateparser.php" +#line 2264 "smarty_internal_templateparser.php" #line 290 "smarty_internal_templateparser.y" function yy_r53(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2238 "smarty_internal_templateparser.php" +#line 2268 "smarty_internal_templateparser.php" #line 292 "smarty_internal_templateparser.y" function yy_r54(){ $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 2242 "smarty_internal_templateparser.php" +#line 2272 "smarty_internal_templateparser.php" #line 296 "smarty_internal_templateparser.y" function yy_r55(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2245 "smarty_internal_templateparser.php" +#line 2275 "smarty_internal_templateparser.php" #line 297 "smarty_internal_templateparser.y" function yy_r56(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2248 "smarty_internal_templateparser.php" +#line 2278 "smarty_internal_templateparser.php" #line 298 "smarty_internal_templateparser.y" function yy_r57(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2253 "smarty_internal_templateparser.php" +#line 2283 "smarty_internal_templateparser.php" #line 302 "smarty_internal_templateparser.y" function yy_r58(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2256 "smarty_internal_templateparser.php" +#line 2286 "smarty_internal_templateparser.php" #line 308 "smarty_internal_templateparser.y" function yy_r59(){ $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 2259 "smarty_internal_templateparser.php" +#line 2289 "smarty_internal_templateparser.php" #line 312 "smarty_internal_templateparser.y" function yy_r61(){ $this->_retvalue = array(); } -#line 2262 "smarty_internal_templateparser.php" +#line 2292 "smarty_internal_templateparser.php" #line 315 "smarty_internal_templateparser.y" function yy_r62(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true'); @@ -2273,84 +2303,87 @@ 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 2272 "smarty_internal_templateparser.php" +#line 2302 "smarty_internal_templateparser.php" #line 323 "smarty_internal_templateparser.y" function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2275 "smarty_internal_templateparser.php" +#line 2305 "smarty_internal_templateparser.php" #line 326 "smarty_internal_templateparser.y" function yy_r66(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2278 "smarty_internal_templateparser.php" +#line 2308 "smarty_internal_templateparser.php" #line 327 "smarty_internal_templateparser.y" function yy_r67(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2281 "smarty_internal_templateparser.php" +#line 2311 "smarty_internal_templateparser.php" #line 333 "smarty_internal_templateparser.y" function yy_r68(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2284 "smarty_internal_templateparser.php" +#line 2314 "smarty_internal_templateparser.php" #line 334 "smarty_internal_templateparser.y" function yy_r69(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2287 "smarty_internal_templateparser.php" +#line 2317 "smarty_internal_templateparser.php" #line 336 "smarty_internal_templateparser.y" function yy_r70(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2290 "smarty_internal_templateparser.php" +#line 2320 "smarty_internal_templateparser.php" #line 345 "smarty_internal_templateparser.y" function yy_r72(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2293 "smarty_internal_templateparser.php" +#line 2323 "smarty_internal_templateparser.php" #line 347 "smarty_internal_templateparser.y" function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2296 "smarty_internal_templateparser.php" +#line 2326 "smarty_internal_templateparser.php" #line 353 "smarty_internal_templateparser.y" function yy_r76(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2299 "smarty_internal_templateparser.php" +#line 2329 "smarty_internal_templateparser.php" #line 357 "smarty_internal_templateparser.y" function yy_r77(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'modifierlist'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2302 "smarty_internal_templateparser.php" +#line 2332 "smarty_internal_templateparser.php" #line 362 "smarty_internal_templateparser.y" function yy_r78(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2305 "smarty_internal_templateparser.php" +#line 2335 "smarty_internal_templateparser.php" #line 363 "smarty_internal_templateparser.y" function yy_r79(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2308 "smarty_internal_templateparser.php" +#line 2338 "smarty_internal_templateparser.php" #line 364 "smarty_internal_templateparser.y" function yy_r80(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2311 "smarty_internal_templateparser.php" +#line 2341 "smarty_internal_templateparser.php" #line 366 "smarty_internal_templateparser.y" function yy_r82(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2314 "smarty_internal_templateparser.php" +#line 2344 "smarty_internal_templateparser.php" #line 367 "smarty_internal_templateparser.y" function yy_r83(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2317 "smarty_internal_templateparser.php" +#line 2347 "smarty_internal_templateparser.php" #line 368 "smarty_internal_templateparser.y" function yy_r84(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2320 "smarty_internal_templateparser.php" +#line 2350 "smarty_internal_templateparser.php" #line 369 "smarty_internal_templateparser.y" function yy_r85(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2323 "smarty_internal_templateparser.php" +#line 2353 "smarty_internal_templateparser.php" #line 370 "smarty_internal_templateparser.y" function yy_r86(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2326 "smarty_internal_templateparser.php" +#line 2356 "smarty_internal_templateparser.php" #line 371 "smarty_internal_templateparser.y" function yy_r87(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2329 "smarty_internal_templateparser.php" +#line 2359 "smarty_internal_templateparser.php" #line 377 "smarty_internal_templateparser.y" function yy_r93(){$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 2332 "smarty_internal_templateparser.php" +#line 2362 "smarty_internal_templateparser.php" #line 383 "smarty_internal_templateparser.y" - function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2335 "smarty_internal_templateparser.php" -#line 390 "smarty_internal_templateparser.y" - function yy_r97(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2338 "smarty_internal_templateparser.php" -#line 396 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2341 "smarty_internal_templateparser.php" + function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.' ? $_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'\')->value : '.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + -2]->minor', null, true, false)->nocache; } +#line 2365 "smarty_internal_templateparser.php" +#line 384 "smarty_internal_templateparser.y" + function yy_r95(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2368 "smarty_internal_templateparser.php" +#line 391 "smarty_internal_templateparser.y" + function yy_r98(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2371 "smarty_internal_templateparser.php" #line 397 "smarty_internal_templateparser.y" - function yy_r103(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; } -#line 2344 "smarty_internal_templateparser.php" + function yy_r103(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2374 "smarty_internal_templateparser.php" #line 398 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2347 "smarty_internal_templateparser.php" -#line 400 "smarty_internal_templateparser.y" - function yy_r105(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { + function yy_r104(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; } +#line 2377 "smarty_internal_templateparser.php" +#line 399 "smarty_internal_templateparser.y" + function yy_r105(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2380 "smarty_internal_templateparser.php" +#line 401 "smarty_internal_templateparser.y" + function yy_r106(){ 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'; @@ -2358,12 +2391,12 @@ static public $yy_action = array( $this->_retvalue = 'null'; } else $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } -#line 2357 "smarty_internal_templateparser.php" -#line 411 "smarty_internal_templateparser.y" - function yy_r107(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2360 "smarty_internal_templateparser.php" -#line 417 "smarty_internal_templateparser.y" - function yy_r110(){if ((!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) { +#line 2390 "smarty_internal_templateparser.php" +#line 412 "smarty_internal_templateparser.y" + function yy_r108(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2393 "smarty_internal_templateparser.php" +#line 418 "smarty_internal_templateparser.y" + function yy_r111(){if ((!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) { if (isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) { $this->_retvalue = $this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor].'::'.$this->yystack[$this->yyidx + 0]->minor; } else { @@ -2373,16 +2406,16 @@ static public $yy_action = array( $this->compiler->trigger_template_error ("static class '".$this->yystack[$this->yyidx + -2]->minor."' is undefined or not allowed by security setting"); } } -#line 2372 "smarty_internal_templateparser.php" -#line 427 "smarty_internal_templateparser.y" - function yy_r111(){ 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 { +#line 2405 "smarty_internal_templateparser.php" +#line 428 "smarty_internal_templateparser.y" + function yy_r112(){ 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 2376 "smarty_internal_templateparser.php" -#line 430 "smarty_internal_templateparser.y" - function yy_r112(){ $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 2379 "smarty_internal_templateparser.php" -#line 439 "smarty_internal_templateparser.y" - function yy_r113(){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']); +#line 2409 "smarty_internal_templateparser.php" +#line 431 "smarty_internal_templateparser.y" + function yy_r113(){ $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 2412 "smarty_internal_templateparser.php" +#line 440 "smarty_internal_templateparser.y" + function yy_r114(){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']; @@ -2390,219 +2423,219 @@ 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 2389 "smarty_internal_templateparser.php" -#line 448 "smarty_internal_templateparser.y" - function yy_r114(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { +#line 2422 "smarty_internal_templateparser.php" +#line 449 "smarty_internal_templateparser.y" + function yy_r115(){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 2397 "smarty_internal_templateparser.php" -#line 457 "smarty_internal_templateparser.y" - function yy_r116(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2400 "smarty_internal_templateparser.php" -#line 458 "smarty_internal_templateparser.y" - function yy_r117(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2403 "smarty_internal_templateparser.php" -#line 461 "smarty_internal_templateparser.y" - function yy_r118(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2406 "smarty_internal_templateparser.php" -#line 467 "smarty_internal_templateparser.y" - function yy_r119(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2409 "smarty_internal_templateparser.php" -#line 469 "smarty_internal_templateparser.y" - function yy_r120(){return; } -#line 2412 "smarty_internal_templateparser.php" -#line 473 "smarty_internal_templateparser.y" - function yy_r121(){ $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 2415 "smarty_internal_templateparser.php" -#line 474 "smarty_internal_templateparser.y" - function yy_r122(){ $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 2418 "smarty_internal_templateparser.php" -#line 475 "smarty_internal_templateparser.y" - function yy_r123(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2421 "smarty_internal_templateparser.php" -#line 476 "smarty_internal_templateparser.y" - function yy_r124(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2424 "smarty_internal_templateparser.php" -#line 477 "smarty_internal_templateparser.y" - function yy_r125(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2427 "smarty_internal_templateparser.php" -#line 479 "smarty_internal_templateparser.y" - function yy_r126(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } #line 2430 "smarty_internal_templateparser.php" -#line 480 "smarty_internal_templateparser.y" - function yy_r127(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 458 "smarty_internal_templateparser.y" + function yy_r117(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } #line 2433 "smarty_internal_templateparser.php" -#line 484 "smarty_internal_templateparser.y" - function yy_r129(){$this->_retvalue = '[]'; } +#line 459 "smarty_internal_templateparser.y" + function yy_r118(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } #line 2436 "smarty_internal_templateparser.php" -#line 492 "smarty_internal_templateparser.y" - function yy_r131(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 462 "smarty_internal_templateparser.y" + function yy_r119(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } #line 2439 "smarty_internal_templateparser.php" -#line 494 "smarty_internal_templateparser.y" - function yy_r132(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 468 "smarty_internal_templateparser.y" + function yy_r120(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2442 "smarty_internal_templateparser.php" -#line 496 "smarty_internal_templateparser.y" - function yy_r133(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 470 "smarty_internal_templateparser.y" + function yy_r121(){return; } #line 2445 "smarty_internal_templateparser.php" -#line 501 "smarty_internal_templateparser.y" - function yy_r134(){ 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 { +#line 474 "smarty_internal_templateparser.y" + function yy_r122(){ $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 2448 "smarty_internal_templateparser.php" +#line 475 "smarty_internal_templateparser.y" + function yy_r123(){ $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 2451 "smarty_internal_templateparser.php" +#line 476 "smarty_internal_templateparser.y" + function yy_r124(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2454 "smarty_internal_templateparser.php" +#line 477 "smarty_internal_templateparser.y" + function yy_r125(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2457 "smarty_internal_templateparser.php" +#line 478 "smarty_internal_templateparser.y" + function yy_r126(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2460 "smarty_internal_templateparser.php" +#line 480 "smarty_internal_templateparser.y" + function yy_r127(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2463 "smarty_internal_templateparser.php" +#line 481 "smarty_internal_templateparser.y" + function yy_r128(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2466 "smarty_internal_templateparser.php" +#line 485 "smarty_internal_templateparser.y" + function yy_r130(){$this->_retvalue = '[]'; } +#line 2469 "smarty_internal_templateparser.php" +#line 493 "smarty_internal_templateparser.y" + function yy_r132(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2472 "smarty_internal_templateparser.php" +#line 495 "smarty_internal_templateparser.y" + function yy_r133(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2475 "smarty_internal_templateparser.php" +#line 497 "smarty_internal_templateparser.y" + function yy_r134(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2478 "smarty_internal_templateparser.php" +#line 502 "smarty_internal_templateparser.y" + function yy_r135(){ 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 2449 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r135(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2452 "smarty_internal_templateparser.php" -#line 506 "smarty_internal_templateparser.y" - function yy_r136(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2455 "smarty_internal_templateparser.php" -#line 508 "smarty_internal_templateparser.y" - function yy_r137(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2458 "smarty_internal_templateparser.php" +#line 2482 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" + function yy_r136(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2485 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" + function yy_r137(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2488 "smarty_internal_templateparser.php" #line 509 "smarty_internal_templateparser.y" - function yy_r138(){ $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 2461 "smarty_internal_templateparser.php" + function yy_r138(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2491 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" - function yy_r139(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2464 "smarty_internal_templateparser.php" + function yy_r139(){ $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 2494 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r140(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2467 "smarty_internal_templateparser.php" -#line 513 "smarty_internal_templateparser.y" - function yy_r141(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2470 "smarty_internal_templateparser.php" -#line 519 "smarty_internal_templateparser.y" - function yy_r142(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r140(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2497 "smarty_internal_templateparser.php" +#line 512 "smarty_internal_templateparser.y" + function yy_r141(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2500 "smarty_internal_templateparser.php" +#line 514 "smarty_internal_templateparser.y" + function yy_r142(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2503 "smarty_internal_templateparser.php" +#line 520 "smarty_internal_templateparser.y" + function yy_r143(){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 2479 "smarty_internal_templateparser.php" -#line 530 "smarty_internal_templateparser.y" - function yy_r143(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2482 "smarty_internal_templateparser.php" -#line 531 "smarty_internal_templateparser.y" - function yy_r144(){ $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 2485 "smarty_internal_templateparser.php" -#line 535 "smarty_internal_templateparser.y" - function yy_r145(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2488 "smarty_internal_templateparser.php" -#line 539 "smarty_internal_templateparser.y" - function yy_r147(){ return; } -#line 2491 "smarty_internal_templateparser.php" -#line 544 "smarty_internal_templateparser.y" - function yy_r148(){$this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array($this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor)); } -#line 2494 "smarty_internal_templateparser.php" -#line 545 "smarty_internal_templateparser.y" - function yy_r149(){$this->_retvalue = array($this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor); } -#line 2497 "smarty_internal_templateparser.php" -#line 548 "smarty_internal_templateparser.y" - function yy_r151(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2500 "smarty_internal_templateparser.php" -#line 553 "smarty_internal_templateparser.y" - function yy_r152(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2503 "smarty_internal_templateparser.php" -#line 555 "smarty_internal_templateparser.y" - function yy_r153(){$this->_retvalue = ''; } -#line 2506 "smarty_internal_templateparser.php" -#line 557 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = ':'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2509 "smarty_internal_templateparser.php" -#line 567 "smarty_internal_templateparser.y" - function yy_r159(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2512 "smarty_internal_templateparser.php" -#line 569 "smarty_internal_templateparser.y" - function yy_r160(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 531 "smarty_internal_templateparser.y" + function yy_r144(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } #line 2515 "smarty_internal_templateparser.php" -#line 578 "smarty_internal_templateparser.y" - function yy_r161(){$this->_retvalue = '=='; } +#line 532 "smarty_internal_templateparser.y" + function yy_r145(){ $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 2518 "smarty_internal_templateparser.php" -#line 579 "smarty_internal_templateparser.y" - function yy_r162(){$this->_retvalue = '!='; } +#line 536 "smarty_internal_templateparser.y" + function yy_r146(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } #line 2521 "smarty_internal_templateparser.php" -#line 580 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '>'; } +#line 540 "smarty_internal_templateparser.y" + function yy_r148(){ return; } #line 2524 "smarty_internal_templateparser.php" -#line 581 "smarty_internal_templateparser.y" - function yy_r164(){$this->_retvalue = '<'; } +#line 545 "smarty_internal_templateparser.y" + function yy_r149(){$this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array($this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor)); } #line 2527 "smarty_internal_templateparser.php" -#line 582 "smarty_internal_templateparser.y" - function yy_r165(){$this->_retvalue = '>='; } +#line 546 "smarty_internal_templateparser.y" + function yy_r150(){$this->_retvalue = array($this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor); } #line 2530 "smarty_internal_templateparser.php" -#line 583 "smarty_internal_templateparser.y" - function yy_r166(){$this->_retvalue = '<='; } +#line 549 "smarty_internal_templateparser.y" + function yy_r152(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } #line 2533 "smarty_internal_templateparser.php" -#line 584 "smarty_internal_templateparser.y" - function yy_r167(){$this->_retvalue = '==='; } +#line 554 "smarty_internal_templateparser.y" + function yy_r153(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2536 "smarty_internal_templateparser.php" -#line 585 "smarty_internal_templateparser.y" - function yy_r168(){$this->_retvalue = '!=='; } +#line 556 "smarty_internal_templateparser.y" + function yy_r154(){$this->_retvalue = ''; } #line 2539 "smarty_internal_templateparser.php" -#line 586 "smarty_internal_templateparser.y" - function yy_r169(){$this->_retvalue = '%'; } +#line 558 "smarty_internal_templateparser.y" + function yy_r155(){$this->_retvalue = ':'.$this->yystack[$this->yyidx + 0]->minor; } #line 2542 "smarty_internal_templateparser.php" -#line 588 "smarty_internal_templateparser.y" - function yy_r170(){$this->_retvalue = '&&'; } +#line 568 "smarty_internal_templateparser.y" + function yy_r160(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2545 "smarty_internal_templateparser.php" -#line 589 "smarty_internal_templateparser.y" - function yy_r171(){$this->_retvalue = '||'; } +#line 570 "smarty_internal_templateparser.y" + function yy_r161(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2548 "smarty_internal_templateparser.php" -#line 590 "smarty_internal_templateparser.y" - function yy_r172(){$this->_retvalue = ' XOR '; } +#line 579 "smarty_internal_templateparser.y" + function yy_r162(){$this->_retvalue = '=='; } #line 2551 "smarty_internal_templateparser.php" -#line 595 "smarty_internal_templateparser.y" - function yy_r173(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 580 "smarty_internal_templateparser.y" + function yy_r163(){$this->_retvalue = '!='; } #line 2554 "smarty_internal_templateparser.php" -#line 597 "smarty_internal_templateparser.y" - function yy_r175(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 581 "smarty_internal_templateparser.y" + function yy_r164(){$this->_retvalue = '>'; } #line 2557 "smarty_internal_templateparser.php" -#line 598 "smarty_internal_templateparser.y" - function yy_r176(){ return; } +#line 582 "smarty_internal_templateparser.y" + function yy_r165(){$this->_retvalue = '<'; } #line 2560 "smarty_internal_templateparser.php" -#line 599 "smarty_internal_templateparser.y" - function yy_r177(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 583 "smarty_internal_templateparser.y" + function yy_r166(){$this->_retvalue = '>='; } #line 2563 "smarty_internal_templateparser.php" -#line 600 "smarty_internal_templateparser.y" - function yy_r178(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 584 "smarty_internal_templateparser.y" + function yy_r167(){$this->_retvalue = '<='; } #line 2566 "smarty_internal_templateparser.php" -#line 607 "smarty_internal_templateparser.y" - function yy_r180(){ $this->_retvalue = "''"; } +#line 585 "smarty_internal_templateparser.y" + function yy_r168(){$this->_retvalue = '==='; } #line 2569 "smarty_internal_templateparser.php" -#line 608 "smarty_internal_templateparser.y" - function yy_r181(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } +#line 586 "smarty_internal_templateparser.y" + function yy_r169(){$this->_retvalue = '!=='; } #line 2572 "smarty_internal_templateparser.php" -#line 610 "smarty_internal_templateparser.y" - function yy_r182(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 587 "smarty_internal_templateparser.y" + function yy_r170(){$this->_retvalue = '%'; } #line 2575 "smarty_internal_templateparser.php" -#line 611 "smarty_internal_templateparser.y" - function yy_r183(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 589 "smarty_internal_templateparser.y" + function yy_r171(){$this->_retvalue = '&&'; } #line 2578 "smarty_internal_templateparser.php" -#line 613 "smarty_internal_templateparser.y" - function yy_r184(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } +#line 590 "smarty_internal_templateparser.y" + function yy_r172(){$this->_retvalue = '||'; } #line 2581 "smarty_internal_templateparser.php" -#line 615 "smarty_internal_templateparser.y" - function yy_r186(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { +#line 591 "smarty_internal_templateparser.y" + function yy_r173(){$this->_retvalue = ' XOR '; } +#line 2584 "smarty_internal_templateparser.php" +#line 596 "smarty_internal_templateparser.y" + function yy_r174(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2587 "smarty_internal_templateparser.php" +#line 598 "smarty_internal_templateparser.y" + function yy_r176(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2590 "smarty_internal_templateparser.php" +#line 599 "smarty_internal_templateparser.y" + function yy_r177(){ return; } +#line 2593 "smarty_internal_templateparser.php" +#line 600 "smarty_internal_templateparser.y" + function yy_r178(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2596 "smarty_internal_templateparser.php" +#line 601 "smarty_internal_templateparser.y" + function yy_r179(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2599 "smarty_internal_templateparser.php" +#line 608 "smarty_internal_templateparser.y" + function yy_r181(){ $this->_retvalue = "''"; } +#line 2602 "smarty_internal_templateparser.php" +#line 609 "smarty_internal_templateparser.y" + function yy_r182(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } +#line 2605 "smarty_internal_templateparser.php" +#line 611 "smarty_internal_templateparser.y" + function yy_r183(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 2608 "smarty_internal_templateparser.php" +#line 612 "smarty_internal_templateparser.y" + function yy_r184(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2611 "smarty_internal_templateparser.php" +#line 614 "smarty_internal_templateparser.y" + function yy_r185(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } +#line 2614 "smarty_internal_templateparser.php" +#line 616 "smarty_internal_templateparser.y" + function yy_r187(){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 2590 "smarty_internal_templateparser.php" -#line 623 "smarty_internal_templateparser.y" - function yy_r188(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } -#line 2593 "smarty_internal_templateparser.php" +#line 2623 "smarty_internal_templateparser.php" #line 624 "smarty_internal_templateparser.y" - function yy_r189(){ + function yy_r189(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } +#line 2626 "smarty_internal_templateparser.php" +#line 625 "smarty_internal_templateparser.y" + function yy_r190(){ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2598 "smarty_internal_templateparser.php" -#line 627 "smarty_internal_templateparser.y" - function yy_r190(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2601 "smarty_internal_templateparser.php" +#line 2631 "smarty_internal_templateparser.php" +#line 628 "smarty_internal_templateparser.y" + function yy_r191(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2634 "smarty_internal_templateparser.php" private $_retvalue; @@ -2664,7 +2697,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2664 "smarty_internal_templateparser.php" +#line 2697 "smarty_internal_templateparser.php" } function yy_accept() @@ -2681,7 +2714,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2682 "smarty_internal_templateparser.php" +#line 2715 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)