mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-28 10:51:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			2591 lines
		
	
	
		
			136 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			2591 lines
		
	
	
		
			136 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
| * Smarty Internal Plugin Templateparser
 | |
| *
 | |
| * This is the template parser.
 | |
| * It is generated from the internal.templateparser.y file
 | |
| * @package Smarty
 | |
| * @subpackage Compiler
 | |
| * @author Uwe Tews
 | |
| */
 | |
| 
 | |
| class TP_yyToken implements ArrayAccess
 | |
| {
 | |
|     public $string = '';
 | |
|     public $metadata = array();
 | |
| 
 | |
|     function __construct($s, $m = array())
 | |
|     {
 | |
|         if ($s instanceof TP_yyToken) {
 | |
|             $this->string = $s->string;
 | |
|             $this->metadata = $s->metadata;
 | |
|         } else {
 | |
|             $this->string = (string) $s;
 | |
|             if ($m instanceof TP_yyToken) {
 | |
|                 $this->metadata = $m->metadata;
 | |
|             } elseif (is_array($m)) {
 | |
|                 $this->metadata = $m;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function __toString()
 | |
|     {
 | |
|         return $this->_string;
 | |
|     }
 | |
| 
 | |
|     function offsetExists($offset)
 | |
|     {
 | |
|         return isset($this->metadata[$offset]);
 | |
|     }
 | |
| 
 | |
|     function offsetGet($offset)
 | |
|     {
 | |
|         return $this->metadata[$offset];
 | |
|     }
 | |
| 
 | |
|     function offsetSet($offset, $value)
 | |
|     {
 | |
|         if ($offset === null) {
 | |
|             if (isset($value[0])) {
 | |
|                 $x = ($value instanceof TP_yyToken) ?
 | |
|                     $value->metadata : $value;
 | |
|                 $this->metadata = array_merge($this->metadata, $x);
 | |
|                 return;
 | |
|             }
 | |
|             $offset = count($this->metadata);
 | |
|         }
 | |
|         if ($value === null) {
 | |
|             return;
 | |
|         }
 | |
|         if ($value instanceof TP_yyToken) {
 | |
|             if ($value->metadata) {
 | |
|                 $this->metadata[$offset] = $value->metadata;
 | |
|             }
 | |
|         } elseif ($value) {
 | |
|             $this->metadata[$offset] = $value;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function offsetUnset($offset)
 | |
|     {
 | |
|         unset($this->metadata[$offset]);
 | |
|     }
 | |
| }
 | |
| 
 | |
| class TP_yyStackEntry
 | |
| {
 | |
|     public $stateno;       /* The state-number */
 | |
|     public $major;         /* The major token value.  This is the code
 | |
|                      ** number for the token at this stack level */
 | |
|     public $minor; /* The user-supplied minor token value.  This
 | |
|                      ** is the value of the token  */
 | |
| };
 | |
| 
 | |
| 
 | |
| #line 12 "smarty_internal_templateparser.y"
 | |
| class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php"
 | |
| {
 | |
| #line 14 "smarty_internal_templateparser.y"
 | |
| 
 | |
|     // states whether the parse was successful or not
 | |
|     public $successful = true;
 | |
|     public $retvalue = 0;
 | |
|     private $lex;
 | |
|     private $internalError = false;
 | |
| 
 | |
|     function __construct($lex, $compiler) {
 | |
|         // set instance object
 | |
|         self::instance($this); 
 | |
|         $this->lex = $lex;
 | |
|         $this->compiler = $compiler;
 | |
|         $this->smarty = $this->compiler->smarty;
 | |
|         $this->template = $this->compiler->template;
 | |
|         if ($this->template->security && isset($this->smarty->security_handler)) {
 | |
|               $this->sec_obj = $this->smarty->security_policy;
 | |
|         } else {
 | |
|               $this->sec_obj = $this->smarty;
 | |
|         }
 | |
|         $this->compiler->has_variable_string = false;
 | |
| 				$this->compiler->prefix_code = array();
 | |
| 				$this->prefix_number = 0;
 | |
| 				$this->block_nesting_level = 0;
 | |
| 				$this->is_xml = false;
 | |
|     }
 | |
|     public static function &instance($new_instance = null)
 | |
|     {
 | |
|         static $instance = null;
 | |
|         if (isset($new_instance) && is_object($new_instance))
 | |
|             $instance = $new_instance;
 | |
|         return $instance;
 | |
|     }
 | |
| 
 | |
|     public static function escape_start_tag($tag_text) {
 | |
|        $tag = preg_replace('/\A<\?(.*)\z/', '<<?php ?>?\1', $tag_text, -1 , $count); //Escape tag
 | |
|        assert($tag !== false && $count === 1);
 | |
|        return $tag;
 | |
|     }
 | |
| 
 | |
|     public static function escape_end_tag($tag_text) {
 | |
|        assert($tag_text === '?>');
 | |
|        return '?<?php ?>>';
 | |
|     }
 | |
| 
 | |
|     
 | |
| #line 128 "smarty_internal_templateparser.php"
 | |
| 
 | |
|     const TP_VERT                           =  1;
 | |
|     const TP_COLON                          =  2;
 | |
|     const TP_COMMENT                        =  3;
 | |
|     const TP_PHPSTARTTAG                    =  4;
 | |
|     const TP_PHPENDTAG                      =  5;
 | |
|     const TP_FAKEPHPSTARTTAG                =  6;
 | |
|     const TP_XMLTAG                         =  7;
 | |
|     const TP_OTHER                          =  8;
 | |
|     const TP_LITERALSTART                   =  9;
 | |
|     const TP_LITERALEND                     = 10;
 | |
|     const TP_LITERAL                        = 11;
 | |
|     const TP_LDEL                           = 12;
 | |
|     const TP_RDEL                           = 13;
 | |
|     const TP_DOLLAR                         = 14;
 | |
|     const TP_ID                             = 15;
 | |
|     const TP_EQUAL                          = 16;
 | |
|     const TP_FOREACH                        = 17;
 | |
|     const TP_PTR                            = 18;
 | |
|     const TP_IF                             = 19;
 | |
|     const TP_SPACE                          = 20;
 | |
|     const TP_FOR                            = 21;
 | |
|     const TP_SEMICOLON                      = 22;
 | |
|     const TP_INCDEC                         = 23;
 | |
|     const TP_TO                             = 24;
 | |
|     const TP_STEP                           = 25;
 | |
|     const TP_AS                             = 26;
 | |
|     const TP_APTR                           = 27;
 | |
|     const TP_LDELSLASH                      = 28;
 | |
|     const TP_INTEGER                        = 29;
 | |
|     const TP_COMMA                          = 30;
 | |
|     const TP_MATH                           = 31;
 | |
|     const TP_UNIMATH                        = 32;
 | |
|     const TP_ANDSYM                         = 33;
 | |
|     const TP_ISIN                           = 34;
 | |
|     const TP_ISDIVBY                        = 35;
 | |
|     const TP_ISNOTDIVBY                     = 36;
 | |
|     const TP_ISEVEN                         = 37;
 | |
|     const TP_ISNOTEVEN                      = 38;
 | |
|     const TP_ISEVENBY                       = 39;
 | |
|     const TP_ISNOTEVENBY                    = 40;
 | |
|     const TP_ISODD                          = 41;
 | |
|     const TP_ISNOTODD                       = 42;
 | |
|     const TP_ISODDBY                        = 43;
 | |
|     const TP_ISNOTODDBY                     = 44;
 | |
|     const TP_INSTANCEOF                     = 45;
 | |
|     const TP_OPENP                          = 46;
 | |
|     const TP_CLOSEP                         = 47;
 | |
|     const TP_QMARK                          = 48;
 | |
|     const TP_NOT                            = 49;
 | |
|     const TP_TYPECAST                       = 50;
 | |
|     const TP_DOT                            = 51;
 | |
|     const TP_BOOLEAN                        = 52;
 | |
|     const TP_NULL                           = 53;
 | |
|     const TP_SINGLEQUOTESTRING              = 54;
 | |
|     const TP_DOUBLECOLON                    = 55;
 | |
|     const TP_AT                             = 56;
 | |
|     const TP_HATCH                          = 57;
 | |
|     const TP_OPENB                          = 58;
 | |
|     const TP_CLOSEB                         = 59;
 | |
|     const TP_EQUALS                         = 60;
 | |
|     const TP_NOTEQUALS                      = 61;
 | |
|     const TP_GREATERTHAN                    = 62;
 | |
|     const TP_LESSTHAN                       = 63;
 | |
|     const TP_GREATEREQUAL                   = 64;
 | |
|     const TP_LESSEQUAL                      = 65;
 | |
|     const TP_IDENTITY                       = 66;
 | |
|     const TP_NONEIDENTITY                   = 67;
 | |
|     const TP_MOD                            = 68;
 | |
|     const TP_LAND                           = 69;
 | |
|     const TP_LOR                            = 70;
 | |
|     const TP_LXOR                           = 71;
 | |
|     const TP_QUOTE                          = 72;
 | |
|     const TP_BACKTICK                       = 73;
 | |
|     const TP_DOLLARID                       = 74;
 | |
|     const YY_NO_ACTION = 557;
 | |
|     const YY_ACCEPT_ACTION = 556;
 | |
|     const YY_ERROR_ACTION = 555;
 | |
| 
 | |
|     const YY_SZ_ACTTAB = 1756;
 | |
| static public $yy_action = array(
 | |
|  /*     0 */   182,  282,  141,   30,  331,  188,  285,  201,   52,  121,
 | |
|  /*    10 */   105,  275,  321,  161,  327,  310,  312,  311,  322,  181,
 | |
|  /*    20 */   152,  294,  309,  264,  283,   30,  279,  190,  285,   29,
 | |
|  /*    30 */    41,   43,   48,   39,   25,   23,  341,  343,   24,   27,
 | |
|  /*    40 */   344,  345,   15,   17,  556,   84,  260,  298,  300,   30,
 | |
|  /*    50 */   216,  192,  285,   29,   34,   46,  107,  143,   54,  360,
 | |
|  /*    60 */   361,  362,  363,  359,  358,  354,  355,  356,  357,  340,
 | |
|  /*    70 */   339,  182,  282,  181,   30,  328,  102,  285,  101,   49,
 | |
|  /*    80 */   119,   98,   87,  316,  237,  182,  242,    6,  240,  322,
 | |
|  /*    90 */   181,  169,  220,  217,  264,  283,  111,  279,   13,   88,
 | |
|  /*   100 */   313,   41,   43,   48,   39,   25,   23,  341,  343,   24,
 | |
|  /*   110 */    27,  344,  345,   15,   17,   41,   43,   48,   39,   25,
 | |
|  /*   120 */    23,  341,  343,   24,   27,  344,  345,   15,   17,  137,
 | |
|  /*   130 */   360,  361,  362,  363,  359,  358,  354,  355,  356,  357,
 | |
|  /*   140 */   340,  339,  182,  261,  360,  361,  362,  363,  359,  358,
 | |
|  /*   150 */   354,  355,  356,  357,  340,  339,  182,  107,  219,   30,
 | |
|  /*   160 */   169,  181,  285,   32,  334,  157,   31,   13,  165,  246,
 | |
|  /*   170 */   248,  181,   41,   43,   48,   39,   25,   23,  341,  343,
 | |
|  /*   180 */    24,   27,  344,  345,   15,   17,   41,   43,   48,   39,
 | |
|  /*   190 */    25,   23,  341,  343,   24,   27,  344,  345,   15,   17,
 | |
|  /*   200 */    88,  360,  361,  362,  363,  359,  358,  354,  355,  356,
 | |
|  /*   210 */   357,  340,  339,  182,   37,  360,  361,  362,  363,  359,
 | |
|  /*   220 */   358,  354,  355,  356,  357,  340,  339,  182,  350,  318,
 | |
|  /*   230 */   423,   42,  181,    6,  333,  181,  181,  181,  271,  251,
 | |
|  /*   240 */   271,  181,  111,   41,   43,   48,   39,   25,   23,  341,
 | |
|  /*   250 */   343,   24,   27,  344,  345,   15,   17,   41,   43,   48,
 | |
|  /*   260 */    39,   25,   23,  341,  343,   24,   27,  344,  345,   15,
 | |
|  /*   270 */    17,  182,  360,  361,  362,  363,  359,  358,  354,  355,
 | |
|  /*   280 */   356,  357,  340,  339,  131,  138,  360,  361,  362,  363,
 | |
|  /*   290 */   359,  358,  354,  355,  356,  357,  340,  339,  289,  289,
 | |
|  /*   300 */     4,   41,   43,   48,   39,   25,   23,  341,  343,   24,
 | |
|  /*   310 */    27,  344,  345,   15,   17,  182,  297,  298,  300,  299,
 | |
|  /*   320 */   296,  295,  291,  290,  292,  152,  276,  258,    3,  182,
 | |
|  /*   330 */   360,  361,  362,  363,  359,  358,  354,  355,  356,  357,
 | |
|  /*   340 */   340,  339,  155,  327,  125,   41,   43,   48,   39,   25,
 | |
|  /*   350 */    23,  341,  343,   24,   27,  344,  345,   15,   17,   41,
 | |
|  /*   360 */    43,   48,   39,   25,   23,  341,  343,   24,   27,  344,
 | |
|  /*   370 */   345,   15,   17,  244,  360,  361,  362,  363,  359,  358,
 | |
|  /*   380 */   354,  355,  356,  357,  340,  339,  182,   19,  360,  361,
 | |
|  /*   390 */   362,  363,  359,  358,  354,  355,  356,  357,  340,  339,
 | |
|  /*   400 */   182,  226,  114,  154,  167,   42,  319,  159,  270,   95,
 | |
|  /*   410 */   259,  153,  168,  181,   16,   21,   41,   43,   48,   39,
 | |
|  /*   420 */    25,   23,  341,  343,   24,   27,  344,  345,   15,   17,
 | |
|  /*   430 */    41,   43,   48,   39,   25,   23,  341,  343,   24,   27,
 | |
|  /*   440 */   344,  345,   15,   17,   12,  360,  361,  362,  363,  359,
 | |
|  /*   450 */   358,  354,  355,  356,  357,  340,  339,  182,   26,  360,
 | |
|  /*   460 */   361,  362,  363,  359,  358,  354,  355,  356,  357,  340,
 | |
|  /*   470 */   339,  182,  349,  323,  315,  305,   11,  317,  306,  181,
 | |
|  /*   480 */   271,  181,  181,  332,  181,  181,  268,   41,   43,   48,
 | |
|  /*   490 */    39,   25,   23,  341,  343,   24,   27,  344,  345,   15,
 | |
|  /*   500 */    17,   41,   43,   48,   39,   25,   23,  341,  343,   24,
 | |
|  /*   510 */    27,  344,  345,   15,   17,  182,  360,  361,  362,  363,
 | |
|  /*   520 */   359,  358,  354,  355,  356,  357,  340,  339,  200,  281,
 | |
|  /*   530 */   360,  361,  362,  363,  359,  358,  354,  355,  356,  357,
 | |
|  /*   540 */   340,  339,    8,  156,  327,   41,   43,   48,   39,   25,
 | |
|  /*   550 */    23,  341,  343,   24,   27,  344,  345,   15,   17,  182,
 | |
|  /*   560 */    30,  231,   30,  285,  271,  285,  337,  182,   10,  218,
 | |
|  /*   570 */    54,  236,  105,  181,  360,  361,  362,  363,  359,  358,
 | |
|  /*   580 */   354,  355,  356,  357,  340,  339,  181,  160,  279,   41,
 | |
|  /*   590 */    43,   48,   39,   25,   23,  341,  343,   24,   27,  344,
 | |
|  /*   600 */   345,   15,   17,  182,  194,  351,  217,  223,    6,  158,
 | |
|  /*   610 */   327,  353,  181,   36,  233,  106,  250,  111,  360,  361,
 | |
|  /*   620 */   362,  363,  359,  358,  354,  355,  356,  357,  340,  339,
 | |
|  /*   630 */   235,  199,  176,   41,   43,   48,   39,   25,   23,  341,
 | |
|  /*   640 */   343,   24,   27,  344,  345,   15,   17,  182,  263,  224,
 | |
|  /*   650 */   338,  307,  222,  257,  247,  181,  112,  181,  181,   33,
 | |
|  /*   660 */   214,  320,  360,  361,  362,  363,  359,  358,  354,  355,
 | |
|  /*   670 */   356,  357,  340,  339,  206,  215,  280,   41,   43,   48,
 | |
|  /*   680 */    39,   25,   23,  341,  343,   24,   27,  344,  345,   15,
 | |
|  /*   690 */    17,  426,  424,   42,  191,  308,    9,   30,  426,  424,
 | |
|  /*   700 */   285,   30,  181,    9,  195,  221,  360,  361,  362,  363,
 | |
|  /*   710 */   359,  358,  354,  355,  356,  357,  340,  339,  244,    3,
 | |
|  /*   720 */   181,  103,   85,   42,  116,    6,  204,   42,  205,    3,
 | |
|  /*   730 */   123,  115,  171,    6,  111,  125,  197,   30,  330,   47,
 | |
|  /*   740 */   285,  124,  111,  277,  145,  125,  197,   30,  329,   47,
 | |
|  /*   750 */   285,   18,  209,   14,  277,  228,   44,   45,  289,  269,
 | |
|  /*   760 */   265,  287,  211,   22,   88,    1,   44,   45,  130,  269,
 | |
|  /*   770 */   265,  287,  146,  167,   88,    1,  254,  162,    3,   86,
 | |
|  /*   780 */   115,  180,  289,   16,   21,   11,  289,  126,    3,   86,
 | |
|  /*   790 */   115,  170,  132,  147,  125,  197,  149,  163,   47,  133,
 | |
|  /*   800 */   277,  164,  335,   20,  125,  197,  289,  289,   47,  181,
 | |
|  /*   810 */   289,   30,   22,  289,  178,   44,   45,  135,  269,  265,
 | |
|  /*   820 */   287,  288,   14,   88,    1,   44,   45,  288,  269,  265,
 | |
|  /*   830 */   287,  289,   54,   88,    1,  243,  245,    3,   86,  115,
 | |
|  /*   840 */   180,  136,  181,  284,  150,  288,  140,    3,   86,  109,
 | |
|  /*   850 */   180,  167,  266,  125,  197,   96,  326,   47,  289,  120,
 | |
|  /*   860 */   289,   16,   21,  125,  197,  314,  139,   47,  277,  223,
 | |
|  /*   870 */   302,   14,  301,   99,   44,   45,  118,  269,  265,  287,
 | |
|  /*   880 */   289,   22,   88,    1,   44,   45,  277,  269,  265,  287,
 | |
|  /*   890 */   129,  127,   88,    1,  352,  113,    3,   86,  107,  174,
 | |
|  /*   900 */   144,   97,  128,  277,  277,  148,    3,   86,  115,  172,
 | |
|  /*   910 */   167,  134,  125,  177,  277,  277,   47,  234,  252,  289,
 | |
|  /*   920 */    16,   21,  125,  197,   35,  289,   47,  225,  108,  191,
 | |
|  /*   930 */    22,  227,    7,   44,   45,  110,  269,  265,  287,  284,
 | |
|  /*   940 */    22,   88,    1,   44,   45,  151,  269,  265,  287,   90,
 | |
|  /*   950 */   167,   88,    1,  203,  200,    3,   86,  107,  186,  289,
 | |
|  /*   960 */    16,   21,  364,   33,  117,    3,   86,  107,  183,  267,
 | |
|  /*   970 */   142,  125,  197,  275,  256,   47,  104,  229,    2,  262,
 | |
|  /*   980 */   303,  125,  197,   94,  293,   47,   54,  284,  202,   22,
 | |
|  /*   990 */    40,   28,   44,   45,  125,  269,  265,  287,  278,   22,
 | |
|  /*  1000 */    88,    1,   44,   45,   89,  269,  265,  287,  196,   93,
 | |
|  /*  1010 */    88,    5,   92,   91,    3,   86,  107,  186,   46,  288,
 | |
|  /*  1020 */   282,  309,  309,  309,  102,   86,  100,   53,  119,   98,
 | |
|  /*  1030 */   125,  197,  309,  309,   47,  309,  309,  322,  241,   38,
 | |
|  /*  1040 */   232,  309,  264,  283,    3,  279,  107,  185,   22,  309,
 | |
|  /*  1050 */   182,   44,   45,  309,  269,  265,  287,  309,  309,   88,
 | |
|  /*  1060 */   125,  197,  304,  309,   47,  309,  309,  208,  166,  181,
 | |
|  /*  1070 */   309,  105,  309,  309,   86,  309,  309,  309,   22,  309,
 | |
|  /*  1080 */   309,   44,   45,  309,  269,  265,  287,  279,  309,   88,
 | |
|  /*  1090 */   282,  309,  309,  249,  179,  309,  201,   72,  309,  105,
 | |
|  /*  1100 */   309,  309,  309,  309,   86,  309,  309,  322,  309,  309,
 | |
|  /*  1110 */   282,  309,  264,  283,  188,  279,  201,   55,  309,  105,
 | |
|  /*  1120 */   309,  309,  282,  309,  187,  325,  173,  322,  201,   78,
 | |
|  /*  1130 */   238,  105,  264,  283,  282,  279,  309,  309,  179,  322,
 | |
|  /*  1140 */   201,   72,  189,  105,  264,  283,  309,  279,  309,  309,
 | |
|  /*  1150 */   309,  322,  309,  309,  282,  309,  264,  283,  188,  279,
 | |
|  /*  1160 */   201,   55,  309,  105,  309,  309,  282,  309,  309,  324,
 | |
|  /*  1170 */   188,  322,  201,   55,  309,  105,  264,  283,  309,  279,
 | |
|  /*  1180 */   309,  309,  309,  322,  309,  309,  212,  309,  264,  283,
 | |
|  /*  1190 */   282,  279,  309,  309,  188,  309,  201,   55,  198,  105,
 | |
|  /*  1200 */   309,  309,  282,  309,  309,  309,  175,  322,  201,   51,
 | |
|  /*  1210 */   122,  105,  264,  283,  282,  279,  309,  309,  188,  322,
 | |
|  /*  1220 */   201,   64,  253,  105,  264,  283,  207,  279,  309,  309,
 | |
|  /*  1230 */   309,  322,  309,  309,  282,  309,  264,  283,  188,  279,
 | |
|  /*  1240 */   201,   58,  309,  105,  309,  309,  282,  309,  309,  309,
 | |
|  /*  1250 */   188,  322,  201,   60,  309,  105,  264,  283,  309,  279,
 | |
|  /*  1260 */   309,  309,  309,  322,  309,  309,  282,  309,  264,  283,
 | |
|  /*  1270 */   188,  279,  201,   67,  309,  105,  309,  309,  282,  309,
 | |
|  /*  1280 */   309,  309,  188,  322,  201,   73,  309,  105,  264,  283,
 | |
|  /*  1290 */   282,  279,  309,  309,  188,  322,  201,   80,  309,  105,
 | |
|  /*  1300 */   264,  283,  282,  279,  309,  309,  188,  322,  201,   57,
 | |
|  /*  1310 */   309,  105,  264,  283,  282,  279,  309,  309,  188,  322,
 | |
|  /*  1320 */   201,   71,  309,  105,  264,  283,  282,  279,  309,  309,
 | |
|  /*  1330 */   188,  322,  201,   70,  309,  105,  264,  283,  309,  279,
 | |
|  /*  1340 */   309,  309,  309,  322,  309,  309,  282,  309,  264,  283,
 | |
|  /*  1350 */   188,  279,  201,   74,  309,  105,  309,  309,  282,  309,
 | |
|  /*  1360 */   309,  309,  188,  322,  201,   81,  309,  105,  264,  283,
 | |
|  /*  1370 */   282,  279,  309,  309,  188,  322,  201,   62,  309,  105,
 | |
|  /*  1380 */   264,  283,  282,  279,  309,  309,  188,  322,  184,   66,
 | |
|  /*  1390 */   309,  105,  264,  283,  282,  279,  309,  309,  188,  322,
 | |
|  /*  1400 */   201,   61,  309,  105,  264,  283,  282,  279,  309,  309,
 | |
|  /*  1410 */   188,  322,  201,   63,  309,  105,  264,  283,  309,  279,
 | |
|  /*  1420 */   309,  309,  309,  322,  309,  309,  282,  309,  264,  283,
 | |
|  /*  1430 */   188,  279,  201,   82,  309,  105,  309,  309,  282,  309,
 | |
|  /*  1440 */   309,  309,  188,  322,  201,   77,  309,  105,  264,  283,
 | |
|  /*  1450 */   282,  279,  309,  309,  188,  322,  201,   75,  309,  105,
 | |
|  /*  1460 */   264,  283,  282,  279,  309,  309,  188,  322,  201,   56,
 | |
|  /*  1470 */   309,  105,  264,  283,  282,  279,  309,  309,  188,  322,
 | |
|  /*  1480 */   201,   79,  309,  105,  264,  283,  282,  279,  309,  309,
 | |
|  /*  1490 */   188,  322,  201,   65,  309,  105,  264,  283,  309,  279,
 | |
|  /*  1500 */   309,  309,  309,  322,  309,  309,  282,  309,  264,  283,
 | |
|  /*  1510 */   188,  279,  201,   50,  309,  105,  309,  309,  282,  309,
 | |
|  /*  1520 */   309,  309,  188,  322,  201,   83,  309,  105,  264,  283,
 | |
|  /*  1530 */   282,  279,  309,  309,  188,  322,  201,   59,  309,  105,
 | |
|  /*  1540 */   264,  283,  282,  279,  309,  309,  188,  322,  201,   69,
 | |
|  /*  1550 */   309,  105,  264,  283,  282,  279,  309,  309,  188,  322,
 | |
|  /*  1560 */   201,   68,  309,  105,  264,  283,  282,  279,  182,  309,
 | |
|  /*  1570 */   188,  322,  201,   76,  309,  105,  264,  283,  309,  279,
 | |
|  /*  1580 */   336,  309,  309,  322,  309,  210,  282,  181,  264,  283,
 | |
|  /*  1590 */   193,  279,  201,  282,  309,  105,  309,  342,  309,  201,
 | |
|  /*  1600 */   309,  309,  105,  213,  309,  309,  309,  309,  264,  283,
 | |
|  /*  1610 */   346,  279,  309,    6,  309,  264,  283,  282,  279,  309,
 | |
|  /*  1620 */   309,  272,  111,  201,  309,  309,  105,  282,  309,  309,
 | |
|  /*  1630 */   309,  348,  309,  201,  309,  309,  105,  309,  309,  264,
 | |
|  /*  1640 */   283,  309,  279,  309,  309,  309,  309,  282,  309,  264,
 | |
|  /*  1650 */   283,  273,  279,  201,  309,  282,  105,  309,  309,  274,
 | |
|  /*  1660 */   309,  201,  309,  309,  105,  309,  309,  309,  309,  264,
 | |
|  /*  1670 */   283,  309,  279,  309,  309,  282,  309,  264,  283,  347,
 | |
|  /*  1680 */   279,  201,  282,  309,  105,  309,  255,  309,  201,  256,
 | |
|  /*  1690 */   282,  105,  309,    2,  230,  309,  201,  264,  283,  105,
 | |
|  /*  1700 */   279,  309,  309,  309,  264,  283,  309,  279,  309,  125,
 | |
|  /*  1710 */   309,  309,  264,  283,  309,  279,  282,  309,  309,  309,
 | |
|  /*  1720 */   286,  309,  201,  309,  309,  105,  309,  309,  309,  309,
 | |
|  /*  1730 */   309,  309,  309,  309,  309,  309,  309,  309,  264,  283,
 | |
|  /*  1740 */   309,  279,  309,  309,  309,  309,  309,  309,  309,  309,
 | |
|  /*  1750 */   309,  309,  309,  239,   38,  232,
 | |
|     );
 | |
|     static public $yy_lookahead = array(
 | |
|  /*     0 */     1,   79,  105,   12,   13,   83,   15,   85,   86,   87,
 | |
|  /*    10 */    88,  106,   13,  108,  109,    4,    5,    6,   96,   20,
 | |
|  /*    20 */     9,   10,   11,  101,  102,   12,  104,   26,   15,   16,
 | |
|  /*    30 */    31,   32,   33,   34,   35,   36,   37,   38,   39,   40,
 | |
|  /*    40 */    41,   42,   43,   44,   76,   77,   78,   79,   80,   12,
 | |
|  /*    50 */    14,   15,   15,   16,   12,    2,   14,   15,   18,   60,
 | |
|  /*    60 */    61,   62,   63,   64,   65,   66,   67,   68,   69,   70,
 | |
|  /*    70 */    71,    1,   79,   20,   12,   13,   83,   15,   85,   86,
 | |
|  /*    80 */    87,   88,   15,   13,   17,    1,   19,   46,   21,   96,
 | |
|  /*    90 */    20,   51,   51,   56,  101,  102,   55,  104,   58,   57,
 | |
|  /*   100 */    59,   31,   32,   33,   34,   35,   36,   37,   38,   39,
 | |
|  /*   110 */    40,   41,   42,   43,   44,   31,   32,   33,   34,   35,
 | |
|  /*   120 */    36,   37,   38,   39,   40,   41,   42,   43,   44,  105,
 | |
|  /*   130 */    60,   61,   62,   63,   64,   65,   66,   67,   68,   69,
 | |
|  /*   140 */    70,   71,    1,   59,   60,   61,   62,   63,   64,   65,
 | |
|  /*   150 */    66,   67,   68,   69,   70,   71,    1,   14,   15,   12,
 | |
|  /*   160 */    51,   20,   15,   16,   13,   90,   25,   58,   13,   47,
 | |
|  /*   170 */    23,   20,   31,   32,   33,   34,   35,   36,   37,   38,
 | |
|  /*   180 */    39,   40,   41,   42,   43,   44,   31,   32,   33,   34,
 | |
|  /*   190 */    35,   36,   37,   38,   39,   40,   41,   42,   43,   44,
 | |
|  /*   200 */    57,   60,   61,   62,   63,   64,   65,   66,   67,   68,
 | |
|  /*   210 */    69,   70,   71,    1,   27,   60,   61,   62,   63,   64,
 | |
|  /*   220 */    65,   66,   67,   68,   69,   70,   71,    1,   13,   13,
 | |
|  /*   230 */    13,   45,   20,   46,   13,   20,   20,   20,   23,   13,
 | |
|  /*   240 */    23,   20,   55,   31,   32,   33,   34,   35,   36,   37,
 | |
|  /*   250 */    38,   39,   40,   41,   42,   43,   44,   31,   32,   33,
 | |
|  /*   260 */    34,   35,   36,   37,   38,   39,   40,   41,   42,   43,
 | |
|  /*   270 */    44,    1,   60,   61,   62,   63,   64,   65,   66,   67,
 | |
|  /*   280 */    68,   69,   70,   71,   84,   84,   60,   61,   62,   63,
 | |
|  /*   290 */    64,   65,   66,   67,   68,   69,   70,   71,   98,   98,
 | |
|  /*   300 */    30,   31,   32,   33,   34,   35,   36,   37,   38,   39,
 | |
|  /*   310 */    40,   41,   42,   43,   44,    1,   78,   79,   80,    3,
 | |
|  /*   320 */     4,    5,    6,    7,    8,    9,   15,   13,   12,    1,
 | |
|  /*   330 */    60,   61,   62,   63,   64,   65,   66,   67,   68,   69,
 | |
|  /*   340 */    70,   71,  108,  109,   28,   31,   32,   33,   34,   35,
 | |
|  /*   350 */    36,   37,   38,   39,   40,   41,   42,   43,   44,   31,
 | |
|  /*   360 */    32,   33,   34,   35,   36,   37,   38,   39,   40,   41,
 | |
|  /*   370 */    42,   43,   44,   79,   60,   61,   62,   63,   64,   65,
 | |
|  /*   380 */    66,   67,   68,   69,   70,   71,    1,   27,   60,   61,
 | |
|  /*   390 */    62,   63,   64,   65,   66,   67,   68,   69,   70,   71,
 | |
|  /*   400 */     1,   73,   14,   22,   89,   45,   13,   22,   29,  115,
 | |
|  /*   410 */   116,   30,   13,   20,   99,  100,   31,   32,   33,   34,
 | |
|  /*   420 */    35,   36,   37,   38,   39,   40,   41,   42,   43,   44,
 | |
|  /*   430 */    31,   32,   33,   34,   35,   36,   37,   38,   39,   40,
 | |
|  /*   440 */    41,   42,   43,   44,   30,   60,   61,   62,   63,   64,
 | |
|  /*   450 */    65,   66,   67,   68,   69,   70,   71,    1,    2,   60,
 | |
|  /*   460 */    61,   62,   63,   64,   65,   66,   67,   68,   69,   70,
 | |
|  /*   470 */    71,    1,   13,   59,   13,   13,   46,   13,   13,   20,
 | |
|  /*   480 */    23,   20,   20,   13,   20,   20,   15,   31,   32,   33,
 | |
|  /*   490 */    34,   35,   36,   37,   38,   39,   40,   41,   42,   43,
 | |
|  /*   500 */    44,   31,   32,   33,   34,   35,   36,   37,   38,   39,
 | |
|  /*   510 */    40,   41,   42,   43,   44,    1,   60,   61,   62,   63,
 | |
|  /*   520 */    64,   65,   66,   67,   68,   69,   70,   71,    2,   57,
 | |
|  /*   530 */    60,   61,   62,   63,   64,   65,   66,   67,   68,   69,
 | |
|  /*   540 */    70,   71,   16,  108,  109,   31,   32,   33,   34,   35,
 | |
|  /*   550 */    36,   37,   38,   39,   40,   41,   42,   43,   44,    1,
 | |
|  /*   560 */    12,   47,   12,   15,   23,   15,   13,    1,   16,   85,
 | |
|  /*   570 */    18,   13,   88,   20,   60,   61,   62,   63,   64,   65,
 | |
|  /*   580 */    66,   67,   68,   69,   70,   71,   20,   15,  104,   31,
 | |
|  /*   590 */    32,   33,   34,   35,   36,   37,   38,   39,   40,   41,
 | |
|  /*   600 */    42,   43,   44,    1,   56,   13,   56,   55,   46,  108,
 | |
|  /*   610 */   109,   15,   20,   12,   73,   14,   15,   55,   60,   61,
 | |
|  /*   620 */    62,   63,   64,   65,   66,   67,   68,   69,   70,   71,
 | |
|  /*   630 */    29,   91,   92,   31,   32,   33,   34,   35,   36,   37,
 | |
|  /*   640 */    38,   39,   40,   41,   42,   43,   44,    1,   13,   47,
 | |
|  /*   650 */    13,   13,   56,   52,   53,   20,   14,   20,   20,   16,
 | |
|  /*   660 */    15,   13,   60,   61,   62,   63,   64,   65,   66,   67,
 | |
|  /*   670 */    68,   69,   70,   71,   29,   26,   57,   31,   32,   33,
 | |
|  /*   680 */    34,   35,   36,   37,   38,   39,   40,   41,   42,   43,
 | |
|  /*   690 */    44,   13,   13,   45,   51,   13,   16,   12,   20,   20,
 | |
|  /*   700 */    15,   12,   20,   16,   15,   15,   60,   61,   62,   63,
 | |
|  /*   710 */    64,   65,   66,   67,   68,   69,   70,   71,   79,   12,
 | |
|  /*   720 */    20,   14,   15,   45,   17,   46,   19,   45,   21,   12,
 | |
|  /*   730 */    94,   14,   15,   46,   55,   28,   29,   12,   13,   32,
 | |
|  /*   740 */    15,   94,   55,  107,   84,   28,   29,   12,   13,   32,
 | |
|  /*   750 */    15,   12,   27,   46,  107,  116,   49,   50,   98,   52,
 | |
|  /*   760 */    53,   54,   27,   46,   57,   58,   49,   50,   84,   52,
 | |
|  /*   770 */    53,   54,   84,   89,   57,   58,   59,   89,   12,   72,
 | |
|  /*   780 */    14,   15,   98,   99,  100,   46,   98,   94,   12,   72,
 | |
|  /*   790 */    14,   15,   84,   84,   28,   29,   84,   89,   32,   84,
 | |
|  /*   800 */   107,   89,   13,   48,   28,   29,   98,   98,   32,   20,
 | |
|  /*   810 */    98,   12,   46,   98,   15,   49,   50,   84,   52,   53,
 | |
|  /*   820 */    54,  112,   46,   57,   58,   49,   50,  112,   52,   53,
 | |
|  /*   830 */    54,   98,   18,   57,   58,   13,   13,   12,   72,   14,
 | |
|  /*   840 */    15,  105,   20,  107,   84,  112,   84,   12,   72,   14,
 | |
|  /*   850 */    15,   89,  103,   28,   29,   94,   15,   32,   98,  110,
 | |
|  /*   860 */    98,   99,  100,   28,   29,   59,   84,   32,  107,   55,
 | |
|  /*   870 */    80,   46,   82,   94,   49,   50,   47,   52,   53,   54,
 | |
|  /*   880 */    98,   46,   57,   58,   49,   50,  107,   52,   53,   54,
 | |
|  /*   890 */    94,   94,   57,   58,   15,   14,   12,   72,   14,   15,
 | |
|  /*   900 */   105,   94,   94,  107,  107,   84,   12,   72,   14,   15,
 | |
|  /*   910 */    89,   84,   28,   29,  107,  107,   32,   13,   47,   98,
 | |
|  /*   920 */    99,  100,   28,   29,   24,   98,   32,   95,   14,   51,
 | |
|  /*   930 */    46,   13,   20,   49,   50,   14,   52,   53,   54,  107,
 | |
|  /*   940 */    46,   57,   58,   49,   50,   84,   52,   53,   54,   15,
 | |
|  /*   950 */    89,   57,   58,   15,    2,   12,   72,   14,   15,   98,
 | |
|  /*   960 */    99,  100,   13,   16,   20,   12,   72,   14,   15,   15,
 | |
|  /*   970 */   105,   28,   29,  106,    8,   32,   14,   91,   12,   20,
 | |
|  /*   980 */    98,   28,   29,   81,   10,   32,   18,  107,   97,   46,
 | |
|  /*   990 */    20,   93,   49,   50,   28,   52,   53,   54,  109,   46,
 | |
|  /*  1000 */    57,   58,   49,   50,  105,   52,   53,   54,   93,   90,
 | |
|  /*  1010 */    57,   46,   90,   90,   12,   72,   14,   15,    2,  112,
 | |
|  /*  1020 */    79,  117,  117,  117,   83,   72,   85,   86,   87,   88,
 | |
|  /*  1030 */    28,   29,  117,  117,   32,  117,  117,   96,   72,   73,
 | |
|  /*  1040 */    74,  117,  101,  102,   12,  104,   14,   15,   46,  117,
 | |
|  /*  1050 */     1,   49,   50,  117,   52,   53,   54,  117,  117,   57,
 | |
|  /*  1060 */    28,   29,   13,  117,   32,  117,  117,   18,   85,   20,
 | |
|  /*  1070 */   117,   88,  117,  117,   72,  117,  117,  117,   46,  117,
 | |
|  /*  1080 */   117,   49,   50,  117,   52,   53,   54,  104,  117,   57,
 | |
|  /*  1090 */    79,  117,  117,  110,   83,  117,   85,   86,  117,   88,
 | |
|  /*  1100 */   117,  117,  117,  117,   72,  117,  117,   96,  117,  117,
 | |
|  /*  1110 */    79,  117,  101,  102,   83,  104,   85,   86,  117,   88,
 | |
|  /*  1120 */   117,  117,   79,  117,  113,  114,   83,   96,   85,   86,
 | |
|  /*  1130 */    87,   88,  101,  102,   79,  104,  117,  117,   83,   96,
 | |
|  /*  1140 */    85,   86,  111,   88,  101,  102,  117,  104,  117,  117,
 | |
|  /*  1150 */   117,   96,  117,  117,   79,  117,  101,  102,   83,  104,
 | |
|  /*  1160 */    85,   86,  117,   88,  117,  117,   79,  117,  117,  114,
 | |
|  /*  1170 */    83,   96,   85,   86,  117,   88,  101,  102,  117,  104,
 | |
|  /*  1180 */   117,  117,  117,   96,  117,  117,  111,  117,  101,  102,
 | |
|  /*  1190 */    79,  104,  117,  117,   83,  117,   85,   86,  111,   88,
 | |
|  /*  1200 */   117,  117,   79,  117,  117,  117,   83,   96,   85,   86,
 | |
|  /*  1210 */    87,   88,  101,  102,   79,  104,  117,  117,   83,   96,
 | |
|  /*  1220 */    85,   86,  111,   88,  101,  102,   91,  104,  117,  117,
 | |
|  /*  1230 */   117,   96,  117,  117,   79,  117,  101,  102,   83,  104,
 | |
|  /*  1240 */    85,   86,  117,   88,  117,  117,   79,  117,  117,  117,
 | |
|  /*  1250 */    83,   96,   85,   86,  117,   88,  101,  102,  117,  104,
 | |
|  /*  1260 */   117,  117,  117,   96,  117,  117,   79,  117,  101,  102,
 | |
|  /*  1270 */    83,  104,   85,   86,  117,   88,  117,  117,   79,  117,
 | |
|  /*  1280 */   117,  117,   83,   96,   85,   86,  117,   88,  101,  102,
 | |
|  /*  1290 */    79,  104,  117,  117,   83,   96,   85,   86,  117,   88,
 | |
|  /*  1300 */   101,  102,   79,  104,  117,  117,   83,   96,   85,   86,
 | |
|  /*  1310 */   117,   88,  101,  102,   79,  104,  117,  117,   83,   96,
 | |
|  /*  1320 */    85,   86,  117,   88,  101,  102,   79,  104,  117,  117,
 | |
|  /*  1330 */    83,   96,   85,   86,  117,   88,  101,  102,  117,  104,
 | |
|  /*  1340 */   117,  117,  117,   96,  117,  117,   79,  117,  101,  102,
 | |
|  /*  1350 */    83,  104,   85,   86,  117,   88,  117,  117,   79,  117,
 | |
|  /*  1360 */   117,  117,   83,   96,   85,   86,  117,   88,  101,  102,
 | |
|  /*  1370 */    79,  104,  117,  117,   83,   96,   85,   86,  117,   88,
 | |
|  /*  1380 */   101,  102,   79,  104,  117,  117,   83,   96,   85,   86,
 | |
|  /*  1390 */   117,   88,  101,  102,   79,  104,  117,  117,   83,   96,
 | |
|  /*  1400 */    85,   86,  117,   88,  101,  102,   79,  104,  117,  117,
 | |
|  /*  1410 */    83,   96,   85,   86,  117,   88,  101,  102,  117,  104,
 | |
|  /*  1420 */   117,  117,  117,   96,  117,  117,   79,  117,  101,  102,
 | |
|  /*  1430 */    83,  104,   85,   86,  117,   88,  117,  117,   79,  117,
 | |
|  /*  1440 */   117,  117,   83,   96,   85,   86,  117,   88,  101,  102,
 | |
|  /*  1450 */    79,  104,  117,  117,   83,   96,   85,   86,  117,   88,
 | |
|  /*  1460 */   101,  102,   79,  104,  117,  117,   83,   96,   85,   86,
 | |
|  /*  1470 */   117,   88,  101,  102,   79,  104,  117,  117,   83,   96,
 | |
|  /*  1480 */    85,   86,  117,   88,  101,  102,   79,  104,  117,  117,
 | |
|  /*  1490 */    83,   96,   85,   86,  117,   88,  101,  102,  117,  104,
 | |
|  /*  1500 */   117,  117,  117,   96,  117,  117,   79,  117,  101,  102,
 | |
|  /*  1510 */    83,  104,   85,   86,  117,   88,  117,  117,   79,  117,
 | |
|  /*  1520 */   117,  117,   83,   96,   85,   86,  117,   88,  101,  102,
 | |
|  /*  1530 */    79,  104,  117,  117,   83,   96,   85,   86,  117,   88,
 | |
|  /*  1540 */   101,  102,   79,  104,  117,  117,   83,   96,   85,   86,
 | |
|  /*  1550 */   117,   88,  101,  102,   79,  104,  117,  117,   83,   96,
 | |
|  /*  1560 */    85,   86,  117,   88,  101,  102,   79,  104,    1,  117,
 | |
|  /*  1570 */    83,   96,   85,   86,  117,   88,  101,  102,  117,  104,
 | |
|  /*  1580 */    13,  117,  117,   96,  117,   18,   79,   20,  101,  102,
 | |
|  /*  1590 */    83,  104,   85,   79,  117,   88,  117,   83,  117,   85,
 | |
|  /*  1600 */   117,  117,   88,   96,  117,  117,  117,  117,  101,  102,
 | |
|  /*  1610 */    96,  104,  117,   46,  117,  101,  102,   79,  104,  117,
 | |
|  /*  1620 */   117,   83,   55,   85,  117,  117,   88,   79,  117,  117,
 | |
|  /*  1630 */   117,   83,  117,   85,  117,  117,   88,  117,  117,  101,
 | |
|  /*  1640 */   102,  117,  104,  117,  117,  117,  117,   79,  117,  101,
 | |
|  /*  1650 */   102,   83,  104,   85,  117,   79,   88,  117,  117,   83,
 | |
|  /*  1660 */   117,   85,  117,  117,   88,  117,  117,  117,  117,  101,
 | |
|  /*  1670 */   102,  117,  104,  117,  117,   79,  117,  101,  102,   83,
 | |
|  /*  1680 */   104,   85,   79,  117,   88,  117,   83,  117,   85,    8,
 | |
|  /*  1690 */    79,   88,  117,   12,   83,  117,   85,  101,  102,   88,
 | |
|  /*  1700 */   104,  117,  117,  117,  101,  102,  117,  104,  117,   28,
 | |
|  /*  1710 */   117,  117,  101,  102,  117,  104,   79,  117,  117,  117,
 | |
|  /*  1720 */    83,  117,   85,  117,  117,   88,  117,  117,  117,  117,
 | |
|  /*  1730 */   117,  117,  117,  117,  117,  117,  117,  117,  101,  102,
 | |
|  /*  1740 */   117,  104,  117,  117,  117,  117,  117,  117,  117,  117,
 | |
|  /*  1750 */   117,  117,  117,   72,   73,   74,
 | |
| );
 | |
|     const YY_SHIFT_USE_DFLT = -10;
 | |
|     const YY_SHIFT_MAX = 225;
 | |
|     static public $yy_shift_ofst = array(
 | |
|  /*     0 */   316,  894,  707,  707,  766,  766,  766,  835,  825,  776,
 | |
|  /*    10 */   825,  766,  894,  717,  766,  766,  766,  766,  766,  766,
 | |
|  /*    20 */   766,  766,  766,  766,  766,  766,  766,  766,  766,  766,
 | |
|  /*    30 */   766,  766,  766,  766,  766,  766,  766,  766,  766,  943,
 | |
|  /*    40 */   884, 1002,  953, 1002, 1002, 1002, 1032, 1002, 1002,   -1,
 | |
|  /*    50 */   141,   70,  212,  212,   42,  270,  155,   84,  226,  314,
 | |
|  /*    60 */   456,  602,  514,  558,  470,  399,  328,  385,  646,  646,
 | |
|  /*    70 */   646,  646,  646,  646,  646,  646,  646,  646,  646,  646,
 | |
|  /*    80 */   646,  646,  646,  646,  316, 1567, 1681, 1049,  143,   40,
 | |
|  /*    90 */   566,   53,   53,   53,   11,  966,  147,   37,  552,  550,
 | |
|  /*   100 */   217,  215,  682,  799,  685,  814,  685,  685,  685,  689,
 | |
|  /*   110 */   685,   36,  685,  685,  685,  689,  970,  962,  968,  700,
 | |
|  /*   120 */   968,  700,  700,  725,  735,   67,   62,   -9,   13,  548,
 | |
|  /*   130 */   461,  464,  462,  465,  221,  151,  109,  109,  393,  459,
 | |
|  /*   140 */   216,  109,  109,  739,  109,  635,  553,  637,  822,  789,
 | |
|  /*   150 */   638,  592,  974,  962,  959,  968,  968, 1016,  968,  959,
 | |
|  /*   160 */   965,  968,  -10,  -10,  -10,  -10,  -10,  -10,  -10,  601,
 | |
|  /*   170 */   679,   41,  187,  678,  687,  648,  381,  643,  526,  360,
 | |
|  /*   180 */   562,  645,  596,  562,  541,  562,  562,  414,  186,  122,
 | |
|  /*   190 */   388,  379,  430,    1,  311,  952,  914,  878,  871,  900,
 | |
|  /*   200 */   954,  457,  904,  918,  912,  944,  947,  949,  938,  921,
 | |
|  /*   210 */   934,  881,  829,  649,  680,  642,  572,  471,  472,  619,
 | |
|  /*   220 */   690,  806,  879,  841,  755,  823,
 | |
| );
 | |
|     const YY_REDUCE_USE_DFLT = -104;
 | |
|     const YY_REDUCE_MAX = 168;
 | |
|     static public $yy_reduce_ofst = array(
 | |
|  /*     0 */   -32, 1011,   -7,  941, 1111, 1075, 1087, 1135, 1123, 1043,
 | |
|  /*    10 */   -78, 1031, 1055, 1223, 1315, 1439, 1487, 1359, 1383, 1371,
 | |
|  /*    20 */  1167, 1267, 1291, 1199, 1395, 1475, 1211, 1279, 1187, 1247,
 | |
|  /*    30 */  1155, 1327, 1463, 1347, 1407, 1427, 1451, 1235, 1303, 1514,
 | |
|  /*    40 */  1507, 1637, 1603, 1548, 1568, 1576, 1611, 1538, 1596,  861,
 | |
|  /*    50 */   821,  684,  762,  861,  983,  315,  315,  315,  315,  315,
 | |
|  /*    60 */   315,  315,  315,  315,  315,  315,  315,  315,  315,  315,
 | |
|  /*    70 */   315,  315,  315,  315,  315,  315,  315,  315,  315,  315,
 | |
|  /*    80 */   315,  315,  315,  315,  238,  712,  294,  708,  484,  -95,
 | |
|  /*    90 */   688,  715,  733,  709,  790,  639,  832,  736,  501,  736,
 | |
|  /*   100 */   782,  782,  760,  779,  808,  501,  796,  779,  761,  807,
 | |
|  /*   110 */   797,  749,  636,  693,  647,  779,  827,  540,  435,  660,
 | |
|  /*   120 */   234,  201,  200,  880,  880,  891,  880,  880,  880,  880,
 | |
|  /*   130 */   882,  882,  882,  882,  882,  882,  867,  867,  882,  882,
 | |
|  /*   140 */   882,  867,  867,  865,  867,  882,  882,  882,  882,  882,
 | |
|  /*   150 */   882,  882,  902,  886,  898,  889,  889,  907,  889,  915,
 | |
|  /*   160 */   899,  889,  919,  923,  922,  795,   24,   75, -103,
 | |
| );
 | |
|     static public $yyExpectedTokens = array(
 | |
|         /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 12, 28, ),
 | |
|         /* 1 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 2 */ array(12, 14, 15, 17, 19, 21, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 3 */ array(12, 14, 15, 17, 19, 21, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 4 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 5 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 6 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 7 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 8 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 9 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 10 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 11 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 12 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 13 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 59, 72, ),
 | |
|         /* 14 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 15 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 16 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 17 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 18 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 19 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 20 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 21 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 22 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 23 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 24 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 25 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 26 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 27 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 28 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 29 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 30 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 31 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 32 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 33 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 34 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 35 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 36 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 37 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 38 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 39 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 40 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 58, 72, ),
 | |
|         /* 41 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 42 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 43 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 44 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 45 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 46 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 47 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 48 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 53, 54, 57, 72, ),
 | |
|         /* 49 */ array(1, 13, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 50 */ array(1, 20, 25, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 51 */ array(1, 13, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 52 */ array(1, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 53 */ array(1, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 54 */ array(12, 14, 15, 57, ),
 | |
|         /* 55 */ array(1, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 56 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 57 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 58 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 59 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 60 */ array(1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 61 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 62 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 63 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 64 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 65 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 66 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, ),
 | |
|         /* 67 */ array(1, 22, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 68 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 69 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 70 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 71 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 72 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 73 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 74 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 75 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 76 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 77 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 78 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 79 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 80 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 81 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 82 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 83 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ),
 | |
|         /* 84 */ array(3, 4, 5, 6, 7, 8, 9, 12, 28, ),
 | |
|         /* 85 */ array(1, 13, 18, 20, 46, 55, ),
 | |
|         /* 86 */ array(8, 12, 28, 72, 73, 74, ),
 | |
|         /* 87 */ array(1, 13, 18, 20, ),
 | |
|         /* 88 */ array(14, 15, 57, ),
 | |
|         /* 89 */ array(18, 51, 58, ),
 | |
|         /* 90 */ array(1, 20, ),
 | |
|         /* 91 */ array(2, 20, ),
 | |
|         /* 92 */ array(2, 20, ),
 | |
|         /* 93 */ array(2, 20, ),
 | |
|         /* 94 */ array(4, 5, 6, 9, 10, 11, ),
 | |
|         /* 95 */ array(8, 12, 28, 72, 73, 74, ),
 | |
|         /* 96 */ array(12, 15, 16, 23, ),
 | |
|         /* 97 */ array(12, 15, 16, 56, ),
 | |
|         /* 98 */ array(16, 18, 55, ),
 | |
|         /* 99 */ array(12, 15, 56, ),
 | |
|         /* 100 */ array(13, 20, 23, ),
 | |
|         /* 101 */ array(13, 20, 23, ),
 | |
|         /* 102 */ array(13, 20, 45, ),
 | |
|         /* 103 */ array(12, 15, ),
 | |
|         /* 104 */ array(12, 15, ),
 | |
|         /* 105 */ array(18, 55, ),
 | |
|         /* 106 */ array(12, 15, ),
 | |
|         /* 107 */ array(12, 15, ),
 | |
|         /* 108 */ array(12, 15, ),
 | |
|         /* 109 */ array(12, 15, ),
 | |
|         /* 110 */ array(12, 15, ),
 | |
|         /* 111 */ array(14, 15, ),
 | |
|         /* 112 */ array(12, 15, ),
 | |
|         /* 113 */ array(12, 15, ),
 | |
|         /* 114 */ array(12, 15, ),
 | |
|         /* 115 */ array(12, 15, ),
 | |
|         /* 116 */ array(20, ),
 | |
|         /* 117 */ array(14, ),
 | |
|         /* 118 */ array(18, ),
 | |
|         /* 119 */ array(20, ),
 | |
|         /* 120 */ array(18, ),
 | |
|         /* 121 */ array(20, ),
 | |
|         /* 122 */ array(20, ),
 | |
|         /* 123 */ array(12, 13, 15, 27, ),
 | |
|         /* 124 */ array(12, 13, 15, 27, ),
 | |
|         /* 125 */ array(15, 17, 19, 21, ),
 | |
|         /* 126 */ array(12, 13, 15, ),
 | |
|         /* 127 */ array(12, 13, 15, ),
 | |
|         /* 128 */ array(12, 15, 16, ),
 | |
|         /* 129 */ array(12, 15, 56, ),
 | |
|         /* 130 */ array(13, 20, ),
 | |
|         /* 131 */ array(13, 20, ),
 | |
|         /* 132 */ array(13, 20, ),
 | |
|         /* 133 */ array(13, 20, ),
 | |
|         /* 134 */ array(13, 20, ),
 | |
|         /* 135 */ array(13, 20, ),
 | |
|         /* 136 */ array(51, 58, ),
 | |
|         /* 137 */ array(51, 58, ),
 | |
|         /* 138 */ array(13, 20, ),
 | |
|         /* 139 */ array(13, 20, ),
 | |
|         /* 140 */ array(13, 20, ),
 | |
|         /* 141 */ array(51, 58, ),
 | |
|         /* 142 */ array(51, 58, ),
 | |
|         /* 143 */ array(12, 46, ),
 | |
|         /* 144 */ array(51, 58, ),
 | |
|         /* 145 */ array(13, 20, ),
 | |
|         /* 146 */ array(13, 20, ),
 | |
|         /* 147 */ array(13, 20, ),
 | |
|         /* 148 */ array(13, 20, ),
 | |
|         /* 149 */ array(13, 20, ),
 | |
|         /* 150 */ array(13, 20, ),
 | |
|         /* 151 */ array(13, 20, ),
 | |
|         /* 152 */ array(10, ),
 | |
|         /* 153 */ array(14, ),
 | |
|         /* 154 */ array(20, ),
 | |
|         /* 155 */ array(18, ),
 | |
|         /* 156 */ array(18, ),
 | |
|         /* 157 */ array(2, ),
 | |
|         /* 158 */ array(18, ),
 | |
|         /* 159 */ array(20, ),
 | |
|         /* 160 */ array(46, ),
 | |
|         /* 161 */ array(18, ),
 | |
|         /* 162 */ array(),
 | |
|         /* 163 */ array(),
 | |
|         /* 164 */ array(),
 | |
|         /* 165 */ array(),
 | |
|         /* 166 */ array(),
 | |
|         /* 167 */ array(),
 | |
|         /* 168 */ array(),
 | |
|         /* 169 */ array(12, 14, 15, 29, 52, 53, ),
 | |
|         /* 170 */ array(13, 20, 46, 55, ),
 | |
|         /* 171 */ array(46, 51, 55, 59, ),
 | |
|         /* 172 */ array(27, 46, 55, ),
 | |
|         /* 173 */ array(13, 20, 45, ),
 | |
|         /* 174 */ array(16, 46, 55, ),
 | |
|         /* 175 */ array(13, 45, ),
 | |
|         /* 176 */ array(22, 30, ),
 | |
|         /* 177 */ array(16, 51, ),
 | |
|         /* 178 */ array(2, 16, ),
 | |
|         /* 179 */ array(27, 45, ),
 | |
|         /* 180 */ array(46, 55, ),
 | |
|         /* 181 */ array(15, 29, ),
 | |
|         /* 182 */ array(15, 56, ),
 | |
|         /* 183 */ array(46, 55, ),
 | |
|         /* 184 */ array(23, 73, ),
 | |
|         /* 185 */ array(46, 55, ),
 | |
|         /* 186 */ array(46, 55, ),
 | |
|         /* 187 */ array(30, 59, ),
 | |
|         /* 188 */ array(45, ),
 | |
|         /* 189 */ array(47, ),
 | |
|         /* 190 */ array(14, ),
 | |
|         /* 191 */ array(29, ),
 | |
|         /* 192 */ array(46, ),
 | |
|         /* 193 */ array(26, ),
 | |
|         /* 194 */ array(15, ),
 | |
|         /* 195 */ array(2, ),
 | |
|         /* 196 */ array(14, ),
 | |
|         /* 197 */ array(51, ),
 | |
|         /* 198 */ array(47, ),
 | |
|         /* 199 */ array(24, ),
 | |
|         /* 200 */ array(15, ),
 | |
|         /* 201 */ array(23, ),
 | |
|         /* 202 */ array(13, ),
 | |
|         /* 203 */ array(13, ),
 | |
|         /* 204 */ array(20, ),
 | |
|         /* 205 */ array(20, ),
 | |
|         /* 206 */ array(16, ),
 | |
|         /* 207 */ array(13, ),
 | |
|         /* 208 */ array(15, ),
 | |
|         /* 209 */ array(14, ),
 | |
|         /* 210 */ array(15, ),
 | |
|         /* 211 */ array(14, ),
 | |
|         /* 212 */ array(47, ),
 | |
|         /* 213 */ array(26, ),
 | |
|         /* 214 */ array(16, ),
 | |
|         /* 215 */ array(14, ),
 | |
|         /* 216 */ array(15, ),
 | |
|         /* 217 */ array(15, ),
 | |
|         /* 218 */ array(57, ),
 | |
|         /* 219 */ array(57, ),
 | |
|         /* 220 */ array(15, ),
 | |
|         /* 221 */ array(59, ),
 | |
|         /* 222 */ array(15, ),
 | |
|         /* 223 */ array(15, ),
 | |
|         /* 224 */ array(48, ),
 | |
|         /* 225 */ array(13, ),
 | |
|         /* 226 */ array(),
 | |
|         /* 227 */ array(),
 | |
|         /* 228 */ array(),
 | |
|         /* 229 */ array(),
 | |
|         /* 230 */ array(),
 | |
|         /* 231 */ array(),
 | |
|         /* 232 */ array(),
 | |
|         /* 233 */ array(),
 | |
|         /* 234 */ array(),
 | |
|         /* 235 */ array(),
 | |
|         /* 236 */ array(),
 | |
|         /* 237 */ array(),
 | |
|         /* 238 */ array(),
 | |
|         /* 239 */ array(),
 | |
|         /* 240 */ array(),
 | |
|         /* 241 */ array(),
 | |
|         /* 242 */ array(),
 | |
|         /* 243 */ array(),
 | |
|         /* 244 */ array(),
 | |
|         /* 245 */ array(),
 | |
|         /* 246 */ array(),
 | |
|         /* 247 */ array(),
 | |
|         /* 248 */ array(),
 | |
|         /* 249 */ array(),
 | |
|         /* 250 */ array(),
 | |
|         /* 251 */ array(),
 | |
|         /* 252 */ array(),
 | |
|         /* 253 */ array(),
 | |
|         /* 254 */ array(),
 | |
|         /* 255 */ array(),
 | |
|         /* 256 */ array(),
 | |
|         /* 257 */ array(),
 | |
|         /* 258 */ array(),
 | |
|         /* 259 */ array(),
 | |
|         /* 260 */ array(),
 | |
|         /* 261 */ array(),
 | |
|         /* 262 */ array(),
 | |
|         /* 263 */ array(),
 | |
|         /* 264 */ array(),
 | |
|         /* 265 */ array(),
 | |
|         /* 266 */ array(),
 | |
|         /* 267 */ array(),
 | |
|         /* 268 */ array(),
 | |
|         /* 269 */ array(),
 | |
|         /* 270 */ array(),
 | |
|         /* 271 */ array(),
 | |
|         /* 272 */ array(),
 | |
|         /* 273 */ array(),
 | |
|         /* 274 */ array(),
 | |
|         /* 275 */ array(),
 | |
|         /* 276 */ array(),
 | |
|         /* 277 */ array(),
 | |
|         /* 278 */ array(),
 | |
|         /* 279 */ array(),
 | |
|         /* 280 */ array(),
 | |
|         /* 281 */ array(),
 | |
|         /* 282 */ array(),
 | |
|         /* 283 */ array(),
 | |
|         /* 284 */ array(),
 | |
|         /* 285 */ array(),
 | |
|         /* 286 */ array(),
 | |
|         /* 287 */ array(),
 | |
|         /* 288 */ array(),
 | |
|         /* 289 */ array(),
 | |
|         /* 290 */ array(),
 | |
|         /* 291 */ array(),
 | |
|         /* 292 */ array(),
 | |
|         /* 293 */ array(),
 | |
|         /* 294 */ array(),
 | |
|         /* 295 */ array(),
 | |
|         /* 296 */ array(),
 | |
|         /* 297 */ array(),
 | |
|         /* 298 */ array(),
 | |
|         /* 299 */ array(),
 | |
|         /* 300 */ array(),
 | |
|         /* 301 */ array(),
 | |
|         /* 302 */ array(),
 | |
|         /* 303 */ array(),
 | |
|         /* 304 */ array(),
 | |
|         /* 305 */ array(),
 | |
|         /* 306 */ array(),
 | |
|         /* 307 */ array(),
 | |
|         /* 308 */ array(),
 | |
|         /* 309 */ array(),
 | |
|         /* 310 */ array(),
 | |
|         /* 311 */ array(),
 | |
|         /* 312 */ array(),
 | |
|         /* 313 */ array(),
 | |
|         /* 314 */ array(),
 | |
|         /* 315 */ array(),
 | |
|         /* 316 */ array(),
 | |
|         /* 317 */ array(),
 | |
|         /* 318 */ array(),
 | |
|         /* 319 */ array(),
 | |
|         /* 320 */ array(),
 | |
|         /* 321 */ array(),
 | |
|         /* 322 */ array(),
 | |
|         /* 323 */ array(),
 | |
|         /* 324 */ array(),
 | |
|         /* 325 */ array(),
 | |
|         /* 326 */ array(),
 | |
|         /* 327 */ array(),
 | |
|         /* 328 */ array(),
 | |
|         /* 329 */ array(),
 | |
|         /* 330 */ array(),
 | |
|         /* 331 */ array(),
 | |
|         /* 332 */ array(),
 | |
|         /* 333 */ array(),
 | |
|         /* 334 */ array(),
 | |
|         /* 335 */ array(),
 | |
|         /* 336 */ array(),
 | |
|         /* 337 */ array(),
 | |
|         /* 338 */ array(),
 | |
|         /* 339 */ array(),
 | |
|         /* 340 */ array(),
 | |
|         /* 341 */ array(),
 | |
|         /* 342 */ array(),
 | |
|         /* 343 */ array(),
 | |
|         /* 344 */ array(),
 | |
|         /* 345 */ array(),
 | |
|         /* 346 */ array(),
 | |
|         /* 347 */ array(),
 | |
|         /* 348 */ array(),
 | |
|         /* 349 */ array(),
 | |
|         /* 350 */ array(),
 | |
|         /* 351 */ array(),
 | |
|         /* 352 */ array(),
 | |
|         /* 353 */ array(),
 | |
|         /* 354 */ array(),
 | |
|         /* 355 */ array(),
 | |
|         /* 356 */ array(),
 | |
|         /* 357 */ array(),
 | |
|         /* 358 */ array(),
 | |
|         /* 359 */ array(),
 | |
|         /* 360 */ array(),
 | |
|         /* 361 */ array(),
 | |
|         /* 362 */ array(),
 | |
|         /* 363 */ array(),
 | |
|         /* 364 */ array(),
 | |
| );
 | |
|     static public $yy_default = array(
 | |
|  /*     0 */   555,  538,  555,  555,  509,  509,  509,  555,  555,  555,
 | |
|  /*    10 */   555,  509,  555,  555,  555,  555,  555,  555,  555,  555,
 | |
|  /*    20 */   555,  555,  555,  555,  555,  555,  555,  555,  555,  555,
 | |
|  /*    30 */   555,  555,  555,  555,  555,  555,  555,  555,  555,  555,
 | |
|  /*    40 */   555,  555,  555,  555,  555,  555,  555,  555,  555,  555,
 | |
|  /*    50 */   423,  555,  423,  423,  555,  508,  555,  555,  555,  555,
 | |
|  /*    60 */   555,  555,  555,  555,  555,  555,  555,  555,  445,  405,
 | |
|  /*    70 */   432,  540,  541,  446,  444,  539,  441,  454,  425,  449,
 | |
|  /*    80 */   457,  450,  429,  453,  365,  434,  555,  555,  555,  517,
 | |
|  /*    90 */   423,  423,  423,  423,  555,  555,  555,  480,  473,  480,
 | |
|  /*   100 */   458,  458,  433,  555,  555,  473,  555,  555,  555,  555,
 | |
|  /*   110 */   555,  555,  555,  555,  555,  555,  423,  555,  513,  423,
 | |
|  /*   120 */   512,  423,  423,  555,  555,  555,  555,  555,  555,  481,
 | |
|  /*   130 */   555,  555,  555,  555,  555,  555,  478,  501,  555,  555,
 | |
|  /*   140 */   555,  502,  500,  480,  503,  555,  555,  555,  555,  555,
 | |
|  /*   150 */   555,  555,  379,  555,  554,  514,  515,  440,  496,  554,
 | |
|  /*   160 */   480,  518,  520,  520,  520,  480,  480,  520,  480,  555,
 | |
|  /*   170 */   434,  434,  434,  433,  428,  433,  555,  463,  494,  433,
 | |
|  /*   180 */   434,  555,  555,  455,  458,  522,  555,  555,  433,  555,
 | |
|  /*   190 */   555,  555,  516,  555,  555,  494,  555,  463,  555,  430,
 | |
|  /*   200 */   555,  458,  555,  555,  555,  555,  555,  555,  555,  555,
 | |
|  /*   210 */   555,  555,  555,  555,  428,  555,  555,  555,  555,  555,
 | |
|  /*   220 */   555,  555,  555,  555,  468,  555,  547,  420,  544,  431,
 | |
|  /*   230 */   521,  468,  548,  546,  414,  486,  408,  417,  427,  542,
 | |
|  /*   240 */   416,  543,  415,  407,  551,  404,  506,  485,  406,  504,
 | |
|  /*   250 */   483,  495,  505,  507,  491,  456,  552,  484,  487,  545,
 | |
|  /*   260 */   366,  490,  553,  389,  467,  466,  471,  435,  474,  465,
 | |
|  /*   270 */   464,  462,  459,  460,  461,  479,  482,  492,  499,  475,
 | |
|  /*   280 */   476,  477,  472,  470,  493,  494,  436,  469,  519,  422,
 | |
|  /*   290 */   374,  373,  375,  376,  377,  372,  371,  367,  368,  369,
 | |
|  /*   300 */   370,  378,  380,  421,  413,  418,  419,  386,  385,  381,
 | |
|  /*   310 */   382,  383,  384,  488,  489,  392,  391,  393,  394,  395,
 | |
|  /*   320 */   390,  550,  439,  535,  537,  536,  497,  498,  410,  409,
 | |
|  /*   330 */   411,  412,  402,  397,  400,  396,  398,  399,  401,  534,
 | |
|  /*   340 */   533,  447,  443,  448,  451,  452,  442,  438,  437,  387,
 | |
|  /*   350 */   549,  388,  510,  511,  529,  530,  531,  532,  528,  527,
 | |
|  /*   360 */   523,  524,  525,  526,  403,
 | |
| );
 | |
|     const YYNOCODE = 118;
 | |
|     const YYSTACKDEPTH = 100;
 | |
|     const YYNSTATE = 365;
 | |
|     const YYNRULE = 190;
 | |
|     const YYERRORSYMBOL = 75;
 | |
|     const YYERRSYMDT = 'yy0';
 | |
|     const YYFALLBACK = 0;
 | |
|     static public $yyFallback = array(
 | |
|     );
 | |
|     static function Trace($TraceFILE, $zTracePrompt)
 | |
|     {
 | |
|         if (!$TraceFILE) {
 | |
|             $zTracePrompt = 0;
 | |
|         } elseif (!$zTracePrompt) {
 | |
|             $TraceFILE = 0;
 | |
|         }
 | |
|         self::$yyTraceFILE = $TraceFILE;
 | |
|         self::$yyTracePrompt = $zTracePrompt;
 | |
|     }
 | |
| 
 | |
|     static function PrintTrace()
 | |
|     {
 | |
|         self::$yyTraceFILE = fopen('php://output', 'w');
 | |
|         self::$yyTracePrompt = '<br>';
 | |
|     }
 | |
| 
 | |
|     static public $yyTraceFILE;
 | |
|     static public $yyTracePrompt;
 | |
|     public $yyidx;                    /* Index of top element in stack */
 | |
|     public $yyerrcnt;                 /* Shifts left before out of the error */
 | |
|     public $yystack = array();  /* The parser's stack */
 | |
| 
 | |
|     public $yyTokenName = array( 
 | |
|   '$',             'VERT',          'COLON',         'COMMENT',     
 | |
|   'PHPSTARTTAG',   'PHPENDTAG',     'FAKEPHPSTARTTAG',  'XMLTAG',      
 | |
|   'OTHER',         'LITERALSTART',  'LITERALEND',    'LITERAL',     
 | |
|   'LDEL',          'RDEL',          'DOLLAR',        'ID',          
 | |
|   'EQUAL',         'FOREACH',       'PTR',           'IF',          
 | |
|   'SPACE',         'FOR',           'SEMICOLON',     'INCDEC',      
 | |
|   'TO',            'STEP',          'AS',            'APTR',        
 | |
|   'LDELSLASH',     'INTEGER',       'COMMA',         'MATH',        
 | |
|   'UNIMATH',       'ANDSYM',        'ISIN',          'ISDIVBY',     
 | |
|   'ISNOTDIVBY',    'ISEVEN',        'ISNOTEVEN',     'ISEVENBY',    
 | |
|   'ISNOTEVENBY',   'ISODD',         'ISNOTODD',      'ISODDBY',     
 | |
|   'ISNOTODDBY',    'INSTANCEOF',    'OPENP',         'CLOSEP',      
 | |
|   'QMARK',         'NOT',           'TYPECAST',      'DOT',         
 | |
|   'BOOLEAN',       'NULL',          'SINGLEQUOTESTRING',  'DOUBLECOLON', 
 | |
|   'AT',            'HATCH',         'OPENB',         'CLOSEB',      
 | |
|   'EQUALS',        'NOTEQUALS',     'GREATERTHAN',   'LESSTHAN',    
 | |
|   'GREATEREQUAL',  'LESSEQUAL',     'IDENTITY',      'NONEIDENTITY',
 | |
|   'MOD',           'LAND',          'LOR',           'LXOR',        
 | |
|   'QUOTE',         'BACKTICK',      'DOLLARID',      'error',       
 | |
|   'start',         'template',      'template_element',  'smartytag',   
 | |
|   'literal',       'literal_elements',  'literal_element',  'value',       
 | |
|   'attributes',    'variable',      'expr',          'ternary',     
 | |
|   'varindexed',    'modifier',      'modparameters',  'statement',   
 | |
|   'statements',    'optspace',      'varvar',        'foraction',   
 | |
|   'array',         'specialclose',  'attribute',     'ifcond',      
 | |
|   'lop',           'function',      'doublequoted_with_quotes',  'static_class_access',
 | |
|   'object',        'arrayindex',    'indexdef',      'varvarele',   
 | |
|   'objectchain',   'objectelement',  'method',        'params',      
 | |
|   'modparameter',  'arrayelements',  'arrayelement',  'doublequoted',
 | |
|   'doublequotedcontent',
 | |
|     );
 | |
| 
 | |
|     static public $yyRuleName = array(
 | |
|  /*   0 */ "start ::= template",
 | |
|  /*   1 */ "template ::= template_element",
 | |
|  /*   2 */ "template ::= template template_element",
 | |
|  /*   3 */ "template_element ::= smartytag",
 | |
|  /*   4 */ "template_element ::= COMMENT",
 | |
|  /*   5 */ "template_element ::= literal",
 | |
|  /*   6 */ "template_element ::= PHPSTARTTAG",
 | |
|  /*   7 */ "template_element ::= PHPENDTAG",
 | |
|  /*   8 */ "template_element ::= FAKEPHPSTARTTAG",
 | |
|  /*   9 */ "template_element ::= XMLTAG",
 | |
|  /*  10 */ "template_element ::= OTHER",
 | |
|  /*  11 */ "literal ::= LITERALSTART LITERALEND",
 | |
|  /*  12 */ "literal ::= LITERALSTART literal_elements LITERALEND",
 | |
|  /*  13 */ "literal_elements ::= literal_elements literal_element",
 | |
|  /*  14 */ "literal_elements ::=",
 | |
|  /*  15 */ "literal_element ::= literal",
 | |
|  /*  16 */ "literal_element ::= LITERAL",
 | |
|  /*  17 */ "literal_element ::= PHPSTARTTAG",
 | |
|  /*  18 */ "literal_element ::= FAKEPHPSTARTTAG",
 | |
|  /*  19 */ "literal_element ::= PHPENDTAG",
 | |
|  /*  20 */ "smartytag ::= LDEL value RDEL",
 | |
|  /*  21 */ "smartytag ::= LDEL value attributes RDEL",
 | |
|  /*  22 */ "smartytag ::= LDEL variable attributes RDEL",
 | |
|  /*  23 */ "smartytag ::= LDEL expr attributes RDEL",
 | |
|  /*  24 */ "smartytag ::= LDEL ternary attributes RDEL",
 | |
|  /*  25 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL",
 | |
|  /*  26 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL",
 | |
|  /*  27 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL",
 | |
|  /*  28 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL",
 | |
|  /*  29 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",
 | |
|  /*  30 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL",
 | |
|  /*  31 */ "smartytag ::= LDEL ID attributes RDEL",
 | |
|  /*  32 */ "smartytag ::= LDEL FOREACH attributes RDEL",
 | |
|  /*  33 */ "smartytag ::= LDEL ID RDEL",
 | |
|  /*  34 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",
 | |
|  /*  35 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL",
 | |
|  /*  36 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL",
 | |
|  /*  37 */ "smartytag ::= LDEL IF SPACE expr RDEL",
 | |
|  /*  38 */ "smartytag ::= LDEL IF SPACE statement RDEL",
 | |
|  /*  39 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL",
 | |
|  /*  40 */ "foraction ::= EQUAL expr",
 | |
|  /*  41 */ "foraction ::= INCDEC",
 | |
|  /*  42 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL",
 | |
|  /*  43 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL",
 | |
|  /*  44 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL",
 | |
|  /*  45 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL",
 | |
|  /*  46 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL",
 | |
|  /*  47 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL",
 | |
|  /*  48 */ "smartytag ::= LDELSLASH ID RDEL",
 | |
|  /*  49 */ "smartytag ::= LDELSLASH specialclose RDEL",
 | |
|  /*  50 */ "specialclose ::= IF",
 | |
|  /*  51 */ "specialclose ::= FOR",
 | |
|  /*  52 */ "specialclose ::= FOREACH",
 | |
|  /*  53 */ "smartytag ::= LDELSLASH ID attributes RDEL",
 | |
|  /*  54 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL",
 | |
|  /*  55 */ "smartytag ::= LDELSLASH ID PTR ID RDEL",
 | |
|  /*  56 */ "attributes ::= attributes attribute",
 | |
|  /*  57 */ "attributes ::= attribute",
 | |
|  /*  58 */ "attributes ::=",
 | |
|  /*  59 */ "attribute ::= SPACE ID EQUAL ID",
 | |
|  /*  60 */ "attribute ::= SPACE ID EQUAL expr",
 | |
|  /*  61 */ "attribute ::= SPACE ID EQUAL value",
 | |
|  /*  62 */ "attribute ::= SPACE ID EQUAL ternary",
 | |
|  /*  63 */ "attribute ::= SPACE ID",
 | |
|  /*  64 */ "attribute ::= SPACE INTEGER EQUAL expr",
 | |
|  /*  65 */ "statements ::= statement",
 | |
|  /*  66 */ "statements ::= statements COMMA statement",
 | |
|  /*  67 */ "statement ::= DOLLAR varvar EQUAL expr",
 | |
|  /*  68 */ "expr ::= value",
 | |
|  /*  69 */ "expr ::= ID",
 | |
|  /*  70 */ "expr ::= DOLLAR ID COLON ID",
 | |
|  /*  71 */ "expr ::= expr MATH value",
 | |
|  /*  72 */ "expr ::= expr UNIMATH value",
 | |
|  /*  73 */ "expr ::= expr ANDSYM value",
 | |
|  /*  74 */ "expr ::= array",
 | |
|  /*  75 */ "expr ::= expr modifier modparameters",
 | |
|  /*  76 */ "expr ::= expr ifcond expr",
 | |
|  /*  77 */ "expr ::= expr ISIN array",
 | |
|  /*  78 */ "expr ::= expr ISIN value",
 | |
|  /*  79 */ "expr ::= expr lop expr",
 | |
|  /*  80 */ "expr ::= expr ISDIVBY expr",
 | |
|  /*  81 */ "expr ::= expr ISNOTDIVBY expr",
 | |
|  /*  82 */ "expr ::= expr ISEVEN",
 | |
|  /*  83 */ "expr ::= expr ISNOTEVEN",
 | |
|  /*  84 */ "expr ::= expr ISEVENBY expr",
 | |
|  /*  85 */ "expr ::= expr ISNOTEVENBY expr",
 | |
|  /*  86 */ "expr ::= expr ISODD",
 | |
|  /*  87 */ "expr ::= expr ISNOTODD",
 | |
|  /*  88 */ "expr ::= expr ISODDBY expr",
 | |
|  /*  89 */ "expr ::= expr ISNOTODDBY expr",
 | |
|  /*  90 */ "expr ::= value INSTANCEOF ID",
 | |
|  /*  91 */ "expr ::= value INSTANCEOF value",
 | |
|  /*  92 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr",
 | |
|  /*  93 */ "value ::= variable",
 | |
|  /*  94 */ "value ::= UNIMATH value",
 | |
|  /*  95 */ "value ::= NOT value",
 | |
|  /*  96 */ "value ::= TYPECAST value",
 | |
|  /*  97 */ "value ::= variable INCDEC",
 | |
|  /*  98 */ "value ::= INTEGER",
 | |
|  /*  99 */ "value ::= INTEGER DOT INTEGER",
 | |
|  /* 100 */ "value ::= BOOLEAN",
 | |
|  /* 101 */ "value ::= NULL",
 | |
|  /* 102 */ "value ::= function",
 | |
|  /* 103 */ "value ::= OPENP expr CLOSEP",
 | |
|  /* 104 */ "value ::= SINGLEQUOTESTRING",
 | |
|  /* 105 */ "value ::= doublequoted_with_quotes",
 | |
|  /* 106 */ "value ::= ID DOUBLECOLON static_class_access",
 | |
|  /* 107 */ "value ::= smartytag",
 | |
|  /* 108 */ "variable ::= varindexed",
 | |
|  /* 109 */ "variable ::= DOLLAR varvar AT ID",
 | |
|  /* 110 */ "variable ::= object",
 | |
|  /* 111 */ "variable ::= HATCH ID HATCH",
 | |
|  /* 112 */ "variable ::= HATCH variable HATCH",
 | |
|  /* 113 */ "varindexed ::= DOLLAR varvar arrayindex",
 | |
|  /* 114 */ "arrayindex ::= arrayindex indexdef",
 | |
|  /* 115 */ "arrayindex ::=",
 | |
|  /* 116 */ "indexdef ::= DOT DOLLAR varvar",
 | |
|  /* 117 */ "indexdef ::= DOT DOLLAR varvar AT ID",
 | |
|  /* 118 */ "indexdef ::= DOT ID",
 | |
|  /* 119 */ "indexdef ::= DOT BOOLEAN",
 | |
|  /* 120 */ "indexdef ::= DOT NULL",
 | |
|  /* 121 */ "indexdef ::= DOT INTEGER",
 | |
|  /* 122 */ "indexdef ::= DOT LDEL expr RDEL",
 | |
|  /* 123 */ "indexdef ::= OPENB ID CLOSEB",
 | |
|  /* 124 */ "indexdef ::= OPENB ID DOT ID CLOSEB",
 | |
|  /* 125 */ "indexdef ::= OPENB expr CLOSEB",
 | |
|  /* 126 */ "indexdef ::= OPENB CLOSEB",
 | |
|  /* 127 */ "varvar ::= varvarele",
 | |
|  /* 128 */ "varvar ::= varvar varvarele",
 | |
|  /* 129 */ "varvarele ::= ID",
 | |
|  /* 130 */ "varvarele ::= LDEL expr RDEL",
 | |
|  /* 131 */ "object ::= varindexed objectchain",
 | |
|  /* 132 */ "object ::= varindexed DOUBLECOLON ID",
 | |
|  /* 133 */ "objectchain ::= objectelement",
 | |
|  /* 134 */ "objectchain ::= objectchain objectelement",
 | |
|  /* 135 */ "objectelement ::= PTR ID arrayindex",
 | |
|  /* 136 */ "objectelement ::= PTR variable arrayindex",
 | |
|  /* 137 */ "objectelement ::= PTR LDEL expr RDEL arrayindex",
 | |
|  /* 138 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex",
 | |
|  /* 139 */ "objectelement ::= PTR method",
 | |
|  /* 140 */ "function ::= ID OPENP params CLOSEP",
 | |
|  /* 141 */ "method ::= ID OPENP params CLOSEP",
 | |
|  /* 142 */ "params ::= expr COMMA params",
 | |
|  /* 143 */ "params ::= expr",
 | |
|  /* 144 */ "params ::=",
 | |
|  /* 145 */ "modifier ::= VERT AT ID",
 | |
|  /* 146 */ "modifier ::= VERT ID",
 | |
|  /* 147 */ "static_class_access ::= method",
 | |
|  /* 148 */ "static_class_access ::= DOLLAR ID OPENP params CLOSEP",
 | |
|  /* 149 */ "static_class_access ::= method objectchain",
 | |
|  /* 150 */ "static_class_access ::= DOLLAR ID OPENP params CLOSEP objectchain",
 | |
|  /* 151 */ "static_class_access ::= ID",
 | |
|  /* 152 */ "static_class_access ::= DOLLAR ID arrayindex",
 | |
|  /* 153 */ "static_class_access ::= DOLLAR ID arrayindex objectchain",
 | |
|  /* 154 */ "modparameters ::= modparameters modparameter",
 | |
|  /* 155 */ "modparameters ::=",
 | |
|  /* 156 */ "modparameter ::= COLON value",
 | |
|  /* 157 */ "modparameter ::= COLON ID",
 | |
|  /* 158 */ "ifcond ::= EQUALS",
 | |
|  /* 159 */ "ifcond ::= NOTEQUALS",
 | |
|  /* 160 */ "ifcond ::= GREATERTHAN",
 | |
|  /* 161 */ "ifcond ::= LESSTHAN",
 | |
|  /* 162 */ "ifcond ::= GREATEREQUAL",
 | |
|  /* 163 */ "ifcond ::= LESSEQUAL",
 | |
|  /* 164 */ "ifcond ::= IDENTITY",
 | |
|  /* 165 */ "ifcond ::= NONEIDENTITY",
 | |
|  /* 166 */ "ifcond ::= MOD",
 | |
|  /* 167 */ "lop ::= LAND",
 | |
|  /* 168 */ "lop ::= LOR",
 | |
|  /* 169 */ "lop ::= LXOR",
 | |
|  /* 170 */ "array ::= OPENB arrayelements CLOSEB",
 | |
|  /* 171 */ "arrayelements ::= arrayelement",
 | |
|  /* 172 */ "arrayelements ::= arrayelements COMMA arrayelement",
 | |
|  /* 173 */ "arrayelements ::=",
 | |
|  /* 174 */ "arrayelement ::= value APTR expr",
 | |
|  /* 175 */ "arrayelement ::= ID APTR expr",
 | |
|  /* 176 */ "arrayelement ::= expr",
 | |
|  /* 177 */ "doublequoted_with_quotes ::= QUOTE QUOTE",
 | |
|  /* 178 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE",
 | |
|  /* 179 */ "doublequoted ::= doublequoted doublequotedcontent",
 | |
|  /* 180 */ "doublequoted ::= doublequotedcontent",
 | |
|  /* 181 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",
 | |
|  /* 182 */ "doublequotedcontent ::= BACKTICK expr BACKTICK",
 | |
|  /* 183 */ "doublequotedcontent ::= DOLLARID",
 | |
|  /* 184 */ "doublequotedcontent ::= LDEL variable RDEL",
 | |
|  /* 185 */ "doublequotedcontent ::= LDEL expr RDEL",
 | |
|  /* 186 */ "doublequotedcontent ::= smartytag",
 | |
|  /* 187 */ "doublequotedcontent ::= OTHER",
 | |
|  /* 188 */ "optspace ::= SPACE",
 | |
|  /* 189 */ "optspace ::=",
 | |
|     );
 | |
| 
 | |
|     function tokenName($tokenType)
 | |
|     {
 | |
|         if ($tokenType === 0) {
 | |
|             return 'End of Input';
 | |
|         }
 | |
|         if ($tokenType > 0 && $tokenType < count($this->yyTokenName)) {
 | |
|             return $this->yyTokenName[$tokenType];
 | |
|         } else {
 | |
|             return "Unknown";
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     static function yy_destructor($yymajor, $yypminor)
 | |
|     {
 | |
|         switch ($yymajor) {
 | |
|             default:  break;   /* If no destructor action specified: do nothing */
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function yy_pop_parser_stack()
 | |
|     {
 | |
|         if (!count($this->yystack)) {
 | |
|             return;
 | |
|         }
 | |
|         $yytos = array_pop($this->yystack);
 | |
|         if (self::$yyTraceFILE && $this->yyidx >= 0) {
 | |
|             fwrite(self::$yyTraceFILE,
 | |
|                 self::$yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] .
 | |
|                     "\n");
 | |
|         }
 | |
|         $yymajor = $yytos->major;
 | |
|         self::yy_destructor($yymajor, $yytos->minor);
 | |
|         $this->yyidx--;
 | |
|         return $yymajor;
 | |
|     }
 | |
| 
 | |
|     function __destruct()
 | |
|     {
 | |
|         while ($this->yyidx >= 0) {
 | |
|             $this->yy_pop_parser_stack();
 | |
|         }
 | |
|         if (is_resource(self::$yyTraceFILE)) {
 | |
|             fclose(self::$yyTraceFILE);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function yy_get_expected_tokens($token)
 | |
|     {
 | |
|         $state = $this->yystack[$this->yyidx]->stateno;
 | |
|         $expected = self::$yyExpectedTokens[$state];
 | |
|         if (in_array($token, self::$yyExpectedTokens[$state], true)) {
 | |
|             return $expected;
 | |
|         }
 | |
|         $stack = $this->yystack;
 | |
|         $yyidx = $this->yyidx;
 | |
|         do {
 | |
|             $yyact = $this->yy_find_shift_action($token);
 | |
|             if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) {
 | |
|                 // reduce action
 | |
|                 $done = 0;
 | |
|                 do {
 | |
|                     if ($done++ == 100) {
 | |
|                         $this->yyidx = $yyidx;
 | |
|                         $this->yystack = $stack;
 | |
|                         // too much recursion prevents proper detection
 | |
|                         // so give up
 | |
|                         return array_unique($expected);
 | |
|                     }
 | |
|                     $yyruleno = $yyact - self::YYNSTATE;
 | |
|                     $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs'];
 | |
|                     $nextstate = $this->yy_find_reduce_action(
 | |
|                         $this->yystack[$this->yyidx]->stateno,
 | |
|                         self::$yyRuleInfo[$yyruleno]['lhs']);
 | |
|                     if (isset(self::$yyExpectedTokens[$nextstate])) {
 | |
|                         $expected += self::$yyExpectedTokens[$nextstate];
 | |
|                             if (in_array($token,
 | |
|                                   self::$yyExpectedTokens[$nextstate], true)) {
 | |
|                             $this->yyidx = $yyidx;
 | |
|                             $this->yystack = $stack;
 | |
|                             return array_unique($expected);
 | |
|                         }
 | |
|                     }
 | |
|                     if ($nextstate < self::YYNSTATE) {
 | |
|                         // we need to shift a non-terminal
 | |
|                         $this->yyidx++;
 | |
|                         $x = new TP_yyStackEntry;
 | |
|                         $x->stateno = $nextstate;
 | |
|                         $x->major = self::$yyRuleInfo[$yyruleno]['lhs'];
 | |
|                         $this->yystack[$this->yyidx] = $x;
 | |
|                         continue 2;
 | |
|                     } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) {
 | |
|                         $this->yyidx = $yyidx;
 | |
|                         $this->yystack = $stack;
 | |
|                         // the last token was just ignored, we can't accept
 | |
|                         // by ignoring input, this is in essence ignoring a
 | |
|                         // syntax error!
 | |
|                         return array_unique($expected);
 | |
|                     } elseif ($nextstate === self::YY_NO_ACTION) {
 | |
|                         $this->yyidx = $yyidx;
 | |
|                         $this->yystack = $stack;
 | |
|                         // input accepted, but not shifted (I guess)
 | |
|                         return $expected;
 | |
|                     } else {
 | |
|                         $yyact = $nextstate;
 | |
|                     }
 | |
|                 } while (true);
 | |
|             }
 | |
|             break;
 | |
|         } while (true);
 | |
|         return array_unique($expected);
 | |
|     }
 | |
| 
 | |
|     function yy_is_expected_token($token)
 | |
|     {
 | |
|         if ($token === 0) {
 | |
|             return true; // 0 is not part of this
 | |
|         }
 | |
|         $state = $this->yystack[$this->yyidx]->stateno;
 | |
|         if (in_array($token, self::$yyExpectedTokens[$state], true)) {
 | |
|             return true;
 | |
|         }
 | |
|         $stack = $this->yystack;
 | |
|         $yyidx = $this->yyidx;
 | |
|         do {
 | |
|             $yyact = $this->yy_find_shift_action($token);
 | |
|             if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) {
 | |
|                 // reduce action
 | |
|                 $done = 0;
 | |
|                 do {
 | |
|                     if ($done++ == 100) {
 | |
|                         $this->yyidx = $yyidx;
 | |
|                         $this->yystack = $stack;
 | |
|                         // too much recursion prevents proper detection
 | |
|                         // so give up
 | |
|                         return true;
 | |
|                     }
 | |
|                     $yyruleno = $yyact - self::YYNSTATE;
 | |
|                     $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs'];
 | |
|                     $nextstate = $this->yy_find_reduce_action(
 | |
|                         $this->yystack[$this->yyidx]->stateno,
 | |
|                         self::$yyRuleInfo[$yyruleno]['lhs']);
 | |
|                     if (isset(self::$yyExpectedTokens[$nextstate]) &&
 | |
|                           in_array($token, self::$yyExpectedTokens[$nextstate], true)) {
 | |
|                         $this->yyidx = $yyidx;
 | |
|                         $this->yystack = $stack;
 | |
|                         return true;
 | |
|                     }
 | |
|                     if ($nextstate < self::YYNSTATE) {
 | |
|                         // we need to shift a non-terminal
 | |
|                         $this->yyidx++;
 | |
|                         $x = new TP_yyStackEntry;
 | |
|                         $x->stateno = $nextstate;
 | |
|                         $x->major = self::$yyRuleInfo[$yyruleno]['lhs'];
 | |
|                         $this->yystack[$this->yyidx] = $x;
 | |
|                         continue 2;
 | |
|                     } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) {
 | |
|                         $this->yyidx = $yyidx;
 | |
|                         $this->yystack = $stack;
 | |
|                         if (!$token) {
 | |
|                             // end of input: this is valid
 | |
|                             return true;
 | |
|                         }
 | |
|                         // the last token was just ignored, we can't accept
 | |
|                         // by ignoring input, this is in essence ignoring a
 | |
|                         // syntax error!
 | |
|                         return false;
 | |
|                     } elseif ($nextstate === self::YY_NO_ACTION) {
 | |
|                         $this->yyidx = $yyidx;
 | |
|                         $this->yystack = $stack;
 | |
|                         // input accepted, but not shifted (I guess)
 | |
|                         return true;
 | |
|                     } else {
 | |
|                         $yyact = $nextstate;
 | |
|                     }
 | |
|                 } while (true);
 | |
|             }
 | |
|             break;
 | |
|         } while (true);
 | |
|         $this->yyidx = $yyidx;
 | |
|         $this->yystack = $stack;
 | |
|         return true;
 | |
|     }
 | |
| 
 | |
|    function yy_find_shift_action($iLookAhead)
 | |
|     {
 | |
|         $stateno = $this->yystack[$this->yyidx]->stateno;
 | |
|      
 | |
|         /* if ($this->yyidx < 0) return self::YY_NO_ACTION;  */
 | |
|         if (!isset(self::$yy_shift_ofst[$stateno])) {
 | |
|             // no shift actions
 | |
|             return self::$yy_default[$stateno];
 | |
|         }
 | |
|         $i = self::$yy_shift_ofst[$stateno];
 | |
|         if ($i === self::YY_SHIFT_USE_DFLT) {
 | |
|             return self::$yy_default[$stateno];
 | |
|         }
 | |
|         if ($iLookAhead == self::YYNOCODE) {
 | |
|             return self::YY_NO_ACTION;
 | |
|         }
 | |
|         $i += $iLookAhead;
 | |
|         if ($i < 0 || $i >= self::YY_SZ_ACTTAB ||
 | |
|               self::$yy_lookahead[$i] != $iLookAhead) {
 | |
|             if (count(self::$yyFallback) && $iLookAhead < count(self::$yyFallback)
 | |
|                    && ($iFallback = self::$yyFallback[$iLookAhead]) != 0) {
 | |
|                 if (self::$yyTraceFILE) {
 | |
|                     fwrite(self::$yyTraceFILE, self::$yyTracePrompt . "FALLBACK " .
 | |
|                         $this->yyTokenName[$iLookAhead] . " => " .
 | |
|                         $this->yyTokenName[$iFallback] . "\n");
 | |
|                 }
 | |
|                 return $this->yy_find_shift_action($iFallback);
 | |
|             }
 | |
|             return self::$yy_default[$stateno];
 | |
|         } else {
 | |
|             return self::$yy_action[$i];
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function yy_find_reduce_action($stateno, $iLookAhead)
 | |
|     {
 | |
|         /* $stateno = $this->yystack[$this->yyidx]->stateno; */
 | |
| 
 | |
|         if (!isset(self::$yy_reduce_ofst[$stateno])) {
 | |
|             return self::$yy_default[$stateno];
 | |
|         }
 | |
|         $i = self::$yy_reduce_ofst[$stateno];
 | |
|         if ($i == self::YY_REDUCE_USE_DFLT) {
 | |
|             return self::$yy_default[$stateno];
 | |
|         }
 | |
|         if ($iLookAhead == self::YYNOCODE) {
 | |
|             return self::YY_NO_ACTION;
 | |
|         }
 | |
|         $i += $iLookAhead;
 | |
|         if ($i < 0 || $i >= self::YY_SZ_ACTTAB ||
 | |
|               self::$yy_lookahead[$i] != $iLookAhead) {
 | |
|             return self::$yy_default[$stateno];
 | |
|         } else {
 | |
|             return self::$yy_action[$i];
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function yy_shift($yyNewState, $yyMajor, $yypMinor)
 | |
|     {
 | |
|         $this->yyidx++;
 | |
|         if ($this->yyidx >= self::YYSTACKDEPTH) {
 | |
|             $this->yyidx--;
 | |
|             if (self::$yyTraceFILE) {
 | |
|                 fprintf(self::$yyTraceFILE, "%sStack Overflow!\n", self::$yyTracePrompt);
 | |
|             }
 | |
|             while ($this->yyidx >= 0) {
 | |
|                 $this->yy_pop_parser_stack();
 | |
|             }
 | |
|             return;
 | |
|         }
 | |
|         $yytos = new TP_yyStackEntry;
 | |
|         $yytos->stateno = $yyNewState;
 | |
|         $yytos->major = $yyMajor;
 | |
|         $yytos->minor = $yypMinor;
 | |
|         array_push($this->yystack, $yytos);
 | |
|         if (self::$yyTraceFILE && $this->yyidx > 0) {
 | |
|             fprintf(self::$yyTraceFILE, "%sShift %d\n", self::$yyTracePrompt,
 | |
|                 $yyNewState);
 | |
|             fprintf(self::$yyTraceFILE, "%sStack:", self::$yyTracePrompt);
 | |
|             for($i = 1; $i <= $this->yyidx; $i++) {
 | |
|                 fprintf(self::$yyTraceFILE, " %s",
 | |
|                     $this->yyTokenName[$this->yystack[$i]->major]);
 | |
|             }
 | |
|             fwrite(self::$yyTraceFILE,"\n");
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     static public $yyRuleInfo = array(
 | |
|   array( 'lhs' => 76, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 77, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 77, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 78, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 80, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 80, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 81, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 81, 'rhs' => 0 ),
 | |
|   array( 'lhs' => 82, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 82, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 82, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 82, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 82, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 7 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 7 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 8 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 5 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 5 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 13 ),
 | |
|   array( 'lhs' => 95, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 95, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 8 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 9 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 8 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 11 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 8 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 11 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 97, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 97, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 97, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 79, 'rhs' => 5 ),
 | |
|   array( 'lhs' => 84, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 84, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 84, 'rhs' => 0 ),
 | |
|   array( 'lhs' => 98, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 98, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 98, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 98, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 98, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 98, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 92, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 92, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 91, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 86, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 87, 'rhs' => 7 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 83, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 85, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 85, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 85, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 85, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 85, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 88, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 105, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 105, 'rhs' => 0 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 5 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 5 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 106, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 94, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 94, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 107, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 107, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 104, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 104, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 108, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 108, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 109, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 109, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 109, 'rhs' => 5 ),
 | |
|   array( 'lhs' => 109, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 109, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 101, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 110, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 111, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 111, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 111, 'rhs' => 0 ),
 | |
|   array( 'lhs' => 89, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 89, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 103, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 103, 'rhs' => 5 ),
 | |
|   array( 'lhs' => 103, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 103, 'rhs' => 6 ),
 | |
|   array( 'lhs' => 103, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 103, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 103, 'rhs' => 4 ),
 | |
|   array( 'lhs' => 90, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 90, 'rhs' => 0 ),
 | |
|   array( 'lhs' => 112, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 112, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 99, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 100, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 100, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 100, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 96, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 113, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 113, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 113, 'rhs' => 0 ),
 | |
|   array( 'lhs' => 114, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 114, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 114, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 102, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 102, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 115, 'rhs' => 2 ),
 | |
|   array( 'lhs' => 115, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 116, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 116, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 116, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 116, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 116, 'rhs' => 3 ),
 | |
|   array( 'lhs' => 116, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 116, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 93, 'rhs' => 1 ),
 | |
|   array( 'lhs' => 93, 'rhs' => 0 ),
 | |
|     );
 | |
| 
 | |
|     static public $yyReduceMap = array(
 | |
|         0 => 0,
 | |
|         5 => 0,
 | |
|         15 => 0,
 | |
|         16 => 0,
 | |
|         50 => 0,
 | |
|         51 => 0,
 | |
|         52 => 0,
 | |
|         68 => 0,
 | |
|         93 => 0,
 | |
|         98 => 0,
 | |
|         100 => 0,
 | |
|         101 => 0,
 | |
|         102 => 0,
 | |
|         104 => 0,
 | |
|         105 => 0,
 | |
|         110 => 0,
 | |
|         147 => 0,
 | |
|         171 => 0,
 | |
|         1 => 1,
 | |
|         2 => 2,
 | |
|         3 => 3,
 | |
|         4 => 4,
 | |
|         6 => 6,
 | |
|         7 => 7,
 | |
|         8 => 8,
 | |
|         9 => 9,
 | |
|         10 => 10,
 | |
|         11 => 11,
 | |
|         14 => 11,
 | |
|         12 => 12,
 | |
|         13 => 13,
 | |
|         94 => 13,
 | |
|         96 => 13,
 | |
|         97 => 13,
 | |
|         149 => 13,
 | |
|         17 => 17,
 | |
|         18 => 17,
 | |
|         19 => 19,
 | |
|         20 => 20,
 | |
|         21 => 21,
 | |
|         22 => 21,
 | |
|         23 => 21,
 | |
|         24 => 21,
 | |
|         25 => 25,
 | |
|         26 => 25,
 | |
|         27 => 27,
 | |
|         28 => 27,
 | |
|         29 => 29,
 | |
|         30 => 29,
 | |
|         31 => 31,
 | |
|         32 => 31,
 | |
|         33 => 33,
 | |
|         34 => 34,
 | |
|         35 => 35,
 | |
|         36 => 36,
 | |
|         37 => 37,
 | |
|         38 => 37,
 | |
|         39 => 39,
 | |
|         40 => 40,
 | |
|         41 => 41,
 | |
|         57 => 41,
 | |
|         143 => 41,
 | |
|         151 => 41,
 | |
|         176 => 41,
 | |
|         42 => 42,
 | |
|         43 => 43,
 | |
|         44 => 44,
 | |
|         45 => 45,
 | |
|         46 => 46,
 | |
|         47 => 47,
 | |
|         48 => 48,
 | |
|         49 => 48,
 | |
|         53 => 53,
 | |
|         54 => 54,
 | |
|         55 => 55,
 | |
|         56 => 56,
 | |
|         58 => 58,
 | |
|         59 => 59,
 | |
|         60 => 60,
 | |
|         61 => 60,
 | |
|         62 => 60,
 | |
|         64 => 60,
 | |
|         63 => 63,
 | |
|         65 => 65,
 | |
|         66 => 66,
 | |
|         67 => 67,
 | |
|         69 => 69,
 | |
|         70 => 70,
 | |
|         71 => 71,
 | |
|         72 => 71,
 | |
|         73 => 71,
 | |
|         74 => 74,
 | |
|         127 => 74,
 | |
|         188 => 74,
 | |
|         75 => 75,
 | |
|         76 => 76,
 | |
|         79 => 76,
 | |
|         90 => 76,
 | |
|         77 => 77,
 | |
|         78 => 78,
 | |
|         80 => 80,
 | |
|         81 => 81,
 | |
|         82 => 82,
 | |
|         87 => 82,
 | |
|         83 => 83,
 | |
|         86 => 83,
 | |
|         84 => 84,
 | |
|         89 => 84,
 | |
|         85 => 85,
 | |
|         88 => 85,
 | |
|         91 => 91,
 | |
|         92 => 92,
 | |
|         95 => 95,
 | |
|         99 => 99,
 | |
|         103 => 103,
 | |
|         106 => 106,
 | |
|         107 => 107,
 | |
|         108 => 108,
 | |
|         109 => 109,
 | |
|         111 => 111,
 | |
|         112 => 112,
 | |
|         113 => 113,
 | |
|         114 => 114,
 | |
|         115 => 115,
 | |
|         155 => 115,
 | |
|         116 => 116,
 | |
|         117 => 117,
 | |
|         118 => 118,
 | |
|         119 => 118,
 | |
|         120 => 118,
 | |
|         121 => 121,
 | |
|         122 => 122,
 | |
|         125 => 122,
 | |
|         123 => 123,
 | |
|         124 => 124,
 | |
|         126 => 126,
 | |
|         189 => 126,
 | |
|         128 => 128,
 | |
|         129 => 129,
 | |
|         130 => 130,
 | |
|         131 => 131,
 | |
|         132 => 132,
 | |
|         133 => 133,
 | |
|         134 => 134,
 | |
|         135 => 135,
 | |
|         136 => 136,
 | |
|         137 => 137,
 | |
|         138 => 138,
 | |
|         139 => 139,
 | |
|         140 => 140,
 | |
|         141 => 141,
 | |
|         142 => 142,
 | |
|         144 => 144,
 | |
|         145 => 145,
 | |
|         146 => 145,
 | |
|         148 => 148,
 | |
|         150 => 150,
 | |
|         152 => 152,
 | |
|         153 => 153,
 | |
|         154 => 154,
 | |
|         156 => 156,
 | |
|         157 => 157,
 | |
|         158 => 158,
 | |
|         159 => 159,
 | |
|         160 => 160,
 | |
|         161 => 161,
 | |
|         162 => 162,
 | |
|         163 => 163,
 | |
|         164 => 164,
 | |
|         165 => 165,
 | |
|         166 => 166,
 | |
|         167 => 167,
 | |
|         168 => 168,
 | |
|         169 => 169,
 | |
|         170 => 170,
 | |
|         172 => 172,
 | |
|         173 => 173,
 | |
|         174 => 174,
 | |
|         175 => 175,
 | |
|         177 => 177,
 | |
|         178 => 178,
 | |
|         179 => 179,
 | |
|         180 => 180,
 | |
|         181 => 181,
 | |
|         182 => 181,
 | |
|         184 => 181,
 | |
|         183 => 183,
 | |
|         185 => 185,
 | |
|         186 => 186,
 | |
|         187 => 187,
 | |
|     );
 | |
| #line 85 "smarty_internal_templateparser.y"
 | |
|     function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 1936 "smarty_internal_templateparser.php"
 | |
| #line 91 "smarty_internal_templateparser.y"
 | |
|     function yy_r1(){if ($this->template->extract_code == false) {
 | |
|                                                   $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;
 | |
|                                                } else {
 | |
|                                                  // store code in extract buffer
 | |
|                                                   $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor;
 | |
|                                                } 
 | |
|                                                  }
 | |
| #line 1945 "smarty_internal_templateparser.php"
 | |
| #line 99 "smarty_internal_templateparser.y"
 | |
|     function yy_r2(){if ($this->template->extract_code == false) {
 | |
|                                                              $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
 | |
|                                                            } else {
 | |
|                                                              // store code in extract buffer
 | |
|                                                              $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor;
 | |
|                                                              $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;
 | |
|                                                            } 
 | |
|                                                               }
 | |
| #line 1955 "smarty_internal_templateparser.php"
 | |
| #line 112 "smarty_internal_templateparser.y"
 | |
|     function yy_r3(){
 | |
|                                           if ($this->compiler->has_code) {
 | |
|                                             $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array();
 | |
|                                             $this->_retvalue = $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true);
 | |
|                                          } else { 
 | |
|                                            $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;
 | |
|                                          }  
 | |
|                                          $this->compiler->has_variable_string = false;
 | |
|                                          $this->block_nesting_level = count($this->compiler->_tag_stack);
 | |
|                                             }
 | |
| #line 1967 "smarty_internal_templateparser.php"
 | |
| #line 124 "smarty_internal_templateparser.y"
 | |
|     function yy_r4(){ $this->_retvalue = '';    }
 | |
| #line 1970 "smarty_internal_templateparser.php"
 | |
| #line 130 "smarty_internal_templateparser.y"
 | |
|     function yy_r6(){
 | |
|                                       if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
 | |
| 					                             $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor);
 | |
|                                       } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
 | |
|                                        $this->_retvalue = $this->compiler->processNocacheCode(htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES),false);
 | |
|                                       }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) {
 | |
|                                        $this->_retvalue = $this->compiler->processNocacheCode('<?php', true);
 | |
|                                       }elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) {
 | |
|                                        $this->_retvalue = '';
 | |
|                                       }
 | |
|                                          }
 | |
| #line 1983 "smarty_internal_templateparser.php"
 | |
| #line 142 "smarty_internal_templateparser.y"
 | |
|     function yy_r7(){if ($this->is_xml) {
 | |
|                                        $this->compiler->tag_nocache = true; 
 | |
|                                        $this->is_xml = true; 
 | |
|                                        $this->_retvalue = $this->compiler->processNocacheCode("<?php echo '?>';?>", $this->compiler, true);
 | |
|                                       }elseif ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
 | |
| 					                             $this->_retvalue = '?<??>>';
 | |
|                                       } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
 | |
|                                        $this->_retvalue = $this->compiler->processNocacheCode(htmlspecialchars('?>', ENT_QUOTES), false);
 | |
|                                       }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) {
 | |
|                                        $this->_retvalue = $this->compiler->processNocacheCode('?>', true);
 | |
|                                       }elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) {
 | |
|                                        $this->_retvalue = '';
 | |
|                                       }
 | |
|                                          }
 | |
| #line 1999 "smarty_internal_templateparser.php"
 | |
| #line 157 "smarty_internal_templateparser.y"
 | |
|     function yy_r8(){if ($this->lex->strip) {
 | |
|                                        $this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));	
 | |
|                                      } else {
 | |
|                                        $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor);	
 | |
|                                      }
 | |
|                                         }
 | |
| #line 2007 "smarty_internal_templateparser.php"
 | |
| #line 165 "smarty_internal_templateparser.y"
 | |
|     function yy_r9(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = $this->compiler->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true);    }
 | |
| #line 2010 "smarty_internal_templateparser.php"
 | |
| #line 168 "smarty_internal_templateparser.y"
 | |
|     function yy_r10(){if ($this->lex->strip) {
 | |
|                                        $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor);	
 | |
|                                      } else {
 | |
|                                        $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;	
 | |
|                                      }
 | |
|                                         }
 | |
| #line 2018 "smarty_internal_templateparser.php"
 | |
| #line 176 "smarty_internal_templateparser.y"
 | |
|     function yy_r11(){ $this->_retvalue = '';     }
 | |
| #line 2021 "smarty_internal_templateparser.php"
 | |
| #line 177 "smarty_internal_templateparser.y"
 | |
|     function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;     }
 | |
| #line 2024 "smarty_internal_templateparser.php"
 | |
| #line 179 "smarty_internal_templateparser.y"
 | |
|     function yy_r13(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2027 "smarty_internal_templateparser.php"
 | |
| #line 184 "smarty_internal_templateparser.y"
 | |
|     function yy_r17(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor);     }
 | |
| #line 2030 "smarty_internal_templateparser.php"
 | |
| #line 186 "smarty_internal_templateparser.y"
 | |
|     function yy_r19(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor);     }
 | |
| #line 2033 "smarty_internal_templateparser.php"
 | |
| #line 194 "smarty_internal_templateparser.y"
 | |
|     function yy_r20(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2036 "smarty_internal_templateparser.php"
 | |
| #line 195 "smarty_internal_templateparser.y"
 | |
|     function yy_r21(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2039 "smarty_internal_templateparser.php"
 | |
| #line 206 "smarty_internal_templateparser.y"
 | |
|     function yy_r25(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'"));    }
 | |
| #line 2042 "smarty_internal_templateparser.php"
 | |
| #line 208 "smarty_internal_templateparser.y"
 | |
|     function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2045 "smarty_internal_templateparser.php"
 | |
| #line 210 "smarty_internal_templateparser.y"
 | |
|     function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2048 "smarty_internal_templateparser.php"
 | |
| #line 213 "smarty_internal_templateparser.y"
 | |
|     function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor);    }
 | |
| #line 2051 "smarty_internal_templateparser.php"
 | |
| #line 215 "smarty_internal_templateparser.y"
 | |
|     function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array());    }
 | |
| #line 2054 "smarty_internal_templateparser.php"
 | |
| #line 217 "smarty_internal_templateparser.y"
 | |
|     function yy_r34(){ $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 2057 "smarty_internal_templateparser.php"
 | |
| #line 219 "smarty_internal_templateparser.y"
 | |
|     function yy_r35(){  $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
 | |
|                                                                                     $this->_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 2062 "smarty_internal_templateparser.php"
 | |
| #line 223 "smarty_internal_templateparser.y"
 | |
|     function yy_r36(){  $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'<?php echo ';
 | |
|                                                                                                $this->_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 2067 "smarty_internal_templateparser.php"
 | |
| #line 227 "smarty_internal_templateparser.y"
 | |
|     function yy_r37(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2070 "smarty_internal_templateparser.php"
 | |
| #line 230 "smarty_internal_templateparser.y"
 | |
|     function yy_r39(){
 | |
|                                                              $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2074 "smarty_internal_templateparser.php"
 | |
| #line 233 "smarty_internal_templateparser.y"
 | |
|     function yy_r40(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2077 "smarty_internal_templateparser.php"
 | |
| #line 234 "smarty_internal_templateparser.y"
 | |
|     function yy_r41(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2080 "smarty_internal_templateparser.php"
 | |
| #line 235 "smarty_internal_templateparser.y"
 | |
|     function yy_r42(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2083 "smarty_internal_templateparser.php"
 | |
| #line 236 "smarty_internal_templateparser.y"
 | |
|     function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -7]->minor,array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2086 "smarty_internal_templateparser.php"
 | |
| #line 238 "smarty_internal_templateparser.y"
 | |
|     function yy_r44(){
 | |
|                                                             $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2090 "smarty_internal_templateparser.php"
 | |
| #line 240 "smarty_internal_templateparser.y"
 | |
|     function yy_r45(){
 | |
|                                                             $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor));    }
 | |
| #line 2094 "smarty_internal_templateparser.php"
 | |
| #line 242 "smarty_internal_templateparser.y"
 | |
|     function yy_r46(){ 
 | |
|                                                             $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2098 "smarty_internal_templateparser.php"
 | |
| #line 244 "smarty_internal_templateparser.y"
 | |
|     function yy_r47(){ 
 | |
|                                                             $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor));    }
 | |
| #line 2102 "smarty_internal_templateparser.php"
 | |
| #line 248 "smarty_internal_templateparser.y"
 | |
|     function yy_r48(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array());    }
 | |
| #line 2105 "smarty_internal_templateparser.php"
 | |
| #line 253 "smarty_internal_templateparser.y"
 | |
|     function yy_r53(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor);    }
 | |
| #line 2108 "smarty_internal_templateparser.php"
 | |
| #line 254 "smarty_internal_templateparser.y"
 | |
|     function yy_r54(){  $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
 | |
|                                                                                          $this->_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 2113 "smarty_internal_templateparser.php"
 | |
| #line 258 "smarty_internal_templateparser.y"
 | |
|     function yy_r55(){  $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor));    }
 | |
| #line 2116 "smarty_internal_templateparser.php"
 | |
| #line 265 "smarty_internal_templateparser.y"
 | |
|     function yy_r56(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor);    }
 | |
| #line 2119 "smarty_internal_templateparser.php"
 | |
| #line 269 "smarty_internal_templateparser.y"
 | |
|     function yy_r58(){ $this->_retvalue = array();    }
 | |
| #line 2122 "smarty_internal_templateparser.php"
 | |
| #line 272 "smarty_internal_templateparser.y"
 | |
|     function yy_r59(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'");    }
 | |
| #line 2125 "smarty_internal_templateparser.php"
 | |
| #line 273 "smarty_internal_templateparser.y"
 | |
|     function yy_r60(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor);    }
 | |
| #line 2128 "smarty_internal_templateparser.php"
 | |
| #line 276 "smarty_internal_templateparser.y"
 | |
|     function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true');    }
 | |
| #line 2131 "smarty_internal_templateparser.php"
 | |
| #line 283 "smarty_internal_templateparser.y"
 | |
|     function yy_r65(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor);    }
 | |
| #line 2134 "smarty_internal_templateparser.php"
 | |
| #line 284 "smarty_internal_templateparser.y"
 | |
|     function yy_r66(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor;    }
 | |
| #line 2137 "smarty_internal_templateparser.php"
 | |
| #line 286 "smarty_internal_templateparser.y"
 | |
|     function yy_r67(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor);    }
 | |
| #line 2140 "smarty_internal_templateparser.php"
 | |
| #line 294 "smarty_internal_templateparser.y"
 | |
|     function yy_r69(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'";     }
 | |
| #line 2143 "smarty_internal_templateparser.php"
 | |
| #line 296 "smarty_internal_templateparser.y"
 | |
|     function yy_r70(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')';    }
 | |
| #line 2146 "smarty_internal_templateparser.php"
 | |
| #line 298 "smarty_internal_templateparser.y"
 | |
|     function yy_r71(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2149 "smarty_internal_templateparser.php"
 | |
| #line 304 "smarty_internal_templateparser.y"
 | |
|     function yy_r74(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2152 "smarty_internal_templateparser.php"
 | |
| #line 307 "smarty_internal_templateparser.y"
 | |
|     function yy_r75(){  $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor));     }
 | |
| #line 2155 "smarty_internal_templateparser.php"
 | |
| #line 311 "smarty_internal_templateparser.y"
 | |
|     function yy_r76(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2158 "smarty_internal_templateparser.php"
 | |
| #line 312 "smarty_internal_templateparser.y"
 | |
|     function yy_r77(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')';    }
 | |
| #line 2161 "smarty_internal_templateparser.php"
 | |
| #line 313 "smarty_internal_templateparser.y"
 | |
|     function yy_r78(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')';    }
 | |
| #line 2164 "smarty_internal_templateparser.php"
 | |
| #line 315 "smarty_internal_templateparser.y"
 | |
|     function yy_r80(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')';    }
 | |
| #line 2167 "smarty_internal_templateparser.php"
 | |
| #line 316 "smarty_internal_templateparser.y"
 | |
|     function yy_r81(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')';    }
 | |
| #line 2170 "smarty_internal_templateparser.php"
 | |
| #line 317 "smarty_internal_templateparser.y"
 | |
|     function yy_r82(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')';    }
 | |
| #line 2173 "smarty_internal_templateparser.php"
 | |
| #line 318 "smarty_internal_templateparser.y"
 | |
|     function yy_r83(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')';    }
 | |
| #line 2176 "smarty_internal_templateparser.php"
 | |
| #line 319 "smarty_internal_templateparser.y"
 | |
|     function yy_r84(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')';    }
 | |
| #line 2179 "smarty_internal_templateparser.php"
 | |
| #line 320 "smarty_internal_templateparser.y"
 | |
|     function yy_r85(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')';    }
 | |
| #line 2182 "smarty_internal_templateparser.php"
 | |
| #line 326 "smarty_internal_templateparser.y"
 | |
|     function yy_r91(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number;    }
 | |
| #line 2185 "smarty_internal_templateparser.php"
 | |
| #line 332 "smarty_internal_templateparser.y"
 | |
|     function yy_r92(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2188 "smarty_internal_templateparser.php"
 | |
| #line 339 "smarty_internal_templateparser.y"
 | |
|     function yy_r95(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2191 "smarty_internal_templateparser.php"
 | |
| #line 344 "smarty_internal_templateparser.y"
 | |
|     function yy_r99(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2194 "smarty_internal_templateparser.php"
 | |
| #line 354 "smarty_internal_templateparser.y"
 | |
|     function yy_r103(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")";     }
 | |
| #line 2197 "smarty_internal_templateparser.php"
 | |
| #line 360 "smarty_internal_templateparser.y"
 | |
|     function yy_r106(){if (!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) {
 | |
|                                                                   $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; 
 | |
|                                                                 }    }
 | |
| #line 2202 "smarty_internal_templateparser.php"
 | |
| #line 364 "smarty_internal_templateparser.y"
 | |
|     function yy_r107(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number;     }
 | |
| #line 2205 "smarty_internal_templateparser.php"
 | |
| #line 375 "smarty_internal_templateparser.y"
 | |
|     function yy_r108(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue =  $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);} else {
 | |
|                                                          $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;}    }
 | |
| #line 2209 "smarty_internal_templateparser.php"
 | |
| #line 378 "smarty_internal_templateparser.y"
 | |
|     function yy_r109(){ $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 2212 "smarty_internal_templateparser.php"
 | |
| #line 382 "smarty_internal_templateparser.y"
 | |
|     function yy_r111(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')';    }
 | |
| #line 2215 "smarty_internal_templateparser.php"
 | |
| #line 383 "smarty_internal_templateparser.y"
 | |
|     function yy_r112(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')';    }
 | |
| #line 2218 "smarty_internal_templateparser.php"
 | |
| #line 386 "smarty_internal_templateparser.y"
 | |
|     function yy_r113(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor);    }
 | |
| #line 2221 "smarty_internal_templateparser.php"
 | |
| #line 392 "smarty_internal_templateparser.y"
 | |
|     function yy_r114(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2224 "smarty_internal_templateparser.php"
 | |
| #line 394 "smarty_internal_templateparser.y"
 | |
|     function yy_r115(){return;    }
 | |
| #line 2227 "smarty_internal_templateparser.php"
 | |
| #line 398 "smarty_internal_templateparser.y"
 | |
|     function yy_r116(){ $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 2230 "smarty_internal_templateparser.php"
 | |
| #line 399 "smarty_internal_templateparser.y"
 | |
|     function yy_r117(){ $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 2233 "smarty_internal_templateparser.php"
 | |
| #line 400 "smarty_internal_templateparser.y"
 | |
|     function yy_r118(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']";    }
 | |
| #line 2236 "smarty_internal_templateparser.php"
 | |
| #line 404 "smarty_internal_templateparser.y"
 | |
|     function yy_r121(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]";    }
 | |
| #line 2239 "smarty_internal_templateparser.php"
 | |
| #line 405 "smarty_internal_templateparser.y"
 | |
|     function yy_r122(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]";    }
 | |
| #line 2242 "smarty_internal_templateparser.php"
 | |
| #line 407 "smarty_internal_templateparser.y"
 | |
|     function yy_r123(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']';    }
 | |
| #line 2245 "smarty_internal_templateparser.php"
 | |
| #line 408 "smarty_internal_templateparser.y"
 | |
|     function yy_r124(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']';    }
 | |
| #line 2248 "smarty_internal_templateparser.php"
 | |
| #line 412 "smarty_internal_templateparser.y"
 | |
|     function yy_r126(){$this->_retvalue = '';    }
 | |
| #line 2251 "smarty_internal_templateparser.php"
 | |
| #line 420 "smarty_internal_templateparser.y"
 | |
|     function yy_r128(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2254 "smarty_internal_templateparser.php"
 | |
| #line 422 "smarty_internal_templateparser.y"
 | |
|     function yy_r129(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\'';    }
 | |
| #line 2257 "smarty_internal_templateparser.php"
 | |
| #line 425 "smarty_internal_templateparser.y"
 | |
|     function yy_r130(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')';    }
 | |
| #line 2260 "smarty_internal_templateparser.php"
 | |
| #line 430 "smarty_internal_templateparser.y"
 | |
|     function yy_r131(){ 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 2264 "smarty_internal_templateparser.php"
 | |
| #line 432 "smarty_internal_templateparser.y"
 | |
|     function yy_r132(){ 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 2268 "smarty_internal_templateparser.php"
 | |
| #line 435 "smarty_internal_templateparser.y"
 | |
|     function yy_r133(){$this->_retvalue  = $this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2271 "smarty_internal_templateparser.php"
 | |
| #line 437 "smarty_internal_templateparser.y"
 | |
|     function yy_r134(){$this->_retvalue  = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2274 "smarty_internal_templateparser.php"
 | |
| #line 439 "smarty_internal_templateparser.y"
 | |
|     function yy_r135(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2277 "smarty_internal_templateparser.php"
 | |
| #line 440 "smarty_internal_templateparser.y"
 | |
|     function yy_r136(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}';    }
 | |
| #line 2280 "smarty_internal_templateparser.php"
 | |
| #line 441 "smarty_internal_templateparser.y"
 | |
|     function yy_r137(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}';    }
 | |
| #line 2283 "smarty_internal_templateparser.php"
 | |
| #line 442 "smarty_internal_templateparser.y"
 | |
|     function yy_r138(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}';    }
 | |
| #line 2286 "smarty_internal_templateparser.php"
 | |
| #line 444 "smarty_internal_templateparser.y"
 | |
|     function yy_r139(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2289 "smarty_internal_templateparser.php"
 | |
| #line 450 "smarty_internal_templateparser.y"
 | |
|     function yy_r140(){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 2298 "smarty_internal_templateparser.php"
 | |
| #line 461 "smarty_internal_templateparser.y"
 | |
|     function yy_r141(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")";    }
 | |
| #line 2301 "smarty_internal_templateparser.php"
 | |
| #line 465 "smarty_internal_templateparser.y"
 | |
|     function yy_r142(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2304 "smarty_internal_templateparser.php"
 | |
| #line 469 "smarty_internal_templateparser.y"
 | |
|     function yy_r144(){ return;    }
 | |
| #line 2307 "smarty_internal_templateparser.php"
 | |
| #line 474 "smarty_internal_templateparser.y"
 | |
|     function yy_r145(){ $this->_retvalue =  $this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2310 "smarty_internal_templateparser.php"
 | |
| #line 479 "smarty_internal_templateparser.y"
 | |
|     function yy_r148(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->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 2313 "smarty_internal_templateparser.php"
 | |
| #line 482 "smarty_internal_templateparser.y"
 | |
|     function yy_r150(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2316 "smarty_internal_templateparser.php"
 | |
| #line 486 "smarty_internal_templateparser.y"
 | |
|     function yy_r152(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2319 "smarty_internal_templateparser.php"
 | |
| #line 488 "smarty_internal_templateparser.y"
 | |
|     function yy_r153(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2322 "smarty_internal_templateparser.php"
 | |
| #line 499 "smarty_internal_templateparser.y"
 | |
|     function yy_r154(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2325 "smarty_internal_templateparser.php"
 | |
| #line 503 "smarty_internal_templateparser.y"
 | |
|     function yy_r156(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2328 "smarty_internal_templateparser.php"
 | |
| #line 504 "smarty_internal_templateparser.y"
 | |
|     function yy_r157(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\'';    }
 | |
| #line 2331 "smarty_internal_templateparser.php"
 | |
| #line 507 "smarty_internal_templateparser.y"
 | |
|     function yy_r158(){$this->_retvalue = '==';    }
 | |
| #line 2334 "smarty_internal_templateparser.php"
 | |
| #line 508 "smarty_internal_templateparser.y"
 | |
|     function yy_r159(){$this->_retvalue = '!=';    }
 | |
| #line 2337 "smarty_internal_templateparser.php"
 | |
| #line 509 "smarty_internal_templateparser.y"
 | |
|     function yy_r160(){$this->_retvalue = '>';    }
 | |
| #line 2340 "smarty_internal_templateparser.php"
 | |
| #line 510 "smarty_internal_templateparser.y"
 | |
|     function yy_r161(){$this->_retvalue = '<';    }
 | |
| #line 2343 "smarty_internal_templateparser.php"
 | |
| #line 511 "smarty_internal_templateparser.y"
 | |
|     function yy_r162(){$this->_retvalue = '>=';    }
 | |
| #line 2346 "smarty_internal_templateparser.php"
 | |
| #line 512 "smarty_internal_templateparser.y"
 | |
|     function yy_r163(){$this->_retvalue = '<=';    }
 | |
| #line 2349 "smarty_internal_templateparser.php"
 | |
| #line 513 "smarty_internal_templateparser.y"
 | |
|     function yy_r164(){$this->_retvalue = '===';    }
 | |
| #line 2352 "smarty_internal_templateparser.php"
 | |
| #line 514 "smarty_internal_templateparser.y"
 | |
|     function yy_r165(){$this->_retvalue = '!==';    }
 | |
| #line 2355 "smarty_internal_templateparser.php"
 | |
| #line 515 "smarty_internal_templateparser.y"
 | |
|     function yy_r166(){$this->_retvalue = '%';    }
 | |
| #line 2358 "smarty_internal_templateparser.php"
 | |
| #line 517 "smarty_internal_templateparser.y"
 | |
|     function yy_r167(){$this->_retvalue = '&&';    }
 | |
| #line 2361 "smarty_internal_templateparser.php"
 | |
| #line 518 "smarty_internal_templateparser.y"
 | |
|     function yy_r168(){$this->_retvalue = '||';    }
 | |
| #line 2364 "smarty_internal_templateparser.php"
 | |
| #line 519 "smarty_internal_templateparser.y"
 | |
|     function yy_r169(){$this->_retvalue = ' XOR ';    }
 | |
| #line 2367 "smarty_internal_templateparser.php"
 | |
| #line 524 "smarty_internal_templateparser.y"
 | |
|     function yy_r170(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')';    }
 | |
| #line 2370 "smarty_internal_templateparser.php"
 | |
| #line 526 "smarty_internal_templateparser.y"
 | |
|     function yy_r172(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor;     }
 | |
| #line 2373 "smarty_internal_templateparser.php"
 | |
| #line 527 "smarty_internal_templateparser.y"
 | |
|     function yy_r173(){ return;     }
 | |
| #line 2376 "smarty_internal_templateparser.php"
 | |
| #line 528 "smarty_internal_templateparser.y"
 | |
|     function yy_r174(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2379 "smarty_internal_templateparser.php"
 | |
| #line 529 "smarty_internal_templateparser.y"
 | |
|     function yy_r175(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor;    }
 | |
| #line 2382 "smarty_internal_templateparser.php"
 | |
| #line 536 "smarty_internal_templateparser.y"
 | |
|     function yy_r177(){ $this->_retvalue = "''";     }
 | |
| #line 2385 "smarty_internal_templateparser.php"
 | |
| #line 537 "smarty_internal_templateparser.y"
 | |
|     function yy_r178(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php();     }
 | |
| #line 2388 "smarty_internal_templateparser.php"
 | |
| #line 539 "smarty_internal_templateparser.y"
 | |
|     function yy_r179(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;     }
 | |
| #line 2391 "smarty_internal_templateparser.php"
 | |
| #line 540 "smarty_internal_templateparser.y"
 | |
|     function yy_r180(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor);     }
 | |
| #line 2394 "smarty_internal_templateparser.php"
 | |
| #line 542 "smarty_internal_templateparser.y"
 | |
|     function yy_r181(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor);     }
 | |
| #line 2397 "smarty_internal_templateparser.php"
 | |
| #line 544 "smarty_internal_templateparser.y"
 | |
|     function yy_r183(){
 | |
|    $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 2403 "smarty_internal_templateparser.php"
 | |
| #line 549 "smarty_internal_templateparser.y"
 | |
|     function yy_r185(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')');     }
 | |
| #line 2406 "smarty_internal_templateparser.php"
 | |
| #line 550 "smarty_internal_templateparser.y"
 | |
|     function yy_r186(){
 | |
|    $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);
 | |
|       }
 | |
| #line 2411 "smarty_internal_templateparser.php"
 | |
| #line 553 "smarty_internal_templateparser.y"
 | |
|     function yy_r187(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor);     }
 | |
| #line 2414 "smarty_internal_templateparser.php"
 | |
| 
 | |
|     private $_retvalue;
 | |
| 
 | |
|     function yy_reduce($yyruleno)
 | |
|     {
 | |
|         $yymsp = $this->yystack[$this->yyidx];
 | |
|         if (self::$yyTraceFILE && $yyruleno >= 0 
 | |
|               && $yyruleno < count(self::$yyRuleName)) {
 | |
|             fprintf(self::$yyTraceFILE, "%sReduce (%d) [%s].\n",
 | |
|                 self::$yyTracePrompt, $yyruleno,
 | |
|                 self::$yyRuleName[$yyruleno]);
 | |
|         }
 | |
| 
 | |
|         $this->_retvalue = $yy_lefthand_side = null;
 | |
|         if (array_key_exists($yyruleno, self::$yyReduceMap)) {
 | |
|             // call the action
 | |
|             $this->_retvalue = null;
 | |
|             $this->{'yy_r' . self::$yyReduceMap[$yyruleno]}();
 | |
|             $yy_lefthand_side = $this->_retvalue;
 | |
|         }
 | |
|         $yygoto = self::$yyRuleInfo[$yyruleno]['lhs'];
 | |
|         $yysize = self::$yyRuleInfo[$yyruleno]['rhs'];
 | |
|         $this->yyidx -= $yysize;
 | |
|         for($i = $yysize; $i; $i--) {
 | |
|             // pop all of the right-hand side parameters
 | |
|             array_pop($this->yystack);
 | |
|         }
 | |
|         $yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto);
 | |
|         if ($yyact < self::YYNSTATE) {
 | |
|             if (!self::$yyTraceFILE && $yysize) {
 | |
|                 $this->yyidx++;
 | |
|                 $x = new TP_yyStackEntry;
 | |
|                 $x->stateno = $yyact;
 | |
|                 $x->major = $yygoto;
 | |
|                 $x->minor = $yy_lefthand_side;
 | |
|                 $this->yystack[$this->yyidx] = $x;
 | |
|             } else {
 | |
|                 $this->yy_shift($yyact, $yygoto, $yy_lefthand_side);
 | |
|             }
 | |
|         } elseif ($yyact == self::YYNSTATE + self::YYNRULE + 1) {
 | |
|             $this->yy_accept();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function yy_parse_failed()
 | |
|     {
 | |
|         if (self::$yyTraceFILE) {
 | |
|             fprintf(self::$yyTraceFILE, "%sFail!\n", self::$yyTracePrompt);
 | |
|         }
 | |
|         while ($this->yyidx >= 0) {
 | |
|             $this->yy_pop_parser_stack();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function yy_syntax_error($yymajor, $TOKEN)
 | |
|     {
 | |
| #line 73 "smarty_internal_templateparser.y"
 | |
| 
 | |
|     $this->internalError = true;
 | |
|     $this->yymajor = $yymajor;
 | |
|     $this->compiler->trigger_template_error();
 | |
| #line 2477 "smarty_internal_templateparser.php"
 | |
|     }
 | |
| 
 | |
|     function yy_accept()
 | |
|     {
 | |
|         if (self::$yyTraceFILE) {
 | |
|             fprintf(self::$yyTraceFILE, "%sAccept!\n", self::$yyTracePrompt);
 | |
|         }
 | |
|         while ($this->yyidx >= 0) {
 | |
|             $stack = $this->yy_pop_parser_stack();
 | |
|         }
 | |
| #line 65 "smarty_internal_templateparser.y"
 | |
| 
 | |
|     $this->successful = !$this->internalError;
 | |
|     $this->internalError = false;
 | |
|     $this->retvalue = $this->_retvalue;
 | |
|     //echo $this->retvalue."\n\n";
 | |
| #line 2495 "smarty_internal_templateparser.php"
 | |
|     }
 | |
| 
 | |
|     function doParse($yymajor, $yytokenvalue)
 | |
|     {
 | |
|         $yyerrorhit = 0;   /* True if yymajor has invoked an error */
 | |
|         
 | |
|         if ($this->yyidx === null || $this->yyidx < 0) {
 | |
|             $this->yyidx = 0;
 | |
|             $this->yyerrcnt = -1;
 | |
|             $x = new TP_yyStackEntry;
 | |
|             $x->stateno = 0;
 | |
|             $x->major = 0;
 | |
|             $this->yystack = array();
 | |
|             array_push($this->yystack, $x);
 | |
|         }
 | |
|         $yyendofinput = ($yymajor==0);
 | |
|         
 | |
|         if (self::$yyTraceFILE) {
 | |
|             fprintf(self::$yyTraceFILE, "%sInput %s\n",
 | |
|                 self::$yyTracePrompt, $this->yyTokenName[$yymajor]);
 | |
|         }
 | |
|         
 | |
|         do {
 | |
|             $yyact = $this->yy_find_shift_action($yymajor);
 | |
|             if ($yymajor < self::YYERRORSYMBOL &&
 | |
|                   !$this->yy_is_expected_token($yymajor)) {
 | |
|                 // force a syntax error
 | |
|                 $yyact = self::YY_ERROR_ACTION;
 | |
|             }
 | |
|             if ($yyact < self::YYNSTATE) {
 | |
|                 $this->yy_shift($yyact, $yymajor, $yytokenvalue);
 | |
|                 $this->yyerrcnt--;
 | |
|                 if ($yyendofinput && $this->yyidx >= 0) {
 | |
|                     $yymajor = 0;
 | |
|                 } else {
 | |
|                     $yymajor = self::YYNOCODE;
 | |
|                 }
 | |
|             } elseif ($yyact < self::YYNSTATE + self::YYNRULE) {
 | |
|                 $this->yy_reduce($yyact - self::YYNSTATE);
 | |
|             } elseif ($yyact == self::YY_ERROR_ACTION) {
 | |
|                 if (self::$yyTraceFILE) {
 | |
|                     fprintf(self::$yyTraceFILE, "%sSyntax Error!\n",
 | |
|                         self::$yyTracePrompt);
 | |
|                 }
 | |
|                 if (self::YYERRORSYMBOL) {
 | |
|                     if ($this->yyerrcnt < 0) {
 | |
|                         $this->yy_syntax_error($yymajor, $yytokenvalue);
 | |
|                     }
 | |
|                     $yymx = $this->yystack[$this->yyidx]->major;
 | |
|                     if ($yymx == self::YYERRORSYMBOL || $yyerrorhit ){
 | |
|                         if (self::$yyTraceFILE) {
 | |
|                             fprintf(self::$yyTraceFILE, "%sDiscard input token %s\n",
 | |
|                                 self::$yyTracePrompt, $this->yyTokenName[$yymajor]);
 | |
|                         }
 | |
|                         $this->yy_destructor($yymajor, $yytokenvalue);
 | |
|                         $yymajor = self::YYNOCODE;
 | |
|                     } else {
 | |
|                         while ($this->yyidx >= 0 &&
 | |
|                                  $yymx != self::YYERRORSYMBOL &&
 | |
|         ($yyact = $this->yy_find_shift_action(self::YYERRORSYMBOL)) >= self::YYNSTATE
 | |
|                               ){
 | |
|                             $this->yy_pop_parser_stack();
 | |
|                         }
 | |
|                         if ($this->yyidx < 0 || $yymajor==0) {
 | |
|                             $this->yy_destructor($yymajor, $yytokenvalue);
 | |
|                             $this->yy_parse_failed();
 | |
|                             $yymajor = self::YYNOCODE;
 | |
|                         } elseif ($yymx != self::YYERRORSYMBOL) {
 | |
|                             $u2 = 0;
 | |
|                             $this->yy_shift($yyact, self::YYERRORSYMBOL, $u2);
 | |
|                         }
 | |
|                     }
 | |
|                     $this->yyerrcnt = 3;
 | |
|                     $yyerrorhit = 1;
 | |
|                 } else {
 | |
|                     if ($this->yyerrcnt <= 0) {
 | |
|                         $this->yy_syntax_error($yymajor, $yytokenvalue);
 | |
|                     }
 | |
|                     $this->yyerrcnt = 3;
 | |
|                     $this->yy_destructor($yymajor, $yytokenvalue);
 | |
|                     if ($yyendofinput) {
 | |
|                         $this->yy_parse_failed();
 | |
|                     }
 | |
|                     $yymajor = self::YYNOCODE;
 | |
|                 }
 | |
|             } else {
 | |
|                 $this->yy_accept();
 | |
|                 $yymajor = self::YYNOCODE;
 | |
|             }            
 | |
|         } while ($yymajor != self::YYNOCODE && $this->yyidx >= 0);
 | |
|     }
 | |
| }
 | |
| ?>
 |