Files
smarty/libs/sysplugins/smarty_internal_templateparser.php

4569 lines
166 KiB
PHP
Raw Normal View History

2014-10-18 00:18:11 +02:00
<?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();
public 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;
}
}
}
public function __toString()
{
return $this->_string;
}
public function offsetExists($offset)
{
return isset($this->metadata[$offset]);
}
public function offsetGet($offset)
{
return $this->metadata[$offset];
}
public 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;
}
}
public 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 13 "smarty_internal_templateparser.y"
class Smarty_Internal_Templateparser#line 80 "smarty_internal_templateparser.php"
{
#line 15 "smarty_internal_templateparser.y"
const Err1 = "Security error: Call to private object member not allowed";
const Err2 = "Security error: Call to dynamic object member not allowed";
const Err3 = "PHP in template not allowed. Use SmartyBC to enable it";
// states whether the parse was successful or not
public $successful = true;
public $retvalue = 0;
public static $prefix_number = 0;
private $_string;
public $yymajor;
public $last_index;
public $last_variable;
public $root_buffer;
public $current_buffer;
private $lex;
private $internalError = false;
private $strip = false;
function __construct($lex, $compiler)
{
$this->lex = $lex;
$this->compiler = $compiler;
$this->smarty = $this->compiler->smarty;
$this->template = $this->compiler->template;
$this->compiler->has_variable_string = false;
$this->compiler->prefix_code = array();
$this->block_nesting_level = 0;
if ($this->security = isset($this->smarty->security_policy)) {
$this->php_handling = $this->smarty->security_policy->php_handling;
} else {
$this->php_handling = $this->smarty->php_handling;
}
$this->is_xml = false;
$this->asp_tags = (ini_get('asp_tags') != '0');
$this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this);
}
public function compileVariable($variable)
{
if (strpos($variable, '(') == 0) {
// not a variable variable
$var = trim($variable, '\'');
$this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable($var, null, true, false)->nocache;
$this->template->properties['variables'][$var] = $this->compiler->tag_nocache | $this->compiler->nocache;
}
// return '(isset($_smarty_tpl->tpl_vars['. $variable .'])?$_smarty_tpl->tpl_vars['. $variable .']->value:$_smarty_tpl->getVariable('. $variable .')->value)';
return '$_smarty_tpl->tpl_vars[' . $variable . ']->value';
}
2014-10-18 00:31:50 +02:00
#line 130 "smarty_internal_templateparser.php"
2014-10-18 00:18:11 +02:00
const TP_VERT = 1;
const TP_COLON = 2;
const TP_RDEL = 3;
const TP_COMMENT = 4;
const TP_PHPSTARTTAG = 5;
const TP_PHPENDTAG = 6;
const TP_PHPENDSCRIPT = 7;
const TP_ASPSTARTTAG = 8;
const TP_ASPENDTAG = 9;
2014-10-18 00:31:50 +02:00
const TP_XMLTAG = 10;
const TP_TEXT = 11;
const TP_STRIPON = 12;
const TP_STRIPOFF = 13;
const TP_BLOCKSOURCE = 14;
const TP_LITERALSTART = 15;
const TP_LITERALEND = 16;
const TP_LITERAL = 17;
const TP_LDEL = 18;
const TP_DOLLAR = 19;
const TP_ID = 20;
const TP_EQUAL = 21;
const TP_PTR = 22;
const TP_LDELIF = 23;
const TP_LDELFOR = 24;
const TP_SEMICOLON = 25;
const TP_INCDEC = 26;
const TP_TO = 27;
const TP_STEP = 28;
const TP_LDELFOREACH = 29;
const TP_SPACE = 30;
const TP_AS = 31;
const TP_APTR = 32;
const TP_LDELSETFILTER = 33;
const TP_SMARTYBLOCKCHILDPARENT = 34;
const TP_LDELSLASH = 35;
const TP_ATTR = 36;
const TP_INTEGER = 37;
const TP_COMMA = 38;
const TP_OPENP = 39;
const TP_CLOSEP = 40;
const TP_MATH = 41;
const TP_UNIMATH = 42;
const TP_ANDSYM = 43;
const TP_ISIN = 44;
const TP_ISDIVBY = 45;
const TP_ISNOTDIVBY = 46;
const TP_ISEVEN = 47;
const TP_ISNOTEVEN = 48;
const TP_ISEVENBY = 49;
const TP_ISNOTEVENBY = 50;
const TP_ISODD = 51;
const TP_ISNOTODD = 52;
const TP_ISODDBY = 53;
const TP_ISNOTODDBY = 54;
const TP_INSTANCEOF = 55;
const TP_QMARK = 56;
const TP_NOT = 57;
const TP_TYPECAST = 58;
const TP_HEX = 59;
const TP_DOT = 60;
const TP_SINGLEQUOTESTRING = 61;
const TP_DOUBLECOLON = 62;
const TP_AT = 63;
const TP_HATCH = 64;
const TP_OPENB = 65;
const TP_CLOSEB = 66;
const TP_EQUALS = 67;
const TP_NOTEQUALS = 68;
const TP_GREATERTHAN = 69;
const TP_LESSTHAN = 70;
const TP_GREATEREQUAL = 71;
const TP_LESSEQUAL = 72;
const TP_IDENTITY = 73;
const TP_NONEIDENTITY = 74;
const TP_MOD = 75;
const TP_LAND = 76;
const TP_LOR = 77;
const TP_LXOR = 78;
const TP_QUOTE = 79;
const TP_BACKTICK = 80;
const TP_DOLLARID = 81;
const YY_NO_ACTION = 560;
const YY_ACCEPT_ACTION = 559;
const YY_ERROR_ACTION = 558;
2014-10-18 00:18:11 +02:00
2014-10-18 00:31:50 +02:00
const YY_SZ_ACTTAB = 2541;
2014-10-18 00:18:11 +02:00
static public $yy_action = array(
/* 0 */
2014-10-18 00:31:50 +02:00
225, 35, 312, 333, 198, 272, 273, 275, 283, 292,
2014-10-18 00:18:11 +02:00
/* 10 */
2014-10-18 00:31:50 +02:00
293, 294, 295, 287, 288, 267, 190, 43, 19, 8,
2014-10-18 00:18:11 +02:00
/* 20 */
2014-10-18 00:31:50 +02:00
204, 14, 212, 299, 2, 108, 225, 9, 424, 41,
2014-10-18 00:18:11 +02:00
/* 30 */
2014-10-18 00:31:50 +02:00
139, 208, 225, 41, 250, 32, 228, 13, 159, 32,
2014-10-18 00:18:11 +02:00
/* 40 */
2014-10-18 00:31:50 +02:00
51, 52, 50, 44, 11, 12, 298, 300, 21, 23,
2014-10-18 00:18:11 +02:00
/* 50 */
2014-10-18 00:31:50 +02:00
303, 302, 25, 17, 225, 424, 234, 225, 225, 381,
2014-10-18 00:18:11 +02:00
/* 60 */
2014-10-18 00:31:50 +02:00
421, 424, 45, 38, 145, 357, 313, 323, 322, 324,
2014-10-18 00:18:11 +02:00
/* 70 */
2014-10-18 00:31:50 +02:00
325, 326, 320, 315, 314, 316, 317, 319, 127, 41,
2014-10-18 00:18:11 +02:00
/* 80 */
2014-10-18 00:31:50 +02:00
46, 42, 338, 41, 168, 32, 41, 421, 14, 32,
2014-10-18 00:18:11 +02:00
/* 90 */
2014-10-18 00:31:50 +02:00
299, 34, 32, 421, 51, 52, 50, 44, 11, 12,
2014-10-18 00:18:11 +02:00
/* 100 */
2014-10-18 00:31:50 +02:00
298, 300, 21, 23, 303, 302, 25, 17, 225, 104,
2014-10-18 00:18:11 +02:00
/* 110 */
2014-10-18 00:31:50 +02:00
185, 46, 46, 559, 95, 279, 242, 271, 3, 321,
2014-10-18 00:18:11 +02:00
/* 120 */
2014-10-18 00:31:50 +02:00
313, 323, 322, 324, 325, 326, 320, 315, 314, 316,
2014-10-18 00:18:11 +02:00
/* 130 */
2014-10-18 00:31:50 +02:00
317, 319, 14, 241, 299, 34, 208, 41, 225, 14,
2014-10-18 00:18:11 +02:00
/* 140 */
2014-10-18 00:31:50 +02:00
418, 299, 28, 32, 179, 7, 356, 285, 51, 52,
2014-10-18 00:18:11 +02:00
/* 150 */
2014-10-18 00:31:50 +02:00
50, 44, 11, 12, 298, 300, 21, 23, 303, 302,
2014-10-18 00:18:11 +02:00
/* 160 */
2014-10-18 00:31:50 +02:00
25, 17, 225, 225, 274, 424, 240, 41, 134, 190,
2014-10-18 00:18:11 +02:00
/* 170 */
2014-10-18 00:31:50 +02:00
332, 343, 340, 32, 313, 323, 322, 324, 325, 326,
2014-10-18 00:18:11 +02:00
/* 180 */
2014-10-18 00:31:50 +02:00
320, 315, 314, 316, 317, 319, 37, 122, 182, 31,
2014-10-18 00:18:11 +02:00
/* 190 */
2014-10-18 00:31:50 +02:00
202, 225, 424, 352, 225, 14, 7, 299, 424, 225,
2014-10-18 00:18:11 +02:00
/* 200 */
2014-10-18 00:31:50 +02:00
150, 386, 51, 52, 50, 44, 11, 12, 298, 300,
2014-10-18 00:18:11 +02:00
/* 210 */
2014-10-18 00:31:50 +02:00
21, 23, 303, 302, 25, 17, 225, 46, 349, 134,
2014-10-18 00:18:11 +02:00
/* 220 */
2014-10-18 00:31:50 +02:00
41, 278, 242, 271, 7, 29, 32, 341, 313, 323,
2014-10-18 00:18:11 +02:00
/* 230 */
2014-10-18 00:31:50 +02:00
322, 324, 325, 326, 320, 315, 314, 316, 317, 319,
2014-10-18 00:18:11 +02:00
/* 240 */
2014-10-18 00:31:50 +02:00
226, 227, 197, 304, 103, 184, 232, 134, 46, 14,
2014-10-18 00:18:11 +02:00
/* 250 */
2014-10-18 00:31:50 +02:00
35, 299, 265, 46, 321, 18, 51, 52, 50, 44,
2014-10-18 00:18:11 +02:00
/* 260 */
2014-10-18 00:31:50 +02:00
11, 12, 298, 300, 21, 23, 303, 302, 25, 17,
2014-10-18 00:18:11 +02:00
/* 270 */
2014-10-18 00:31:50 +02:00
225, 208, 264, 259, 258, 218, 6, 109, 345, 35,
2014-10-18 00:18:11 +02:00
/* 280 */
2014-10-18 00:31:50 +02:00
193, 263, 313, 323, 322, 324, 325, 326, 320, 315,
2014-10-18 00:18:11 +02:00
/* 290 */
2014-10-18 00:31:50 +02:00
314, 316, 317, 319, 241, 192, 304, 107, 102, 175,
2014-10-18 00:18:11 +02:00
/* 300 */
2014-10-18 00:31:50 +02:00
269, 201, 191, 304, 203, 142, 253, 208, 321, 335,
2014-10-18 00:18:11 +02:00
/* 310 */
2014-10-18 00:31:50 +02:00
51, 52, 50, 44, 11, 12, 298, 300, 21, 23,
2014-10-18 00:18:11 +02:00
/* 320 */
2014-10-18 00:31:50 +02:00
303, 302, 25, 17, 225, 208, 268, 196, 208, 305,
2014-10-18 00:18:11 +02:00
/* 330 */
2014-10-18 00:31:50 +02:00
485, 208, 230, 200, 308, 485, 313, 323, 322, 324,
2014-10-18 00:18:11 +02:00
/* 340 */
2014-10-18 00:31:50 +02:00
325, 326, 320, 315, 314, 316, 317, 319, 30, 159,
2014-10-18 00:18:11 +02:00
/* 350 */
2014-10-18 00:31:50 +02:00
105, 20, 233, 161, 186, 305, 301, 274, 256, 247,
2014-10-18 00:18:11 +02:00
/* 360 */
2014-10-18 00:31:50 +02:00
208, 225, 321, 36, 51, 52, 50, 44, 11, 12,
2014-10-18 00:18:11 +02:00
/* 370 */
2014-10-18 00:31:50 +02:00
298, 300, 21, 23, 303, 302, 25, 17, 225, 204,
2014-10-18 00:18:11 +02:00
/* 380 */
2014-10-18 00:31:50 +02:00
207, 14, 254, 299, 131, 259, 249, 225, 158, 127,
2014-10-18 00:18:11 +02:00
/* 390 */
2014-10-18 00:31:50 +02:00
313, 323, 322, 324, 325, 326, 320, 315, 314, 316,
2014-10-18 00:18:11 +02:00
/* 400 */
2014-10-18 00:31:50 +02:00
317, 319, 237, 262, 130, 225, 45, 183, 187, 14,
2014-10-18 00:18:11 +02:00
/* 410 */
2014-10-18 00:31:50 +02:00
169, 223, 301, 342, 274, 334, 321, 321, 51, 52,
2014-10-18 00:18:11 +02:00
/* 420 */
2014-10-18 00:31:50 +02:00
50, 44, 11, 12, 298, 300, 21, 23, 303, 302,
2014-10-18 00:18:11 +02:00
/* 430 */
2014-10-18 00:31:50 +02:00
25, 17, 225, 204, 204, 14, 6, 244, 141, 259,
2014-10-18 00:18:11 +02:00
/* 440 */
2014-10-18 00:31:50 +02:00
291, 46, 98, 194, 313, 323, 322, 324, 325, 326,
2014-10-18 00:18:11 +02:00
/* 450 */
2014-10-18 00:31:50 +02:00
320, 315, 314, 316, 317, 319, 132, 262, 227, 166,
2014-10-18 00:18:11 +02:00
/* 460 */
2014-10-18 00:31:50 +02:00
163, 189, 14, 284, 231, 26, 237, 27, 321, 321,
2014-10-18 00:18:11 +02:00
/* 470 */
2014-10-18 00:31:50 +02:00
321, 32, 51, 52, 50, 44, 11, 12, 298, 300,
2014-10-18 00:18:11 +02:00
/* 480 */
2014-10-18 00:31:50 +02:00
21, 23, 303, 302, 25, 17, 225, 204, 14, 276,
2014-10-18 00:18:11 +02:00
/* 490 */
2014-10-18 00:31:50 +02:00
245, 206, 22, 4, 144, 328, 150, 120, 313, 323,
2014-10-18 00:18:11 +02:00
/* 500 */
2014-10-18 00:31:50 +02:00
322, 324, 325, 326, 320, 315, 314, 316, 317, 319,
2014-10-18 00:18:11 +02:00
/* 510 */
2014-10-18 00:31:50 +02:00
195, 348, 262, 176, 171, 39, 30, 199, 143, 180,
2014-10-18 00:18:11 +02:00
/* 520 */
2014-10-18 00:31:50 +02:00
148, 281, 321, 260, 159, 230, 51, 52, 50, 44,
2014-10-18 00:18:11 +02:00
/* 530 */
2014-10-18 00:31:50 +02:00
11, 12, 298, 300, 21, 23, 303, 302, 25, 17,
2014-10-18 00:18:11 +02:00
/* 540 */
2014-10-18 00:31:50 +02:00
225, 296, 205, 129, 346, 289, 124, 329, 125, 339,
2014-10-18 00:18:11 +02:00
/* 550 */
2014-10-18 00:31:50 +02:00
97, 119, 313, 323, 322, 324, 325, 326, 320, 315,
2014-10-18 00:18:11 +02:00
/* 560 */
2014-10-18 00:31:50 +02:00
314, 316, 317, 319, 127, 262, 262, 239, 277, 282,
2014-10-18 00:18:11 +02:00
/* 570 */
2014-10-18 00:31:50 +02:00
307, 94, 266, 351, 269, 170, 159, 181, 172, 106,
2014-10-18 00:18:11 +02:00
/* 580 */
2014-10-18 00:31:50 +02:00
51, 52, 50, 44, 11, 12, 298, 300, 21, 23,
2014-10-18 00:18:11 +02:00
/* 590 */
2014-10-18 00:31:50 +02:00
303, 302, 25, 17, 225, 330, 270, 301, 15, 115,
2014-10-18 00:18:11 +02:00
/* 600 */
2014-10-18 00:31:50 +02:00
331, 310, 326, 255, 140, 126, 313, 323, 322, 324,
2014-10-18 00:18:11 +02:00
/* 610 */
2014-10-18 00:31:50 +02:00
325, 326, 320, 315, 314, 316, 317, 319, 301, 326,
2014-10-18 00:18:11 +02:00
/* 620 */
2014-10-18 00:31:50 +02:00
262, 326, 326, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 630 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 243, 51, 52, 50, 44, 11, 12,
2014-10-18 00:18:11 +02:00
/* 640 */
2014-10-18 00:31:50 +02:00
298, 300, 21, 23, 303, 302, 25, 17, 225, 40,
2014-10-18 00:18:11 +02:00
/* 650 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 113, 99, 100,
2014-10-18 00:18:11 +02:00
/* 660 */
2014-10-18 00:31:50 +02:00
313, 323, 322, 324, 325, 326, 320, 315, 314, 316,
2014-10-18 00:18:11 +02:00
/* 670 */
2014-10-18 00:31:50 +02:00
317, 319, 262, 262, 262, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 680 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 326, 51, 52,
2014-10-18 00:18:11 +02:00
/* 690 */
2014-10-18 00:31:50 +02:00
50, 44, 11, 12, 298, 300, 21, 23, 303, 302,
2014-10-18 00:18:11 +02:00
/* 700 */
2014-10-18 00:31:50 +02:00
25, 17, 225, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 710 */
2014-10-18 00:31:50 +02:00
326, 114, 326, 326, 313, 323, 322, 324, 325, 326,
2014-10-18 00:18:11 +02:00
/* 720 */
2014-10-18 00:31:50 +02:00
320, 315, 314, 316, 317, 319, 262, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 730 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 740 */
2014-10-18 00:31:50 +02:00
326, 286, 51, 52, 50, 44, 11, 12, 298, 300,
2014-10-18 00:18:11 +02:00
/* 750 */
2014-10-18 00:31:50 +02:00
21, 23, 303, 302, 25, 17, 225, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 760 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 326, 313, 323,
2014-10-18 00:18:11 +02:00
/* 770 */
2014-10-18 00:31:50 +02:00
322, 324, 325, 326, 320, 315, 314, 316, 317, 319,
2014-10-18 00:18:11 +02:00
/* 780 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 790 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 51, 52, 50, 44,
2014-10-18 00:18:11 +02:00
/* 800 */
2014-10-18 00:31:50 +02:00
11, 12, 298, 300, 21, 23, 303, 302, 25, 17,
2014-10-18 00:18:11 +02:00
/* 810 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 820 */
2014-10-18 00:31:50 +02:00
159, 326, 313, 323, 322, 324, 325, 326, 320, 315,
2014-10-18 00:18:11 +02:00
/* 830 */
2014-10-18 00:31:50 +02:00
314, 316, 317, 319, 326, 326, 326, 326, 51, 52,
2014-10-18 00:18:11 +02:00
/* 840 */
2014-10-18 00:31:50 +02:00
50, 44, 11, 12, 298, 300, 21, 23, 303, 302,
2014-10-18 00:18:11 +02:00
/* 850 */
2014-10-18 00:31:50 +02:00
25, 17, 326, 326, 326, 326, 326, 326, 212, 326,
2014-10-18 00:18:11 +02:00
/* 860 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 9, 313, 323, 322, 324, 325, 326,
2014-10-18 00:18:11 +02:00
/* 870 */
2014-10-18 00:31:50 +02:00
320, 315, 314, 316, 317, 319, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 880 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 8, 138, 211, 326, 326, 2, 108,
2014-10-18 00:18:11 +02:00
/* 890 */
2014-10-18 00:31:50 +02:00
326, 235, 326, 326, 139, 157, 165, 326, 250, 128,
2014-10-18 00:18:11 +02:00
/* 900 */
2014-10-18 00:31:50 +02:00
228, 326, 246, 326, 24, 321, 326, 48, 261, 326,
2014-10-18 00:18:11 +02:00
/* 910 */
2014-10-18 00:31:50 +02:00
326, 251, 336, 353, 326, 311, 326, 301, 174, 173,
2014-10-18 00:18:11 +02:00
/* 920 */
2014-10-18 00:31:50 +02:00
326, 326, 49, 47, 280, 238, 297, 321, 321, 105,
2014-10-18 00:18:11 +02:00
/* 930 */
2014-10-18 00:31:50 +02:00
1, 337, 326, 147, 326, 326, 326, 326, 326, 301,
2014-10-18 00:18:11 +02:00
/* 940 */
2014-10-18 00:31:50 +02:00
301, 8, 123, 92, 96, 257, 2, 108, 326, 311,
2014-10-18 00:18:11 +02:00
/* 950 */
2014-10-18 00:31:50 +02:00
326, 326, 139, 326, 326, 235, 250, 309, 228, 146,
2014-10-18 00:18:11 +02:00
/* 960 */
2014-10-18 00:31:50 +02:00
246, 326, 24, 128, 162, 48, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 970 */
2014-10-18 00:31:50 +02:00
235, 326, 350, 321, 155, 251, 336, 353, 128, 311,
2014-10-18 00:18:11 +02:00
/* 980 */
2014-10-18 00:31:50 +02:00
49, 47, 280, 238, 297, 301, 326, 105, 1, 326,
2014-10-18 00:18:11 +02:00
/* 990 */
2014-10-18 00:31:50 +02:00
251, 336, 353, 326, 311, 14, 326, 299, 326, 8,
2014-10-18 00:18:11 +02:00
/* 1000 */
2014-10-18 00:31:50 +02:00
138, 224, 96, 326, 2, 108, 326, 41, 326, 252,
2014-10-18 00:18:11 +02:00
/* 1010 */
2014-10-18 00:31:50 +02:00
139, 235, 326, 32, 250, 153, 228, 326, 246, 128,
2014-10-18 00:18:11 +02:00
/* 1020 */
2014-10-18 00:31:50 +02:00
24, 326, 326, 48, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1030 */
2014-10-18 00:31:50 +02:00
326, 251, 336, 353, 326, 311, 326, 326, 49, 47,
2014-10-18 00:18:11 +02:00
/* 1040 */
2014-10-18 00:31:50 +02:00
280, 238, 297, 326, 326, 105, 1, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1050 */
2014-10-18 00:31:50 +02:00
326, 326, 14, 326, 299, 326, 326, 8, 142, 224,
2014-10-18 00:18:11 +02:00
/* 1060 */
2014-10-18 00:31:50 +02:00
96, 326, 2, 108, 41, 235, 248, 326, 139, 154,
2014-10-18 00:18:11 +02:00
/* 1070 */
2014-10-18 00:31:50 +02:00
32, 235, 250, 128, 228, 156, 246, 326, 33, 128,
2014-10-18 00:18:11 +02:00
/* 1080 */
2014-10-18 00:31:50 +02:00
326, 48, 326, 326, 326, 251, 336, 353, 326, 311,
2014-10-18 00:18:11 +02:00
/* 1090 */
2014-10-18 00:31:50 +02:00
326, 251, 336, 353, 326, 311, 49, 47, 280, 238,
2014-10-18 00:18:11 +02:00
/* 1100 */
2014-10-18 00:31:50 +02:00
297, 326, 326, 105, 1, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1110 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 8, 138, 213, 96, 326,
2014-10-18 00:18:11 +02:00
/* 1120 */
2014-10-18 00:31:50 +02:00
2, 108, 326, 326, 326, 326, 139, 235, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1130 */
2014-10-18 00:31:50 +02:00
250, 149, 228, 326, 246, 128, 24, 326, 326, 48,
2014-10-18 00:18:11 +02:00
/* 1140 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 251, 336, 353,
2014-10-18 00:18:11 +02:00
/* 1150 */
2014-10-18 00:31:50 +02:00
326, 311, 326, 326, 49, 47, 280, 238, 297, 326,
2014-10-18 00:18:11 +02:00
/* 1160 */
2014-10-18 00:31:50 +02:00
326, 105, 1, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1170 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 8, 138, 210, 96, 326, 2, 108,
2014-10-18 00:18:11 +02:00
/* 1180 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 139, 235, 326, 326, 250, 151,
2014-10-18 00:18:11 +02:00
/* 1190 */
2014-10-18 00:31:50 +02:00
228, 326, 219, 128, 24, 326, 326, 48, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1200 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 251, 336, 353, 326, 311,
2014-10-18 00:18:11 +02:00
/* 1210 */
2014-10-18 00:31:50 +02:00
326, 326, 49, 47, 280, 238, 297, 326, 326, 105,
2014-10-18 00:18:11 +02:00
/* 1220 */
2014-10-18 00:31:50 +02:00
1, 326, 326, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1230 */
2014-10-18 00:31:50 +02:00
326, 8, 136, 224, 96, 326, 2, 108, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1240 */
2014-10-18 00:31:50 +02:00
326, 326, 139, 235, 326, 326, 250, 152, 228, 326,
2014-10-18 00:18:11 +02:00
/* 1250 */
2014-10-18 00:31:50 +02:00
246, 128, 24, 326, 326, 48, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1260 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 251, 336, 353, 326, 311, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1270 */
2014-10-18 00:31:50 +02:00
49, 47, 280, 238, 297, 326, 326, 105, 1, 326,
2014-10-18 00:18:11 +02:00
/* 1280 */
2014-10-18 00:31:50 +02:00
225, 326, 391, 326, 422, 326, 326, 326, 326, 8,
2014-10-18 00:18:11 +02:00
/* 1290 */
2014-10-18 00:31:50 +02:00
135, 224, 96, 326, 2, 108, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1300 */
2014-10-18 00:31:50 +02:00
139, 236, 229, 326, 250, 326, 228, 326, 246, 41,
2014-10-18 00:18:11 +02:00
/* 1310 */
2014-10-18 00:31:50 +02:00
5, 422, 326, 48, 326, 32, 326, 422, 7, 326,
2014-10-18 00:18:11 +02:00
/* 1320 */
2014-10-18 00:31:50 +02:00
7, 326, 326, 326, 198, 178, 326, 326, 49, 47,
2014-10-18 00:18:11 +02:00
/* 1330 */
2014-10-18 00:31:50 +02:00
280, 238, 297, 326, 321, 105, 1, 43, 19, 326,
2014-10-18 00:18:11 +02:00
/* 1340 */
2014-10-18 00:31:50 +02:00
326, 134, 326, 134, 326, 326, 326, 8, 138, 209,
2014-10-18 00:18:11 +02:00
/* 1350 */
2014-10-18 00:31:50 +02:00
96, 208, 2, 108, 326, 326, 326, 326, 139, 326,
2014-10-18 00:18:11 +02:00
/* 1360 */
2014-10-18 00:31:50 +02:00
326, 326, 250, 326, 228, 326, 246, 326, 24, 198,
2014-10-18 00:18:11 +02:00
/* 1370 */
2014-10-18 00:31:50 +02:00
164, 48, 326, 326, 326, 326, 326, 326, 326, 321,
2014-10-18 00:18:11 +02:00
/* 1380 */
2014-10-18 00:31:50 +02:00
326, 326, 43, 19, 326, 326, 49, 47, 280, 238,
2014-10-18 00:18:11 +02:00
/* 1390 */
2014-10-18 00:31:50 +02:00
297, 326, 326, 105, 1, 326, 208, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1400 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 8, 142, 224, 96, 326,
2014-10-18 00:18:11 +02:00
/* 1410 */
2014-10-18 00:31:50 +02:00
2, 108, 326, 326, 326, 326, 139, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1420 */
2014-10-18 00:31:50 +02:00
250, 326, 228, 326, 246, 326, 33, 198, 177, 48,
2014-10-18 00:18:11 +02:00
/* 1430 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 321, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1440 */
2014-10-18 00:31:50 +02:00
43, 19, 326, 326, 49, 47, 280, 238, 297, 326,
2014-10-18 00:18:11 +02:00
/* 1450 */
2014-10-18 00:31:50 +02:00
326, 105, 326, 326, 208, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1460 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 8, 142, 222, 96, 326, 2, 108,
2014-10-18 00:18:11 +02:00
/* 1470 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 139, 326, 326, 326, 250, 326,
2014-10-18 00:18:11 +02:00
/* 1480 */
2014-10-18 00:31:50 +02:00
228, 326, 246, 326, 33, 326, 467, 48, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1490 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1500 */
2014-10-18 00:31:50 +02:00
326, 326, 49, 47, 280, 238, 297, 326, 467, 105,
2014-10-18 00:18:11 +02:00
/* 1510 */
2014-10-18 00:31:50 +02:00
467, 467, 326, 467, 467, 326, 326, 326, 326, 467,
2014-10-18 00:18:11 +02:00
/* 1520 */
2014-10-18 00:31:50 +02:00
326, 467, 7, 467, 96, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1530 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 235, 326, 326, 467, 121,
2014-10-18 00:18:11 +02:00
/* 1540 */
2014-10-18 00:31:50 +02:00
326, 326, 86, 128, 326, 134, 326, 326, 326, 467,
2014-10-18 00:18:11 +02:00
/* 1550 */
2014-10-18 00:31:50 +02:00
326, 290, 318, 326, 326, 251, 336, 353, 326, 311,
2014-10-18 00:18:11 +02:00
/* 1560 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 467, 326, 326, 326, 235, 326, 216,
2014-10-18 00:18:11 +02:00
/* 1570 */
2014-10-18 00:31:50 +02:00
354, 133, 326, 326, 68, 117, 249, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1580 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 290, 318, 326, 326, 251, 336, 353,
2014-10-18 00:18:11 +02:00
/* 1590 */
2014-10-18 00:31:50 +02:00
235, 311, 326, 326, 133, 326, 326, 76, 128, 326,
2014-10-18 00:18:11 +02:00
/* 1600 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 290, 318, 326, 235,
2014-10-18 00:18:11 +02:00
/* 1610 */
2014-10-18 00:31:50 +02:00
251, 336, 353, 133, 311, 326, 76, 128, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1620 */
2014-10-18 00:31:50 +02:00
326, 221, 326, 326, 326, 290, 318, 326, 326, 251,
2014-10-18 00:18:11 +02:00
/* 1630 */
2014-10-18 00:31:50 +02:00
336, 353, 326, 311, 326, 326, 326, 326, 235, 326,
2014-10-18 00:18:11 +02:00
/* 1640 */
2014-10-18 00:31:50 +02:00
215, 326, 121, 326, 326, 86, 128, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1650 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 290, 318, 326, 326, 251, 336,
2014-10-18 00:18:11 +02:00
/* 1660 */
2014-10-18 00:31:50 +02:00
353, 235, 311, 326, 326, 133, 326, 326, 59, 117,
2014-10-18 00:18:11 +02:00
/* 1670 */
2014-10-18 00:31:50 +02:00
137, 326, 326, 355, 326, 326, 326, 290, 318, 326,
2014-10-18 00:18:11 +02:00
/* 1680 */
2014-10-18 00:31:50 +02:00
326, 251, 336, 353, 235, 311, 326, 326, 133, 326,
2014-10-18 00:18:11 +02:00
/* 1690 */
2014-10-18 00:31:50 +02:00
326, 76, 128, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1700 */
2014-10-18 00:31:50 +02:00
290, 318, 326, 235, 251, 336, 353, 110, 311, 326,
2014-10-18 00:18:11 +02:00
/* 1710 */
2014-10-18 00:31:50 +02:00
69, 128, 326, 326, 326, 217, 326, 326, 326, 290,
2014-10-18 00:18:11 +02:00
/* 1720 */
2014-10-18 00:31:50 +02:00
318, 326, 326, 251, 336, 353, 326, 311, 326, 235,
2014-10-18 00:18:11 +02:00
/* 1730 */
2014-10-18 00:31:50 +02:00
101, 160, 326, 133, 326, 326, 57, 128, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1740 */
2014-10-18 00:31:50 +02:00
321, 326, 326, 43, 19, 290, 318, 326, 235, 251,
2014-10-18 00:18:11 +02:00
/* 1750 */
2014-10-18 00:31:50 +02:00
336, 353, 133, 311, 326, 73, 128, 208, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1760 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 290, 318, 326, 326, 251, 336,
2014-10-18 00:18:11 +02:00
/* 1770 */
2014-10-18 00:31:50 +02:00
353, 235, 311, 326, 326, 133, 326, 326, 78, 128,
2014-10-18 00:18:11 +02:00
/* 1780 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 290, 318, 326,
2014-10-18 00:18:11 +02:00
/* 1790 */
2014-10-18 00:31:50 +02:00
235, 251, 336, 353, 133, 311, 326, 70, 128, 326,
2014-10-18 00:18:11 +02:00
/* 1800 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 290, 318, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1810 */
2014-10-18 00:31:50 +02:00
251, 336, 353, 326, 311, 326, 235, 198, 167, 326,
2014-10-18 00:18:11 +02:00
/* 1820 */
2014-10-18 00:31:50 +02:00
133, 326, 326, 64, 128, 326, 326, 321, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1830 */
2014-10-18 00:31:50 +02:00
43, 19, 290, 318, 326, 235, 251, 336, 353, 133,
2014-10-18 00:18:11 +02:00
/* 1840 */
2014-10-18 00:31:50 +02:00
311, 326, 67, 128, 208, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1850 */
2014-10-18 00:31:50 +02:00
326, 290, 318, 326, 326, 251, 336, 353, 235, 311,
2014-10-18 00:18:11 +02:00
/* 1860 */
2014-10-18 00:31:50 +02:00
326, 326, 133, 326, 326, 88, 128, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1870 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 290, 318, 326, 235, 251, 336,
2014-10-18 00:18:11 +02:00
/* 1880 */
2014-10-18 00:31:50 +02:00
353, 133, 311, 326, 82, 128, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1890 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 290, 318, 326, 326, 251, 336, 353,
2014-10-18 00:18:11 +02:00
/* 1900 */
2014-10-18 00:31:50 +02:00
326, 311, 326, 235, 198, 188, 326, 133, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1910 */
2014-10-18 00:31:50 +02:00
72, 128, 326, 326, 321, 326, 326, 43, 19, 290,
2014-10-18 00:18:11 +02:00
/* 1920 */
2014-10-18 00:31:50 +02:00
318, 326, 235, 251, 336, 353, 93, 311, 326, 55,
2014-10-18 00:18:11 +02:00
/* 1930 */
2014-10-18 00:31:50 +02:00
116, 208, 326, 326, 326, 326, 326, 326, 290, 318,
2014-10-18 00:18:11 +02:00
/* 1940 */
2014-10-18 00:31:50 +02:00
326, 326, 251, 336, 353, 235, 311, 326, 326, 112,
2014-10-18 00:18:11 +02:00
/* 1950 */
2014-10-18 00:31:50 +02:00
326, 326, 87, 128, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1960 */
2014-10-18 00:31:50 +02:00
326, 290, 318, 326, 235, 251, 336, 353, 133, 311,
2014-10-18 00:18:11 +02:00
/* 1970 */
2014-10-18 00:31:50 +02:00
326, 77, 128, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 1980 */
2014-10-18 00:31:50 +02:00
290, 318, 326, 326, 251, 336, 353, 326, 311, 326,
2014-10-18 00:18:11 +02:00
/* 1990 */
2014-10-18 00:31:50 +02:00
235, 326, 326, 326, 133, 326, 326, 89, 128, 326,
2014-10-18 00:18:11 +02:00
/* 2000 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 290, 318, 326, 235,
2014-10-18 00:18:11 +02:00
/* 2010 */
2014-10-18 00:31:50 +02:00
251, 336, 353, 133, 311, 326, 75, 128, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2020 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 290, 318, 326, 326, 251,
2014-10-18 00:18:11 +02:00
/* 2030 */
2014-10-18 00:31:50 +02:00
336, 353, 235, 311, 326, 326, 133, 326, 326, 91,
2014-10-18 00:18:11 +02:00
/* 2040 */
2014-10-18 00:31:50 +02:00
128, 326, 326, 326, 326, 326, 326, 326, 290, 318,
2014-10-18 00:18:11 +02:00
/* 2050 */
2014-10-18 00:31:50 +02:00
326, 235, 251, 336, 353, 133, 311, 326, 62, 128,
2014-10-18 00:18:11 +02:00
/* 2060 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 290, 318, 326,
2014-10-18 00:18:11 +02:00
/* 2070 */
2014-10-18 00:31:50 +02:00
326, 251, 336, 353, 326, 311, 326, 235, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2080 */
2014-10-18 00:31:50 +02:00
326, 93, 326, 326, 53, 116, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2090 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 290, 318, 326, 235, 220, 336, 353,
2014-10-18 00:18:11 +02:00
/* 2100 */
2014-10-18 00:31:50 +02:00
133, 311, 326, 63, 128, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2110 */
2014-10-18 00:31:50 +02:00
326, 326, 290, 318, 326, 326, 251, 336, 353, 235,
2014-10-18 00:18:11 +02:00
/* 2120 */
2014-10-18 00:31:50 +02:00
311, 326, 326, 133, 326, 326, 61, 128, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2130 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 290, 318, 326, 235, 214,
2014-10-18 00:18:11 +02:00
/* 2140 */
2014-10-18 00:31:50 +02:00
336, 353, 133, 311, 326, 71, 128, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2150 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 290, 318, 326, 326, 251, 336,
2014-10-18 00:18:11 +02:00
/* 2160 */
2014-10-18 00:31:50 +02:00
353, 326, 311, 326, 235, 326, 326, 326, 133, 326,
2014-10-18 00:18:11 +02:00
/* 2170 */
2014-10-18 00:31:50 +02:00
326, 85, 128, 326, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2180 */
2014-10-18 00:31:50 +02:00
290, 318, 326, 235, 251, 336, 353, 133, 311, 326,
2014-10-18 00:18:11 +02:00
/* 2190 */
2014-10-18 00:31:50 +02:00
65, 128, 326, 326, 326, 326, 326, 326, 326, 290,
2014-10-18 00:18:11 +02:00
/* 2200 */
2014-10-18 00:31:50 +02:00
318, 326, 326, 251, 336, 353, 235, 311, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2210 */
2014-10-18 00:31:50 +02:00
111, 326, 326, 74, 128, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2220 */
2014-10-18 00:31:50 +02:00
326, 326, 290, 318, 326, 235, 251, 336, 353, 118,
2014-10-18 00:18:11 +02:00
/* 2230 */
2014-10-18 00:31:50 +02:00
311, 326, 58, 128, 326, 326, 326, 326, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2240 */
2014-10-18 00:31:50 +02:00
326, 290, 318, 326, 326, 251, 336, 353, 326, 311,
2014-10-18 00:18:11 +02:00
/* 2250 */
2014-10-18 00:31:50 +02:00
326, 235, 326, 326, 326, 133, 326, 326, 56, 128,
2014-10-18 00:18:11 +02:00
/* 2260 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 326, 290, 318, 326,
2014-10-18 00:18:11 +02:00
/* 2270 */
2014-10-18 00:31:50 +02:00
235, 251, 336, 353, 133, 311, 326, 79, 128, 326,
2014-10-18 00:18:11 +02:00
/* 2280 */
2014-10-18 00:31:50 +02:00
326, 326, 326, 326, 326, 326, 290, 318, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2290 */
2014-10-18 00:31:50 +02:00
251, 336, 353, 235, 311, 326, 326, 133, 326, 326,
2014-10-18 00:18:11 +02:00
/* 2300 */
2014-10-18 00:31:50 +02:00
80, 128, 326, 326, 326, 326, 326, 326, 326, 290,
2014-10-18 00:18:11 +02:00
/* 2310 */
2014-10-18 00:31:50 +02:00
318, 326, 235, 251, 336, 353, 133, 311, 326, 84,
/* 2320 */
128, 326, 326, 326, 326, 326, 326, 326, 290, 318,
/* 2330 */
326, 326, 251, 336, 353, 326, 311, 326, 235, 326,
/* 2340 */
326, 326, 133, 326, 326, 66, 128, 326, 326, 326,
/* 2350 */
326, 326, 326, 326, 290, 318, 326, 344, 251, 336,
/* 2360 */
353, 326, 311, 326, 10, 326, 326, 326, 326, 2,
/* 2370 */
108, 344, 326, 326, 326, 139, 326, 326, 10, 250,
/* 2380 */
326, 228, 326, 2, 108, 326, 326, 326, 326, 139,
/* 2390 */
326, 326, 326, 250, 326, 228, 235, 326, 326, 326,
/* 2400 */
133, 326, 326, 60, 128, 326, 326, 326, 326, 326,
/* 2410 */
326, 326, 290, 318, 326, 326, 251, 336, 353, 326,
/* 2420 */
311, 326, 326, 326, 326, 306, 16, 347, 326, 235,
/* 2430 */
326, 326, 326, 133, 326, 326, 81, 128, 326, 327,
/* 2440 */
16, 347, 326, 326, 326, 290, 318, 326, 326, 251,
/* 2450 */
336, 353, 326, 311, 326, 326, 235, 326, 326, 326,
/* 2460 */
133, 326, 326, 68, 128, 326, 326, 326, 326, 326,
/* 2470 */
326, 326, 290, 318, 326, 326, 251, 336, 353, 326,
/* 2480 */
311, 326, 235, 326, 326, 326, 133, 326, 326, 54,
/* 2490 */
128, 326, 326, 326, 326, 326, 326, 326, 290, 318,
/* 2500 */
326, 326, 251, 336, 353, 235, 311, 326, 326, 133,
/* 2510 */
326, 326, 83, 128, 326, 326, 235, 326, 326, 326,
/* 2520 */
133, 290, 318, 90, 128, 251, 336, 353, 326, 311,
/* 2530 */
326, 326, 290, 318, 326, 326, 251, 336, 353, 326,
/* 2540 */
311,
2014-10-18 00:18:11 +02:00
);
static public $yy_lookahead = array(
/* 0 */
2014-10-18 00:31:50 +02:00
1, 38, 3, 40, 91, 4, 5, 6, 7, 8,
2014-10-18 00:18:11 +02:00
/* 10 */
2014-10-18 00:31:50 +02:00
9, 10, 11, 12, 13, 14, 15, 104, 105, 18,
2014-10-18 00:18:11 +02:00
/* 20 */
2014-10-18 00:31:50 +02:00
118, 18, 60, 20, 23, 24, 1, 65, 3, 30,
2014-10-18 00:18:11 +02:00
/* 30 */
2014-10-18 00:31:50 +02:00
29, 118, 1, 30, 33, 36, 35, 21, 22, 36,
2014-10-18 00:18:11 +02:00
/* 40 */
2014-10-18 00:31:50 +02:00
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
2014-10-18 00:18:11 +02:00
/* 50 */
2014-10-18 00:31:50 +02:00
51, 52, 53, 54, 1, 30, 31, 1, 1, 3,
2014-10-18 00:18:11 +02:00
/* 60 */
2014-10-18 00:31:50 +02:00
3, 36, 2, 18, 19, 20, 67, 68, 69, 70,
2014-10-18 00:18:11 +02:00
/* 70 */
2014-10-18 00:31:50 +02:00
71, 72, 73, 74, 75, 76, 77, 78, 62, 30,
2014-10-18 00:18:11 +02:00
/* 80 */
2014-10-18 00:31:50 +02:00
55, 28, 37, 30, 111, 36, 30, 30, 18, 36,
2014-10-18 00:18:11 +02:00
/* 90 */
2014-10-18 00:31:50 +02:00
20, 21, 36, 36, 41, 42, 43, 44, 45, 46,
2014-10-18 00:18:11 +02:00
/* 100 */
2014-10-18 00:31:50 +02:00
47, 48, 49, 50, 51, 52, 53, 54, 1, 91,
2014-10-18 00:18:11 +02:00
/* 110 */
2014-10-18 00:31:50 +02:00
92, 55, 55, 83, 84, 85, 86, 87, 38, 101,
2014-10-18 00:18:11 +02:00
/* 120 */
2014-10-18 00:31:50 +02:00
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
2014-10-18 00:18:11 +02:00
/* 130 */
2014-10-18 00:31:50 +02:00
77, 78, 18, 63, 20, 21, 118, 30, 1, 18,
2014-10-18 00:18:11 +02:00
/* 140 */
2014-10-18 00:31:50 +02:00
3, 20, 21, 36, 111, 39, 66, 26, 41, 42,
2014-10-18 00:18:11 +02:00
/* 150 */
2014-10-18 00:31:50 +02:00
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
2014-10-18 00:18:11 +02:00
/* 160 */
2014-10-18 00:31:50 +02:00
53, 54, 1, 1, 26, 3, 60, 30, 62, 15,
2014-10-18 00:18:11 +02:00
/* 170 */
2014-10-18 00:31:50 +02:00
16, 17, 66, 36, 67, 68, 69, 70, 71, 72,
2014-10-18 00:18:11 +02:00
/* 180 */
2014-10-18 00:31:50 +02:00
73, 74, 75, 76, 77, 78, 18, 19, 20, 32,
2014-10-18 00:18:11 +02:00
/* 190 */
2014-10-18 00:31:50 +02:00
100, 1, 30, 109, 1, 18, 39, 20, 36, 1,
2014-10-18 00:18:11 +02:00
/* 200 */
2014-10-18 00:31:50 +02:00
116, 3, 41, 42, 43, 44, 45, 46, 47, 48,
2014-10-18 00:18:11 +02:00
/* 210 */
2014-10-18 00:31:50 +02:00
49, 50, 51, 52, 53, 54, 1, 55, 80, 62,
2014-10-18 00:18:11 +02:00
/* 220 */
2014-10-18 00:31:50 +02:00
30, 85, 86, 87, 39, 32, 36, 66, 67, 68,
2014-10-18 00:18:11 +02:00
/* 230 */
2014-10-18 00:31:50 +02:00
69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
2014-10-18 00:18:11 +02:00
/* 240 */
2014-10-18 00:31:50 +02:00
63, 86, 114, 115, 91, 92, 31, 62, 55, 18,
2014-10-18 00:18:11 +02:00
/* 250 */
2014-10-18 00:31:50 +02:00
38, 20, 40, 55, 101, 18, 41, 42, 43, 44,
2014-10-18 00:18:11 +02:00
/* 260 */
2014-10-18 00:31:50 +02:00
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
2014-10-18 00:18:11 +02:00
/* 270 */
2014-10-18 00:31:50 +02:00
1, 118, 3, 94, 95, 96, 39, 122, 123, 38,
2014-10-18 00:18:11 +02:00
/* 280 */
2014-10-18 00:31:50 +02:00
91, 40, 67, 68, 69, 70, 71, 72, 73, 74,
2014-10-18 00:18:11 +02:00
/* 290 */
2014-10-18 00:31:50 +02:00
75, 76, 77, 78, 63, 114, 115, 100, 91, 92,
2014-10-18 00:18:11 +02:00
/* 300 */
2014-10-18 00:31:50 +02:00
112, 91, 114, 115, 91, 19, 20, 118, 101, 20,
2014-10-18 00:18:11 +02:00
/* 310 */
2014-10-18 00:31:50 +02:00
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
2014-10-18 00:18:11 +02:00
/* 320 */
2014-10-18 00:31:50 +02:00
51, 52, 53, 54, 1, 118, 3, 100, 118, 119,
2014-10-18 00:18:11 +02:00
/* 330 */
2014-10-18 00:31:50 +02:00
60, 118, 2, 91, 3, 65, 67, 68, 69, 70,
2014-10-18 00:18:11 +02:00
/* 340 */
2014-10-18 00:31:50 +02:00
71, 72, 73, 74, 75, 76, 77, 78, 21, 22,
2014-10-18 00:18:11 +02:00
/* 350 */
2014-10-18 00:31:50 +02:00
64, 21, 63, 92, 111, 119, 113, 26, 19, 20,
2014-10-18 00:18:11 +02:00
/* 360 */
2014-10-18 00:31:50 +02:00
118, 1, 101, 21, 41, 42, 43, 44, 45, 46,
2014-10-18 00:18:11 +02:00
/* 370 */
2014-10-18 00:31:50 +02:00
47, 48, 49, 50, 51, 52, 53, 54, 1, 118,
2014-10-18 00:18:11 +02:00
/* 380 */
2014-10-18 00:31:50 +02:00
3, 18, 22, 20, 19, 94, 95, 1, 98, 62,
2014-10-18 00:18:11 +02:00
/* 390 */
2014-10-18 00:31:50 +02:00
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
2014-10-18 00:18:11 +02:00
/* 400 */
2014-10-18 00:31:50 +02:00
77, 78, 60, 113, 39, 1, 2, 92, 92, 18,
2014-10-18 00:18:11 +02:00
/* 410 */
2014-10-18 00:31:50 +02:00
111, 20, 113, 87, 26, 89, 101, 101, 41, 42,
2014-10-18 00:18:11 +02:00
/* 420 */
2014-10-18 00:31:50 +02:00
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
2014-10-18 00:18:11 +02:00
/* 430 */
2014-10-18 00:31:50 +02:00
53, 54, 1, 118, 118, 18, 39, 20, 19, 94,
2014-10-18 00:18:11 +02:00
/* 440 */
2014-10-18 00:31:50 +02:00
95, 55, 98, 25, 67, 68, 69, 70, 71, 72,
2014-10-18 00:18:11 +02:00
/* 450 */
2014-10-18 00:31:50 +02:00
73, 74, 75, 76, 77, 78, 38, 113, 86, 92,
2014-10-18 00:18:11 +02:00
/* 460 */
2014-10-18 00:31:50 +02:00
92, 92, 18, 40, 20, 30, 60, 2, 101, 101,
2014-10-18 00:18:11 +02:00
/* 470 */
2014-10-18 00:31:50 +02:00
101, 36, 41, 42, 43, 44, 45, 46, 47, 48,
2014-10-18 00:18:11 +02:00
/* 480 */
2014-10-18 00:31:50 +02:00
49, 50, 51, 52, 53, 54, 1, 118, 18, 109,
2014-10-18 00:18:11 +02:00
/* 490 */
2014-10-18 00:31:50 +02:00
20, 20, 56, 39, 19, 123, 116, 98, 67, 68,
2014-10-18 00:18:11 +02:00
/* 500 */
2014-10-18 00:31:50 +02:00
69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
2014-10-18 00:18:11 +02:00
/* 510 */
2014-10-18 00:31:50 +02:00
25, 80, 113, 92, 64, 27, 21, 20, 19, 64,
2014-10-18 00:18:11 +02:00
/* 520 */
2014-10-18 00:31:50 +02:00
20, 3, 101, 20, 22, 2, 41, 42, 43, 44,
2014-10-18 00:18:11 +02:00
/* 530 */
2014-10-18 00:31:50 +02:00
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
2014-10-18 00:18:11 +02:00
/* 540 */
2014-10-18 00:31:50 +02:00
1, 20, 3, 19, 3, 20, 20, 20, 19, 66,
2014-10-18 00:18:11 +02:00
/* 550 */
2014-10-18 00:31:50 +02:00
98, 98, 67, 68, 69, 70, 71, 72, 73, 74,
2014-10-18 00:18:11 +02:00
/* 560 */
2014-10-18 00:31:50 +02:00
75, 76, 77, 78, 62, 113, 113, 20, 37, 37,
2014-10-18 00:18:11 +02:00
/* 570 */
2014-10-18 00:31:50 +02:00
3, 20, 20, 101, 112, 111, 22, 111, 111, 111,
2014-10-18 00:18:11 +02:00
/* 580 */
2014-10-18 00:31:50 +02:00
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
2014-10-18 00:18:11 +02:00
/* 590 */
2014-10-18 00:31:50 +02:00
51, 52, 53, 54, 1, 116, 30, 113, 97, 88,
2014-10-18 00:18:11 +02:00
/* 600 */
2014-10-18 00:31:50 +02:00
16, 115, 124, 97, 99, 98, 67, 68, 69, 70,
2014-10-18 00:18:11 +02:00
/* 610 */
2014-10-18 00:31:50 +02:00
71, 72, 73, 74, 75, 76, 77, 78, 113, 124,
2014-10-18 00:18:11 +02:00
/* 620 */
2014-10-18 00:31:50 +02:00
113, 124, 124, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 630 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 40, 41, 42, 43, 44, 45, 46,
2014-10-18 00:18:11 +02:00
/* 640 */
2014-10-18 00:31:50 +02:00
47, 48, 49, 50, 51, 52, 53, 54, 1, 2,
2014-10-18 00:18:11 +02:00
/* 650 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 98, 98, 98,
2014-10-18 00:18:11 +02:00
/* 660 */
2014-10-18 00:31:50 +02:00
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
2014-10-18 00:18:11 +02:00
/* 670 */
2014-10-18 00:31:50 +02:00
77, 78, 113, 113, 113, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 680 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 124, 41, 42,
2014-10-18 00:18:11 +02:00
/* 690 */
2014-10-18 00:31:50 +02:00
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
2014-10-18 00:18:11 +02:00
/* 700 */
2014-10-18 00:31:50 +02:00
53, 54, 1, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 710 */
2014-10-18 00:31:50 +02:00
124, 98, 124, 124, 67, 68, 69, 70, 71, 72,
2014-10-18 00:18:11 +02:00
/* 720 */
2014-10-18 00:31:50 +02:00
73, 74, 75, 76, 77, 78, 113, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 730 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 740 */
2014-10-18 00:31:50 +02:00
124, 40, 41, 42, 43, 44, 45, 46, 47, 48,
2014-10-18 00:18:11 +02:00
/* 750 */
2014-10-18 00:31:50 +02:00
49, 50, 51, 52, 53, 54, 1, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 760 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 124, 67, 68,
2014-10-18 00:18:11 +02:00
/* 770 */
2014-10-18 00:31:50 +02:00
69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
2014-10-18 00:18:11 +02:00
/* 780 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 790 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 41, 42, 43, 44,
2014-10-18 00:18:11 +02:00
/* 800 */
2014-10-18 00:31:50 +02:00
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
2014-10-18 00:18:11 +02:00
/* 810 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 820 */
2014-10-18 00:31:50 +02:00
22, 124, 67, 68, 69, 70, 71, 72, 73, 74,
2014-10-18 00:18:11 +02:00
/* 830 */
2014-10-18 00:31:50 +02:00
75, 76, 77, 78, 124, 124, 124, 124, 41, 42,
2014-10-18 00:18:11 +02:00
/* 840 */
2014-10-18 00:31:50 +02:00
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
2014-10-18 00:18:11 +02:00
/* 850 */
2014-10-18 00:31:50 +02:00
53, 54, 124, 124, 124, 124, 124, 124, 60, 124,
2014-10-18 00:18:11 +02:00
/* 860 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 65, 67, 68, 69, 70, 71, 72,
2014-10-18 00:18:11 +02:00
/* 870 */
2014-10-18 00:31:50 +02:00
73, 74, 75, 76, 77, 78, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 880 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 18, 19, 20, 124, 124, 23, 24,
2014-10-18 00:18:11 +02:00
/* 890 */
2014-10-18 00:31:50 +02:00
124, 86, 124, 124, 29, 90, 92, 124, 33, 94,
2014-10-18 00:18:11 +02:00
/* 900 */
2014-10-18 00:31:50 +02:00
35, 124, 37, 124, 39, 101, 124, 42, 103, 124,
2014-10-18 00:18:11 +02:00
/* 910 */
2014-10-18 00:31:50 +02:00
124, 106, 107, 108, 124, 110, 124, 113, 92, 92,
2014-10-18 00:18:11 +02:00
/* 920 */
2014-10-18 00:31:50 +02:00
124, 124, 57, 58, 59, 60, 61, 101, 101, 64,
2014-10-18 00:18:11 +02:00
/* 930 */
2014-10-18 00:31:50 +02:00
65, 66, 124, 94, 124, 124, 124, 124, 124, 113,
2014-10-18 00:18:11 +02:00
/* 940 */
2014-10-18 00:31:50 +02:00
113, 18, 19, 20, 79, 106, 23, 24, 124, 110,
2014-10-18 00:18:11 +02:00
/* 950 */
2014-10-18 00:31:50 +02:00
124, 124, 29, 124, 124, 86, 33, 34, 35, 90,
2014-10-18 00:18:11 +02:00
/* 960 */
2014-10-18 00:31:50 +02:00
37, 124, 39, 94, 92, 42, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 970 */
2014-10-18 00:31:50 +02:00
86, 124, 103, 101, 90, 106, 107, 108, 94, 110,
2014-10-18 00:18:11 +02:00
/* 980 */
2014-10-18 00:31:50 +02:00
57, 58, 59, 60, 61, 113, 124, 64, 65, 124,
2014-10-18 00:18:11 +02:00
/* 990 */
2014-10-18 00:31:50 +02:00
106, 107, 108, 124, 110, 18, 124, 20, 124, 18,
2014-10-18 00:18:11 +02:00
/* 1000 */
2014-10-18 00:31:50 +02:00
19, 20, 79, 124, 23, 24, 124, 30, 124, 32,
2014-10-18 00:18:11 +02:00
/* 1010 */
2014-10-18 00:31:50 +02:00
29, 86, 124, 36, 33, 90, 35, 124, 37, 94,
2014-10-18 00:18:11 +02:00
/* 1020 */
2014-10-18 00:31:50 +02:00
39, 124, 124, 42, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1030 */
2014-10-18 00:31:50 +02:00
124, 106, 107, 108, 124, 110, 124, 124, 57, 58,
2014-10-18 00:18:11 +02:00
/* 1040 */
2014-10-18 00:31:50 +02:00
59, 60, 61, 124, 124, 64, 65, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1050 */
2014-10-18 00:31:50 +02:00
124, 124, 18, 124, 20, 124, 124, 18, 19, 20,
2014-10-18 00:18:11 +02:00
/* 1060 */
2014-10-18 00:31:50 +02:00
79, 124, 23, 24, 30, 86, 32, 124, 29, 90,
2014-10-18 00:18:11 +02:00
/* 1070 */
2014-10-18 00:31:50 +02:00
36, 86, 33, 94, 35, 90, 37, 124, 39, 94,
2014-10-18 00:18:11 +02:00
/* 1080 */
2014-10-18 00:31:50 +02:00
124, 42, 124, 124, 124, 106, 107, 108, 124, 110,
2014-10-18 00:18:11 +02:00
/* 1090 */
2014-10-18 00:31:50 +02:00
124, 106, 107, 108, 124, 110, 57, 58, 59, 60,
2014-10-18 00:18:11 +02:00
/* 1100 */
2014-10-18 00:31:50 +02:00
61, 124, 124, 64, 65, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1110 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 18, 19, 20, 79, 124,
2014-10-18 00:18:11 +02:00
/* 1120 */
2014-10-18 00:31:50 +02:00
23, 24, 124, 124, 124, 124, 29, 86, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1130 */
2014-10-18 00:31:50 +02:00
33, 90, 35, 124, 37, 94, 39, 124, 124, 42,
2014-10-18 00:18:11 +02:00
/* 1140 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 106, 107, 108,
2014-10-18 00:18:11 +02:00
/* 1150 */
2014-10-18 00:31:50 +02:00
124, 110, 124, 124, 57, 58, 59, 60, 61, 124,
2014-10-18 00:18:11 +02:00
/* 1160 */
2014-10-18 00:31:50 +02:00
124, 64, 65, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1170 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 18, 19, 20, 79, 124, 23, 24,
2014-10-18 00:18:11 +02:00
/* 1180 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 29, 86, 124, 124, 33, 90,
2014-10-18 00:18:11 +02:00
/* 1190 */
2014-10-18 00:31:50 +02:00
35, 124, 37, 94, 39, 124, 124, 42, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1200 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 106, 107, 108, 124, 110,
2014-10-18 00:18:11 +02:00
/* 1210 */
2014-10-18 00:31:50 +02:00
124, 124, 57, 58, 59, 60, 61, 124, 124, 64,
2014-10-18 00:18:11 +02:00
/* 1220 */
2014-10-18 00:31:50 +02:00
65, 124, 124, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1230 */
2014-10-18 00:31:50 +02:00
124, 18, 19, 20, 79, 124, 23, 24, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1240 */
2014-10-18 00:31:50 +02:00
124, 124, 29, 86, 124, 124, 33, 90, 35, 124,
2014-10-18 00:18:11 +02:00
/* 1250 */
2014-10-18 00:31:50 +02:00
37, 94, 39, 124, 124, 42, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1260 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 106, 107, 108, 124, 110, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1270 */
2014-10-18 00:31:50 +02:00
57, 58, 59, 60, 61, 124, 124, 64, 65, 124,
2014-10-18 00:18:11 +02:00
/* 1280 */
2014-10-18 00:31:50 +02:00
1, 124, 3, 124, 3, 124, 124, 124, 124, 18,
2014-10-18 00:18:11 +02:00
/* 1290 */
2014-10-18 00:31:50 +02:00
19, 20, 79, 124, 23, 24, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1300 */
2014-10-18 00:31:50 +02:00
29, 22, 21, 124, 33, 124, 35, 124, 37, 30,
2014-10-18 00:18:11 +02:00
/* 1310 */
2014-10-18 00:31:50 +02:00
39, 30, 124, 42, 124, 36, 124, 36, 39, 124,
2014-10-18 00:18:11 +02:00
/* 1320 */
2014-10-18 00:31:50 +02:00
39, 124, 124, 124, 91, 92, 124, 124, 57, 58,
2014-10-18 00:18:11 +02:00
/* 1330 */
2014-10-18 00:31:50 +02:00
59, 60, 61, 124, 101, 64, 65, 104, 105, 124,
2014-10-18 00:18:11 +02:00
/* 1340 */
2014-10-18 00:31:50 +02:00
124, 62, 124, 62, 124, 124, 124, 18, 19, 20,
2014-10-18 00:18:11 +02:00
/* 1350 */
2014-10-18 00:31:50 +02:00
79, 118, 23, 24, 124, 124, 124, 124, 29, 124,
2014-10-18 00:18:11 +02:00
/* 1360 */
2014-10-18 00:31:50 +02:00
124, 124, 33, 124, 35, 124, 37, 124, 39, 91,
2014-10-18 00:18:11 +02:00
/* 1370 */
2014-10-18 00:31:50 +02:00
92, 42, 124, 124, 124, 124, 124, 124, 124, 101,
2014-10-18 00:18:11 +02:00
/* 1380 */
2014-10-18 00:31:50 +02:00
124, 124, 104, 105, 124, 124, 57, 58, 59, 60,
2014-10-18 00:18:11 +02:00
/* 1390 */
2014-10-18 00:31:50 +02:00
61, 124, 124, 64, 65, 124, 118, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1400 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 18, 19, 20, 79, 124,
2014-10-18 00:18:11 +02:00
/* 1410 */
2014-10-18 00:31:50 +02:00
23, 24, 124, 124, 124, 124, 29, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1420 */
2014-10-18 00:31:50 +02:00
33, 124, 35, 124, 37, 124, 39, 91, 92, 42,
2014-10-18 00:18:11 +02:00
/* 1430 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 101, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1440 */
2014-10-18 00:31:50 +02:00
104, 105, 124, 124, 57, 58, 59, 60, 61, 124,
2014-10-18 00:18:11 +02:00
/* 1450 */
2014-10-18 00:31:50 +02:00
124, 64, 124, 124, 118, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1460 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 18, 19, 20, 79, 124, 23, 24,
2014-10-18 00:18:11 +02:00
/* 1470 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 29, 124, 124, 124, 33, 124,
2014-10-18 00:18:11 +02:00
/* 1480 */
2014-10-18 00:31:50 +02:00
35, 124, 37, 124, 39, 124, 3, 42, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1490 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1500 */
2014-10-18 00:31:50 +02:00
124, 124, 57, 58, 59, 60, 61, 124, 25, 64,
2014-10-18 00:18:11 +02:00
/* 1510 */
2014-10-18 00:31:50 +02:00
27, 28, 124, 30, 31, 124, 124, 124, 124, 36,
2014-10-18 00:18:11 +02:00
/* 1520 */
2014-10-18 00:31:50 +02:00
124, 38, 39, 40, 79, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1530 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 86, 124, 124, 55, 90,
2014-10-18 00:18:11 +02:00
/* 1540 */
2014-10-18 00:31:50 +02:00
124, 124, 93, 94, 124, 62, 124, 124, 124, 66,
2014-10-18 00:18:11 +02:00
/* 1550 */
2014-10-18 00:31:50 +02:00
124, 102, 103, 124, 124, 106, 107, 108, 124, 110,
2014-10-18 00:18:11 +02:00
/* 1560 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 80, 124, 124, 124, 86, 124, 120,
2014-10-18 00:18:11 +02:00
/* 1570 */
2014-10-18 00:31:50 +02:00
121, 90, 124, 124, 93, 94, 95, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1580 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 102, 103, 124, 124, 106, 107, 108,
2014-10-18 00:18:11 +02:00
/* 1590 */
2014-10-18 00:31:50 +02:00
86, 110, 124, 124, 90, 124, 124, 93, 94, 124,
2014-10-18 00:18:11 +02:00
/* 1600 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 102, 103, 124, 86,
2014-10-18 00:18:11 +02:00
/* 1610 */
2014-10-18 00:31:50 +02:00
106, 107, 108, 90, 110, 124, 93, 94, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1620 */
2014-10-18 00:31:50 +02:00
124, 117, 124, 124, 124, 102, 103, 124, 124, 106,
2014-10-18 00:18:11 +02:00
/* 1630 */
2014-10-18 00:31:50 +02:00
107, 108, 124, 110, 124, 124, 124, 124, 86, 124,
2014-10-18 00:18:11 +02:00
/* 1640 */
2014-10-18 00:31:50 +02:00
117, 124, 90, 124, 124, 93, 94, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1650 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 102, 103, 124, 124, 106, 107,
2014-10-18 00:18:11 +02:00
/* 1660 */
2014-10-18 00:31:50 +02:00
108, 86, 110, 124, 124, 90, 124, 124, 93, 94,
2014-10-18 00:18:11 +02:00
/* 1670 */
2014-10-18 00:31:50 +02:00
95, 124, 124, 121, 124, 124, 124, 102, 103, 124,
2014-10-18 00:18:11 +02:00
/* 1680 */
2014-10-18 00:31:50 +02:00
124, 106, 107, 108, 86, 110, 124, 124, 90, 124,
2014-10-18 00:18:11 +02:00
/* 1690 */
2014-10-18 00:31:50 +02:00
124, 93, 94, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1700 */
2014-10-18 00:31:50 +02:00
102, 103, 124, 86, 106, 107, 108, 90, 110, 124,
2014-10-18 00:18:11 +02:00
/* 1710 */
2014-10-18 00:31:50 +02:00
93, 94, 124, 124, 124, 117, 124, 124, 124, 102,
2014-10-18 00:18:11 +02:00
/* 1720 */
2014-10-18 00:31:50 +02:00
103, 124, 124, 106, 107, 108, 124, 110, 124, 86,
2014-10-18 00:18:11 +02:00
/* 1730 */
2014-10-18 00:31:50 +02:00
91, 92, 124, 90, 124, 124, 93, 94, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1740 */
2014-10-18 00:31:50 +02:00
101, 124, 124, 104, 105, 102, 103, 124, 86, 106,
2014-10-18 00:18:11 +02:00
/* 1750 */
2014-10-18 00:31:50 +02:00
107, 108, 90, 110, 124, 93, 94, 118, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1760 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 102, 103, 124, 124, 106, 107,
2014-10-18 00:18:11 +02:00
/* 1770 */
2014-10-18 00:31:50 +02:00
108, 86, 110, 124, 124, 90, 124, 124, 93, 94,
2014-10-18 00:18:11 +02:00
/* 1780 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 102, 103, 124,
2014-10-18 00:18:11 +02:00
/* 1790 */
2014-10-18 00:31:50 +02:00
86, 106, 107, 108, 90, 110, 124, 93, 94, 124,
2014-10-18 00:18:11 +02:00
/* 1800 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 102, 103, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1810 */
2014-10-18 00:31:50 +02:00
106, 107, 108, 124, 110, 124, 86, 91, 92, 124,
2014-10-18 00:18:11 +02:00
/* 1820 */
2014-10-18 00:31:50 +02:00
90, 124, 124, 93, 94, 124, 124, 101, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1830 */
2014-10-18 00:31:50 +02:00
104, 105, 102, 103, 124, 86, 106, 107, 108, 90,
2014-10-18 00:18:11 +02:00
/* 1840 */
2014-10-18 00:31:50 +02:00
110, 124, 93, 94, 118, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1850 */
2014-10-18 00:31:50 +02:00
124, 102, 103, 124, 124, 106, 107, 108, 86, 110,
2014-10-18 00:18:11 +02:00
/* 1860 */
2014-10-18 00:31:50 +02:00
124, 124, 90, 124, 124, 93, 94, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1870 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 102, 103, 124, 86, 106, 107,
2014-10-18 00:18:11 +02:00
/* 1880 */
2014-10-18 00:31:50 +02:00
108, 90, 110, 124, 93, 94, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1890 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 102, 103, 124, 124, 106, 107, 108,
2014-10-18 00:18:11 +02:00
/* 1900 */
2014-10-18 00:31:50 +02:00
124, 110, 124, 86, 91, 92, 124, 90, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1910 */
2014-10-18 00:31:50 +02:00
93, 94, 124, 124, 101, 124, 124, 104, 105, 102,
2014-10-18 00:18:11 +02:00
/* 1920 */
2014-10-18 00:31:50 +02:00
103, 124, 86, 106, 107, 108, 90, 110, 124, 93,
2014-10-18 00:18:11 +02:00
/* 1930 */
2014-10-18 00:31:50 +02:00
94, 118, 124, 124, 124, 124, 124, 124, 102, 103,
2014-10-18 00:18:11 +02:00
/* 1940 */
2014-10-18 00:31:50 +02:00
124, 124, 106, 107, 108, 86, 110, 124, 124, 90,
2014-10-18 00:18:11 +02:00
/* 1950 */
2014-10-18 00:31:50 +02:00
124, 124, 93, 94, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1960 */
2014-10-18 00:31:50 +02:00
124, 102, 103, 124, 86, 106, 107, 108, 90, 110,
2014-10-18 00:18:11 +02:00
/* 1970 */
2014-10-18 00:31:50 +02:00
124, 93, 94, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 1980 */
2014-10-18 00:31:50 +02:00
102, 103, 124, 124, 106, 107, 108, 124, 110, 124,
2014-10-18 00:18:11 +02:00
/* 1990 */
2014-10-18 00:31:50 +02:00
86, 124, 124, 124, 90, 124, 124, 93, 94, 124,
2014-10-18 00:18:11 +02:00
/* 2000 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 102, 103, 124, 86,
2014-10-18 00:18:11 +02:00
/* 2010 */
2014-10-18 00:31:50 +02:00
106, 107, 108, 90, 110, 124, 93, 94, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2020 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 102, 103, 124, 124, 106,
2014-10-18 00:18:11 +02:00
/* 2030 */
2014-10-18 00:31:50 +02:00
107, 108, 86, 110, 124, 124, 90, 124, 124, 93,
2014-10-18 00:18:11 +02:00
/* 2040 */
2014-10-18 00:31:50 +02:00
94, 124, 124, 124, 124, 124, 124, 124, 102, 103,
2014-10-18 00:18:11 +02:00
/* 2050 */
2014-10-18 00:31:50 +02:00
124, 86, 106, 107, 108, 90, 110, 124, 93, 94,
2014-10-18 00:18:11 +02:00
/* 2060 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 102, 103, 124,
2014-10-18 00:18:11 +02:00
/* 2070 */
2014-10-18 00:31:50 +02:00
124, 106, 107, 108, 124, 110, 124, 86, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2080 */
2014-10-18 00:31:50 +02:00
124, 90, 124, 124, 93, 94, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2090 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 102, 103, 124, 86, 106, 107, 108,
2014-10-18 00:18:11 +02:00
/* 2100 */
2014-10-18 00:31:50 +02:00
90, 110, 124, 93, 94, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2110 */
2014-10-18 00:31:50 +02:00
124, 124, 102, 103, 124, 124, 106, 107, 108, 86,
2014-10-18 00:18:11 +02:00
/* 2120 */
2014-10-18 00:31:50 +02:00
110, 124, 124, 90, 124, 124, 93, 94, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2130 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 102, 103, 124, 86, 106,
2014-10-18 00:18:11 +02:00
/* 2140 */
2014-10-18 00:31:50 +02:00
107, 108, 90, 110, 124, 93, 94, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2150 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 102, 103, 124, 124, 106, 107,
2014-10-18 00:18:11 +02:00
/* 2160 */
2014-10-18 00:31:50 +02:00
108, 124, 110, 124, 86, 124, 124, 124, 90, 124,
2014-10-18 00:18:11 +02:00
/* 2170 */
2014-10-18 00:31:50 +02:00
124, 93, 94, 124, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2180 */
2014-10-18 00:31:50 +02:00
102, 103, 124, 86, 106, 107, 108, 90, 110, 124,
2014-10-18 00:18:11 +02:00
/* 2190 */
2014-10-18 00:31:50 +02:00
93, 94, 124, 124, 124, 124, 124, 124, 124, 102,
2014-10-18 00:18:11 +02:00
/* 2200 */
2014-10-18 00:31:50 +02:00
103, 124, 124, 106, 107, 108, 86, 110, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2210 */
2014-10-18 00:31:50 +02:00
90, 124, 124, 93, 94, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2220 */
2014-10-18 00:31:50 +02:00
124, 124, 102, 103, 124, 86, 106, 107, 108, 90,
2014-10-18 00:18:11 +02:00
/* 2230 */
2014-10-18 00:31:50 +02:00
110, 124, 93, 94, 124, 124, 124, 124, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2240 */
2014-10-18 00:31:50 +02:00
124, 102, 103, 124, 124, 106, 107, 108, 124, 110,
2014-10-18 00:18:11 +02:00
/* 2250 */
2014-10-18 00:31:50 +02:00
124, 86, 124, 124, 124, 90, 124, 124, 93, 94,
2014-10-18 00:18:11 +02:00
/* 2260 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 124, 102, 103, 124,
2014-10-18 00:18:11 +02:00
/* 2270 */
2014-10-18 00:31:50 +02:00
86, 106, 107, 108, 90, 110, 124, 93, 94, 124,
2014-10-18 00:18:11 +02:00
/* 2280 */
2014-10-18 00:31:50 +02:00
124, 124, 124, 124, 124, 124, 102, 103, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2290 */
2014-10-18 00:31:50 +02:00
106, 107, 108, 86, 110, 124, 124, 90, 124, 124,
2014-10-18 00:18:11 +02:00
/* 2300 */
2014-10-18 00:31:50 +02:00
93, 94, 124, 124, 124, 124, 124, 124, 124, 102,
2014-10-18 00:18:11 +02:00
/* 2310 */
2014-10-18 00:31:50 +02:00
103, 124, 86, 106, 107, 108, 90, 110, 124, 93,
/* 2320 */
94, 124, 124, 124, 124, 124, 124, 124, 102, 103,
/* 2330 */
124, 124, 106, 107, 108, 124, 110, 124, 86, 124,
/* 2340 */
124, 124, 90, 124, 124, 93, 94, 124, 124, 124,
/* 2350 */
124, 124, 124, 124, 102, 103, 124, 11, 106, 107,
/* 2360 */
108, 124, 110, 124, 18, 124, 124, 124, 124, 23,
/* 2370 */
24, 11, 124, 124, 124, 29, 124, 124, 18, 33,
/* 2380 */
124, 35, 124, 23, 24, 124, 124, 124, 124, 29,
/* 2390 */
124, 124, 124, 33, 124, 35, 86, 124, 124, 124,
/* 2400 */
90, 124, 124, 93, 94, 124, 124, 124, 124, 124,
/* 2410 */
124, 124, 102, 103, 124, 124, 106, 107, 108, 124,
/* 2420 */
110, 124, 124, 124, 124, 79, 80, 81, 124, 86,
/* 2430 */
124, 124, 124, 90, 124, 124, 93, 94, 124, 79,
/* 2440 */
80, 81, 124, 124, 124, 102, 103, 124, 124, 106,
/* 2450 */
107, 108, 124, 110, 124, 124, 86, 124, 124, 124,
/* 2460 */
90, 124, 124, 93, 94, 124, 124, 124, 124, 124,
/* 2470 */
124, 124, 102, 103, 124, 124, 106, 107, 108, 124,
/* 2480 */
110, 124, 86, 124, 124, 124, 90, 124, 124, 93,
/* 2490 */
94, 124, 124, 124, 124, 124, 124, 124, 102, 103,
/* 2500 */
124, 124, 106, 107, 108, 86, 110, 124, 124, 90,
/* 2510 */
124, 124, 93, 94, 124, 124, 86, 124, 124, 124,
/* 2520 */
90, 102, 103, 93, 94, 106, 107, 108, 124, 110,
/* 2530 */
124, 124, 102, 103, 124, 124, 106, 107, 108, 124,
/* 2540 */
110,
2014-10-18 00:18:11 +02:00
);
2014-10-18 00:31:50 +02:00
const YY_SHIFT_USE_DFLT = - 39;
2014-10-18 00:18:11 +02:00
const YY_SHIFT_MAX = 259;
static public $yy_shift_ofst = array(
/* 0 */
2014-10-18 00:31:50 +02:00
1, 1097, 1271, 1097, 981, 1271, 981, 981, 923, 865,
2014-10-18 00:18:11 +02:00
/* 10 */
2014-10-18 00:31:50 +02:00
923, 981, 981, 981, 981, 981, 981, 981, 981, 981,
2014-10-18 00:18:11 +02:00
/* 20 */
2014-10-18 00:31:50 +02:00
981, 981, 1213, 981, 981, 981, 1155, 1329, 981, 981,
2014-10-18 00:18:11 +02:00
/* 30 */
2014-10-18 00:31:50 +02:00
981, 981, 981, 981, 981, 981, 981, 981, 981, 981,
2014-10-18 00:18:11 +02:00
/* 40 */
2014-10-18 00:31:50 +02:00
981, 1155, 981, 981, 1039, 1039, 1445, 1387, 1387, 1387,
2014-10-18 00:18:11 +02:00
/* 50 */
2014-10-18 00:31:50 +02:00
1387, 1387, 1387, - 1, 53, 107, 107, 107, 107, 107,
2014-10-18 00:18:11 +02:00
/* 60 */
2014-10-18 00:31:50 +02:00
539, 431, 701, 161, 377, 269, 647, 485, 593, 215,
2014-10-18 00:18:11 +02:00
/* 70 */
2014-10-18 00:31:50 +02:00
323, 755, 755, 755, 755, 755, 755, 755, 755, 755,
2014-10-18 00:18:11 +02:00
/* 80 */
2014-10-18 00:31:50 +02:00
755, 755, 755, 755, 755, 755, 755, 755, 755, 755,
2014-10-18 00:18:11 +02:00
/* 90 */
2014-10-18 00:31:50 +02:00
797, 797, 1279, 56, 190, 1, 2346, 977, 1034, 3,
2014-10-18 00:18:11 +02:00
/* 100 */
2014-10-18 00:31:50 +02:00
3, 137, 137, 190, 190, 286, 798, 404, 365, 2360,
2014-10-18 00:18:11 +02:00
/* 110 */
2014-10-18 00:31:50 +02:00
25, 162, 57, 121, 70, 154, 16, 327, 198, 231,
2014-10-18 00:18:11 +02:00
/* 120 */
2014-10-18 00:31:50 +02:00
114, 193, 417, 391, 360, 363, 363, 339, 502, 363,
2014-10-18 00:18:11 +02:00
/* 130 */
2014-10-18 00:31:50 +02:00
365, 363, 365, 386, 339, 444, 470, 49, 444, 435,
2014-10-18 00:18:11 +02:00
/* 140 */
2014-10-18 00:31:50 +02:00
49, 363, 363, 363, 363, 363, 31, 554, 31, 31,
2014-10-18 00:18:11 +02:00
/* 150 */
2014-10-18 00:31:50 +02:00
554, 31, 31, 31, 31, 31, 31, - 39, 177, 168,
2014-10-18 00:18:11 +02:00
/* 160 */
2014-10-18 00:31:50 +02:00
49, 49, 49, 49, 49, 49, 49, 49, - 38, - 38,
2014-10-18 00:18:11 +02:00
/* 170 */
2014-10-18 00:31:50 +02:00
- 38, 270, - 38, 49, 49, 49, 49, 49, 49, - 38,
2014-10-18 00:18:11 +02:00
/* 180 */
2014-10-18 00:31:50 +02:00
270, - 38, 237, 49, 49, 49, - 38, 49, 49, 49,
2014-10-18 00:18:11 +02:00
/* 190 */
2014-10-18 00:31:50 +02:00
584, 554, 554, 31, 566, 566, 60, 554, 31, 454,
2014-10-18 00:18:11 +02:00
/* 200 */
2014-10-18 00:31:50 +02:00
31, 31, 60, 31, - 39, - 39, - 39, - 39, - 39, 1483,
2014-10-18 00:18:11 +02:00
/* 210 */
2014-10-18 00:31:50 +02:00
1281, 106, 45, 157, 138, - 37, 80, 241, 418, 342,
2014-10-18 00:18:11 +02:00
/* 220 */
2014-10-18 00:31:50 +02:00
331, 212, 185, 330, 185, 289, 552, 541, 526, 525,
2014-10-18 00:18:11 +02:00
/* 230 */
2014-10-18 00:31:50 +02:00
521, 523, 524, 527, 529, 567, 551, 532, 531, 483,
2014-10-18 00:18:11 +02:00
/* 240 */
2014-10-18 00:31:50 +02:00
547, 503, 518, 436, 454, 465, 406, 397, 419, 423,
2014-10-18 00:18:11 +02:00
/* 250 */
2014-10-18 00:31:50 +02:00
471, 388, 475, 455, 500, 499, 497, 450, 488, 495,
2014-10-18 00:18:11 +02:00
);
2014-10-18 00:31:50 +02:00
const YY_REDUCE_USE_DFLT = - 99;
2014-10-18 00:18:11 +02:00
const YY_REDUCE_MAX = 208;
static public $yy_reduce_ofst = array(
/* 0 */
2014-10-18 00:31:50 +02:00
30, 1449, 1575, 1552, 1523, 1481, 1504, 1598, 1836, 2010,
2014-10-18 00:18:11 +02:00
/* 10 */
2014-10-18 00:31:50 +02:00
1991, 1791, 1685, 1643, 1704, 1749, 2033, 2078, 2310, 2419,
2014-10-18 00:18:11 +02:00
/* 20 */
2014-10-18 00:31:50 +02:00
2139, 2207, 2252, 2343, 2370, 1772, 1617, 1946, 1904, 2184,
2014-10-18 00:18:11 +02:00
/* 30 */
2014-10-18 00:31:50 +02:00
1923, 1878, 1859, 1965, 2052, 1662, 1817, 1730, 2097, 2396,
2014-10-18 00:18:11 +02:00
/* 40 */
2014-10-18 00:31:50 +02:00
2430, 2120, 2165, 2226, 869, 805, 985, 925, 884, 979,
2014-10-18 00:18:11 +02:00
/* 50 */
2014-10-18 00:31:50 +02:00
1099, 1041, 1157, 1639, 1233, 1639, 1336, 1278, 1726, 1813,
2014-10-18 00:18:11 +02:00
/* 60 */
2014-10-18 00:31:50 +02:00
- 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87,
2014-10-18 00:18:11 +02:00
/* 70 */
2014-10-18 00:31:50 +02:00
- 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87,
2014-10-18 00:18:11 +02:00
/* 80 */
2014-10-18 00:31:50 +02:00
- 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87, - 87,
2014-10-18 00:18:11 +02:00
/* 90 */
2014-10-18 00:31:50 +02:00
- 87, - 87, 18, 207, 153, 136, 155, 827, 872, 804,
2014-10-18 00:18:11 +02:00
/* 100 */
2014-10-18 00:31:50 +02:00
826, 261, 316, 369, 315, 839, 188, 210, 179, 372,
2014-10-18 00:18:11 +02:00
/* 110 */
2014-10-18 00:31:50 +02:00
189, 189, 189, 505, 299, 326, 128, 128, 189, 299,
2014-10-18 00:18:11 +02:00
/* 120 */
2014-10-18 00:31:50 +02:00
299, 189, 507, 453, 242, 344, 243, 84, 128, 452,
2014-10-18 00:18:11 +02:00
/* 130 */
2014-10-18 00:31:50 +02:00
291, 399, 345, 189, 380, 613, 453, 421, 453, 368,
2014-10-18 00:18:11 +02:00
/* 140 */
2014-10-18 00:31:50 +02:00
367, 560, 453, 559, 561, 290, 189, 128, 213, 189,
2014-10-18 00:18:11 +02:00
/* 150 */
2014-10-18 00:31:50 +02:00
181, 189, 189, 189, 189, 189, 189, 189, 484, 479,
2014-10-18 00:18:11 +02:00
/* 160 */
2014-10-18 00:31:50 +02:00
472, 472, 472, 472, 472, 472, 472, 472, 462, 462,
2014-10-18 00:18:11 +02:00
/* 170 */
2014-10-18 00:31:50 +02:00
462, 464, 462, 472, 472, 472, 472, 472, 472, 462,
2014-10-18 00:18:11 +02:00
/* 180 */
2014-10-18 00:31:50 +02:00
467, 462, 466, 472, 472, 472, 462, 472, 472, 472,
2014-10-18 00:18:11 +02:00
/* 190 */
2014-10-18 00:31:50 +02:00
511, 486, 486, - 98, 501, 506, 236, 486, - 98, 468,
2014-10-18 00:18:11 +02:00
/* 200 */
2014-10-18 00:31:50 +02:00
- 98, - 98, 236, - 98, 227, - 27, 197, 33, 90,
2014-10-18 00:18:11 +02:00
);
static public $yyExpectedTokens = array(
/* 0 */
2014-10-18 00:31:50 +02:00
array(4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 23, 24, 29, 33, 35,),
2014-10-18 00:18:11 +02:00
/* 1 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 2 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 3 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 4 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 5 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 6 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 7 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 8 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 34, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 9 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 66, 79,),
2014-10-18 00:18:11 +02:00
/* 10 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 34, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 11 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 12 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 13 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 14 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 15 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 16 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 17 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 18 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 19 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 20 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 21 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 22 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 23 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 24 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 25 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 26 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 27 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 28 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 29 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 30 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 31 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 32 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 33 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 34 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 35 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 36 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 37 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 38 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 39 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 40 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 41 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 42 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 43 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 44 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 45 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 65, 79,),
2014-10-18 00:18:11 +02:00
/* 46 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 79,),
2014-10-18 00:18:11 +02:00
/* 47 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 79,),
2014-10-18 00:18:11 +02:00
/* 48 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 79,),
2014-10-18 00:18:11 +02:00
/* 49 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 79,),
2014-10-18 00:18:11 +02:00
/* 50 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 79,),
2014-10-18 00:18:11 +02:00
/* 51 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 79,),
2014-10-18 00:18:11 +02:00
/* 52 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 64, 79,),
2014-10-18 00:18:11 +02:00
/* 53 */
2014-10-18 00:31:50 +02:00
array(1, 3, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 54 */
2014-10-18 00:31:50 +02:00
array(1, 28, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 55 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 56 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 57 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 58 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 59 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 60 */
2014-10-18 00:31:50 +02:00
array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 61 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80,),
2014-10-18 00:18:11 +02:00
/* 62 */
2014-10-18 00:31:50 +02:00
array(1, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 63 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 64 */
2014-10-18 00:31:50 +02:00
array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 65 */
2014-10-18 00:31:50 +02:00
array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 66 */
2014-10-18 00:31:50 +02:00
array(1, 2, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 67 */
2014-10-18 00:31:50 +02:00
array(1, 25, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 68 */
2014-10-18 00:31:50 +02:00
array(1, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 69 */
2014-10-18 00:31:50 +02:00
array(1, 31, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 70 */
2014-10-18 00:31:50 +02:00
array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 71 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 72 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 73 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 74 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 75 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 76 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 77 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 78 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 79 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 80 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 81 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 82 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 83 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 84 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 85 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 86 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 87 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 88 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 89 */
2014-10-18 00:31:50 +02:00
array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 90 */
2014-10-18 00:31:50 +02:00
array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 91 */
2014-10-18 00:31:50 +02:00
array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,),
2014-10-18 00:18:11 +02:00
/* 92 */
2014-10-18 00:31:50 +02:00
array(1, 3, 22, 30, 36, 39, 62,),
2014-10-18 00:18:11 +02:00
/* 93 */
2014-10-18 00:31:50 +02:00
array(1, 3, 30, 36, 55,),
2014-10-18 00:18:11 +02:00
/* 94 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36,),
2014-10-18 00:18:11 +02:00
/* 95 */
2014-10-18 00:31:50 +02:00
array(4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 23, 24, 29, 33, 35,),
2014-10-18 00:18:11 +02:00
/* 96 */
2014-10-18 00:31:50 +02:00
array(11, 18, 23, 24, 29, 33, 35, 79, 80, 81,),
2014-10-18 00:18:11 +02:00
/* 97 */
2014-10-18 00:31:50 +02:00
array(18, 20, 30, 32, 36,),
2014-10-18 00:18:11 +02:00
/* 98 */
2014-10-18 00:31:50 +02:00
array(18, 20, 30, 32, 36,),
2014-10-18 00:18:11 +02:00
/* 99 */
2014-10-18 00:31:50 +02:00
array(18, 20, 30, 36,),
2014-10-18 00:18:11 +02:00
/* 100 */
2014-10-18 00:31:50 +02:00
array(18, 20, 30, 36,),
2014-10-18 00:18:11 +02:00
/* 101 */
2014-10-18 00:31:50 +02:00
array(1, 3, 30, 36,),
2014-10-18 00:18:11 +02:00
/* 102 */
2014-10-18 00:31:50 +02:00
array(1, 3, 30, 36,),
2014-10-18 00:18:11 +02:00
/* 103 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36,),
2014-10-18 00:18:11 +02:00
/* 104 */
2014-10-18 00:31:50 +02:00
array(1, 30, 36,),
2014-10-18 00:18:11 +02:00
/* 105 */
2014-10-18 00:31:50 +02:00
array(19, 20, 64,),
2014-10-18 00:18:11 +02:00
/* 106 */
2014-10-18 00:31:50 +02:00
array(22, 60, 65,),
2014-10-18 00:18:11 +02:00
/* 107 */
array(1, 2,),
2014-10-18 00:31:50 +02:00
/* 108 */
array(19, 39,),
2014-10-18 00:18:11 +02:00
/* 109 */
2014-10-18 00:31:50 +02:00
array(11, 18, 23, 24, 29, 33, 35, 79, 80, 81,),
2014-10-18 00:18:11 +02:00
/* 110 */
2014-10-18 00:31:50 +02:00
array(1, 3, 30, 31, 36, 55,),
2014-10-18 00:18:11 +02:00
/* 111 */
2014-10-18 00:31:50 +02:00
array(1, 3, 30, 36, 55,),
2014-10-18 00:18:11 +02:00
/* 112 */
2014-10-18 00:31:50 +02:00
array(1, 3, 30, 36, 55,),
2014-10-18 00:18:11 +02:00
/* 113 */
2014-10-18 00:31:50 +02:00
array(18, 20, 21, 26,),
2014-10-18 00:18:11 +02:00
/* 114 */
2014-10-18 00:31:50 +02:00
array(18, 20, 21, 63,),
2014-10-18 00:18:11 +02:00
/* 115 */
2014-10-18 00:31:50 +02:00
array(15, 16, 17,),
2014-10-18 00:18:11 +02:00
/* 116 */
2014-10-18 00:31:50 +02:00
array(21, 22, 62,),
2014-10-18 00:18:11 +02:00
/* 117 */
2014-10-18 00:31:50 +02:00
array(21, 22, 62,),
2014-10-18 00:18:11 +02:00
/* 118 */
2014-10-18 00:31:50 +02:00
array(1, 3, 55,),
2014-10-18 00:18:11 +02:00
/* 119 */
2014-10-18 00:31:50 +02:00
array(18, 20, 63,),
2014-10-18 00:18:11 +02:00
/* 120 */
2014-10-18 00:31:50 +02:00
array(18, 20, 21,),
2014-10-18 00:18:11 +02:00
/* 121 */
2014-10-18 00:31:50 +02:00
array(1, 32, 55,),
2014-10-18 00:18:11 +02:00
/* 122 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 123 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 124 */
2014-10-18 00:31:50 +02:00
array(1, 22,),
2014-10-18 00:18:11 +02:00
/* 125 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 126 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 127 */
2014-10-18 00:31:50 +02:00
array(19, 20,),
2014-10-18 00:18:11 +02:00
/* 128 */
2014-10-18 00:31:50 +02:00
array(22, 62,),
2014-10-18 00:18:11 +02:00
/* 129 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 130 */
2014-10-18 00:31:50 +02:00
array(19, 39,),
2014-10-18 00:18:11 +02:00
/* 131 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 132 */
2014-10-18 00:31:50 +02:00
array(19, 39,),
2014-10-18 00:18:11 +02:00
/* 133 */
2014-10-18 00:31:50 +02:00
array(1, 55,),
2014-10-18 00:18:11 +02:00
/* 134 */
2014-10-18 00:31:50 +02:00
array(19, 20,),
2014-10-18 00:18:11 +02:00
/* 135 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 136 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 137 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 138 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 139 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 140 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 141 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 142 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 143 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 144 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 145 */
2014-10-18 00:31:50 +02:00
array(18, 20,),
2014-10-18 00:18:11 +02:00
/* 146 */
array(1,),
/* 147 */
2014-10-18 00:31:50 +02:00
array(22,),
2014-10-18 00:18:11 +02:00
/* 148 */
array(1,),
/* 149 */
array(1,),
/* 150 */
2014-10-18 00:31:50 +02:00
array(22,),
2014-10-18 00:18:11 +02:00
/* 151 */
array(1,),
/* 152 */
array(1,),
/* 153 */
2014-10-18 00:31:50 +02:00
array(1,),
2014-10-18 00:18:11 +02:00
/* 154 */
array(1,),
/* 155 */
2014-10-18 00:31:50 +02:00
array(1,),
2014-10-18 00:18:11 +02:00
/* 156 */
array(1,),
/* 157 */
array(),
/* 158 */
2014-10-18 00:31:50 +02:00
array(18, 20, 63,),
2014-10-18 00:18:11 +02:00
/* 159 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20,),
2014-10-18 00:18:11 +02:00
/* 160 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 161 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 162 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 163 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 164 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 165 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 166 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 167 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 168 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 169 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 170 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 171 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 172 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 173 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 174 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 175 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 176 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 177 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 178 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 179 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 180 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 181 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 182 */
2014-10-18 00:31:50 +02:00
array(18, 39,),
2014-10-18 00:18:11 +02:00
/* 183 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 184 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 185 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 186 */
2014-10-18 00:31:50 +02:00
array(60, 65,),
2014-10-18 00:18:11 +02:00
/* 187 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 188 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 189 */
2014-10-18 00:31:50 +02:00
array(30, 36,),
2014-10-18 00:18:11 +02:00
/* 190 */
2014-10-18 00:31:50 +02:00
array(16,),
2014-10-18 00:18:11 +02:00
/* 191 */
2014-10-18 00:31:50 +02:00
array(22,),
2014-10-18 00:18:11 +02:00
/* 192 */
2014-10-18 00:31:50 +02:00
array(22,),
2014-10-18 00:18:11 +02:00
/* 193 */
array(1,),
2014-10-18 00:31:50 +02:00
/* 194 */
array(30,),
2014-10-18 00:18:11 +02:00
/* 195 */
2014-10-18 00:31:50 +02:00
array(30,),
2014-10-18 00:18:11 +02:00
/* 196 */
2014-10-18 00:31:50 +02:00
array(2,),
2014-10-18 00:18:11 +02:00
/* 197 */
2014-10-18 00:31:50 +02:00
array(22,),
2014-10-18 00:18:11 +02:00
/* 198 */
2014-10-18 00:31:50 +02:00
array(1,),
2014-10-18 00:18:11 +02:00
/* 199 */
2014-10-18 00:31:50 +02:00
array(39,),
2014-10-18 00:18:11 +02:00
/* 200 */
2014-10-18 00:31:50 +02:00
array(1,),
2014-10-18 00:18:11 +02:00
/* 201 */
array(1,),
/* 202 */
2014-10-18 00:31:50 +02:00
array(2,),
2014-10-18 00:18:11 +02:00
/* 203 */
2014-10-18 00:31:50 +02:00
array(1,),
2014-10-18 00:18:11 +02:00
/* 204 */
array(),
/* 205 */
array(),
/* 206 */
array(),
/* 207 */
array(),
/* 208 */
array(),
/* 209 */
2014-10-18 00:31:50 +02:00
array(3, 25, 27, 28, 30, 31, 36, 38, 39, 40, 55, 62, 66, 80,),
2014-10-18 00:18:11 +02:00
/* 210 */
2014-10-18 00:31:50 +02:00
array(3, 21, 30, 36, 39, 62,),
2014-10-18 00:18:11 +02:00
/* 211 */
2014-10-18 00:31:50 +02:00
array(39, 60, 62, 66,),
2014-10-18 00:18:11 +02:00
/* 212 */
2014-10-18 00:31:50 +02:00
array(18, 19, 20, 37,),
2014-10-18 00:18:11 +02:00
/* 213 */
2014-10-18 00:31:50 +02:00
array(32, 39, 62,),
2014-10-18 00:18:11 +02:00
/* 214 */
2014-10-18 00:31:50 +02:00
array(26, 80,),
2014-10-18 00:18:11 +02:00
/* 215 */
2014-10-18 00:31:50 +02:00
array(38, 40,),
2014-10-18 00:18:11 +02:00
/* 216 */
2014-10-18 00:31:50 +02:00
array(38, 66,),
2014-10-18 00:18:11 +02:00
/* 217 */
2014-10-18 00:31:50 +02:00
array(38, 40,),
2014-10-18 00:18:11 +02:00
/* 218 */
2014-10-18 00:31:50 +02:00
array(25, 38,),
2014-10-18 00:18:11 +02:00
/* 219 */
2014-10-18 00:31:50 +02:00
array(21, 60,),
2014-10-18 00:18:11 +02:00
/* 220 */
2014-10-18 00:31:50 +02:00
array(3, 26,),
2014-10-18 00:18:11 +02:00
/* 221 */
2014-10-18 00:31:50 +02:00
array(38, 40,),
2014-10-18 00:18:11 +02:00
/* 222 */
2014-10-18 00:31:50 +02:00
array(39, 62,),
2014-10-18 00:18:11 +02:00
/* 223 */
2014-10-18 00:31:50 +02:00
array(2, 21,),
2014-10-18 00:18:11 +02:00
/* 224 */
2014-10-18 00:31:50 +02:00
array(39, 62,),
2014-10-18 00:18:11 +02:00
/* 225 */
2014-10-18 00:31:50 +02:00
array(20, 63,),
2014-10-18 00:18:11 +02:00
/* 226 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 227 */
array(3,),
2014-10-18 00:31:50 +02:00
/* 228 */
array(20,),
2014-10-18 00:18:11 +02:00
/* 229 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 230 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 231 */
2014-10-18 00:31:50 +02:00
array(2,),
2014-10-18 00:18:11 +02:00
/* 232 */
2014-10-18 00:31:50 +02:00
array(19,),
2014-10-18 00:18:11 +02:00
/* 233 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 234 */
2014-10-18 00:31:50 +02:00
array(19,),
2014-10-18 00:18:11 +02:00
/* 235 */
2014-10-18 00:31:50 +02:00
array(3,),
2014-10-18 00:18:11 +02:00
/* 236 */
array(20,),
/* 237 */
2014-10-18 00:31:50 +02:00
array(37,),
2014-10-18 00:18:11 +02:00
/* 238 */
2014-10-18 00:31:50 +02:00
array(37,),
2014-10-18 00:18:11 +02:00
/* 239 */
2014-10-18 00:31:50 +02:00
array(66,),
2014-10-18 00:18:11 +02:00
/* 240 */
array(20,),
/* 241 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 242 */
2014-10-18 00:31:50 +02:00
array(3,),
2014-10-18 00:18:11 +02:00
/* 243 */
2014-10-18 00:31:50 +02:00
array(56,),
2014-10-18 00:18:11 +02:00
/* 244 */
2014-10-18 00:31:50 +02:00
array(39,),
2014-10-18 00:18:11 +02:00
/* 245 */
array(2,),
2014-10-18 00:31:50 +02:00
/* 246 */
array(60,),
2014-10-18 00:18:11 +02:00
/* 247 */
2014-10-18 00:31:50 +02:00
array(39,),
2014-10-18 00:18:11 +02:00
/* 248 */
2014-10-18 00:31:50 +02:00
array(19,),
2014-10-18 00:18:11 +02:00
/* 249 */
2014-10-18 00:31:50 +02:00
array(40,),
2014-10-18 00:18:11 +02:00
/* 250 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 251 */
2014-10-18 00:31:50 +02:00
array(26,),
2014-10-18 00:18:11 +02:00
/* 252 */
2014-10-18 00:31:50 +02:00
array(19,),
2014-10-18 00:18:11 +02:00
/* 253 */
2014-10-18 00:31:50 +02:00
array(64,),
2014-10-18 00:18:11 +02:00
/* 254 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 255 */
2014-10-18 00:31:50 +02:00
array(19,),
2014-10-18 00:18:11 +02:00
/* 256 */
2014-10-18 00:31:50 +02:00
array(20,),
2014-10-18 00:18:11 +02:00
/* 257 */
2014-10-18 00:31:50 +02:00
array(64,),
2014-10-18 00:18:11 +02:00
/* 258 */
2014-10-18 00:31:50 +02:00
array(27,),
2014-10-18 00:18:11 +02:00
/* 259 */
2014-10-18 00:31:50 +02:00
array(21,),
2014-10-18 00:18:11 +02:00
/* 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(),
);
static public $yy_default = array(
/* 0 */
2014-10-18 00:31:50 +02:00
361, 541, 558, 558, 512, 558, 512, 512, 558, 558,
2014-10-18 00:18:11 +02:00
/* 10 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 558, 558, 558, 558, 558, 558, 558,
2014-10-18 00:18:11 +02:00
/* 20 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 558, 558, 558, 558, 558, 558, 558,
2014-10-18 00:18:11 +02:00
/* 30 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 558, 558, 558, 558, 558, 558, 558,
2014-10-18 00:18:11 +02:00
/* 40 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 558, 558, 558, 558, 558, 558, 558,
2014-10-18 00:18:11 +02:00
/* 50 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 558, 418, 418, 418, 418, 387, 395,
2014-10-18 00:18:11 +02:00
/* 60 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 558, 558, 558, 558, 558, 558, 423,
2014-10-18 00:18:11 +02:00
/* 70 */
2014-10-18 00:31:50 +02:00
558, 428, 425, 510, 423, 429, 511, 543, 444, 542,
2014-10-18 00:18:11 +02:00
/* 80 */
2014-10-18 00:31:50 +02:00
447, 448, 443, 442, 439, 452, 544, 420, 451, 400,
2014-10-18 00:18:11 +02:00
/* 90 */
2014-10-18 00:31:50 +02:00
456, 455, 467, 431, 418, 358, 558, 418, 418, 418,
2014-10-18 00:18:11 +02:00
/* 100 */
2014-10-18 00:31:50 +02:00
418, 438, 475, 418, 418, 558, 524, 409, 558, 558,
2014-10-18 00:18:11 +02:00
/* 110 */
2014-10-18 00:31:50 +02:00
431, 431, 431, 558, 485, 558, 476, 476, 431, 485,
2014-10-18 00:18:11 +02:00
/* 120 */
2014-10-18 00:31:50 +02:00
485, 431, 558, 558, 412, 558, 485, 558, 476, 558,
2014-10-18 00:18:11 +02:00
/* 130 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 431, 558, 558, 558, 397, 558, 418,
2014-10-18 00:18:11 +02:00
/* 140 */
2014-10-18 00:31:50 +02:00
418, 558, 558, 558, 558, 558, 441, 476, 414, 434,
2014-10-18 00:18:11 +02:00
/* 150 */
2014-10-18 00:31:50 +02:00
521, 436, 435, 460, 459, 458, 454, 519, 486, 558,
2014-10-18 00:18:11 +02:00
/* 160 */
2014-10-18 00:31:50 +02:00
385, 384, 405, 404, 389, 406, 399, 388, 505, 483,
2014-10-18 00:18:11 +02:00
/* 170 */
2014-10-18 00:31:50 +02:00
482, 481, 480, 407, 408, 383, 398, 403, 402, 504,
2014-10-18 00:18:11 +02:00
/* 180 */
2014-10-18 00:31:50 +02:00
479, 502, 485, 393, 392, 390, 503, 382, 396, 394,
2014-10-18 00:18:11 +02:00
/* 190 */
2014-10-18 00:31:50 +02:00
378, 525, 522, 475, 557, 557, 513, 499, 438, 485,
2014-10-18 00:18:11 +02:00
/* 200 */
2014-10-18 00:31:50 +02:00
413, 410, 514, 415, 518, 485, 518, 485, 518, 433,
2014-10-18 00:18:11 +02:00
/* 210 */
2014-10-18 00:31:50 +02:00
467, 467, 558, 467, 457, 558, 558, 558, 558, 463,
2014-10-18 00:18:11 +02:00
/* 220 */
2014-10-18 00:31:50 +02:00
457, 558, 453, 497, 467, 558, 558, 558, 558, 558,
2014-10-18 00:18:11 +02:00
/* 230 */
2014-10-18 00:31:50 +02:00
558, 497, 558, 558, 558, 558, 558, 465, 558, 558,
2014-10-18 00:18:11 +02:00
/* 240 */
2014-10-18 00:31:50 +02:00
558, 558, 558, 469, 497, 497, 463, 523, 558, 558,
2014-10-18 00:18:11 +02:00
/* 250 */
2014-10-18 00:31:50 +02:00
558, 457, 558, 558, 558, 558, 558, 558, 426, 558,
2014-10-18 00:18:11 +02:00
/* 260 */
2014-10-18 00:31:50 +02:00
477, 520, 495, 507, 490, 508, 487, 374, 498, 484,
2014-10-18 00:18:11 +02:00
/* 270 */
2014-10-18 00:31:50 +02:00
556, 364, 363, 365, 461, 366, 472, 466, 360, 359,
2014-10-18 00:18:11 +02:00
/* 280 */
2014-10-18 00:31:50 +02:00
462, 362, 464, 367, 430, 401, 469, 372, 373, 419,
2014-10-18 00:18:11 +02:00
/* 290 */
2014-10-18 00:31:50 +02:00
432, 427, 368, 369, 370, 371, 433, 470, 445, 497,
2014-10-18 00:18:11 +02:00
/* 300 */
2014-10-18 00:31:50 +02:00
446, 496, 450, 449, 500, 517, 545, 474, 552, 411,
2014-10-18 00:18:11 +02:00
/* 310 */
2014-10-18 00:31:50 +02:00
501, 478, 553, 526, 534, 533, 535, 536, 437, 537,
2014-10-18 00:18:11 +02:00
/* 320 */
2014-10-18 00:31:50 +02:00
532, 417, 528, 527, 529, 530, 531, 546, 547, 515,
2014-10-18 00:18:11 +02:00
/* 330 */
2014-10-18 00:31:50 +02:00
506, 375, 376, 509, 377, 516, 468, 494, 489, 492,
2014-10-18 00:18:11 +02:00
/* 340 */
2014-10-18 00:31:50 +02:00
491, 493, 379, 380, 555, 548, 554, 551, 550, 549,
2014-10-18 00:18:11 +02:00
/* 350 */
2014-10-18 00:31:50 +02:00
440, 416, 473, 471, 539, 540, 538, 488,
2014-10-18 00:18:11 +02:00
);
2014-10-18 00:31:50 +02:00
const YYNOCODE = 125;
2014-10-18 00:18:11 +02:00
const YYSTACKDEPTH = 500;
2014-10-18 00:31:50 +02:00
const YYNSTATE = 358;
const YYNRULE = 200;
const YYERRORSYMBOL = 82;
2014-10-18 00:18:11 +02:00
const YYERRSYMDT = 'yy0';
const YYFALLBACK = 0;
public static $yyFallback = array();
public function Trace($TraceFILE, $zTracePrompt)
{
if (!$TraceFILE) {
$zTracePrompt = 0;
} elseif (!$zTracePrompt) {
$TraceFILE = 0;
}
$this->yyTraceFILE = $TraceFILE;
$this->yyTracePrompt = $zTracePrompt;
}
public function PrintTrace()
{
$this->yyTraceFILE = fopen('php://output', 'w');
$this->yyTracePrompt = '<br>';
}
public $yyTraceFILE;
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', 'RDEL',
'COMMENT', 'PHPSTARTTAG', 'PHPENDTAG', 'PHPENDSCRIPT',
2014-10-18 00:31:50 +02:00
'ASPSTARTTAG', 'ASPENDTAG', 'XMLTAG', 'TEXT',
'STRIPON', 'STRIPOFF', 'BLOCKSOURCE', 'LITERALSTART',
'LITERALEND', 'LITERAL', 'LDEL', 'DOLLAR',
'ID', 'EQUAL', 'PTR', 'LDELIF',
'LDELFOR', 'SEMICOLON', 'INCDEC', 'TO',
'STEP', 'LDELFOREACH', 'SPACE', 'AS',
'APTR', 'LDELSETFILTER', 'SMARTYBLOCKCHILDPARENT', 'LDELSLASH',
'ATTR', 'INTEGER', 'COMMA', 'OPENP',
'CLOSEP', 'MATH', 'UNIMATH', 'ANDSYM',
'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN',
'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD',
'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF',
'QMARK', 'NOT', 'TYPECAST', 'HEX',
'DOT', 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT',
'HATCH', 'OPENB', 'CLOSEB', 'EQUALS',
'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL',
'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', 'MOD',
'LAND', 'LOR', 'LXOR', 'QUOTE',
'BACKTICK', 'DOLLARID', 'error', 'start',
'template', 'template_element', 'smartytag', 'literal',
'literal_elements', 'literal_element', 'value', 'modifierlist',
'attributes', 'expr', 'varindexed', 'statement',
'statements', 'optspace', 'varvar', 'foraction',
'modparameters', 'attribute', 'ternary', 'array',
'ifcond', 'lop', 'variable', 'function',
'doublequoted_with_quotes', 'static_class_access', 'object', 'arrayindex',
'indexdef', 'varvarele', 'objectchain', 'objectelement',
'method', 'params', 'modifier', 'modparameter',
'arrayelements', 'arrayelement', 'doublequoted', 'doublequotedcontent',
2014-10-18 00:18:11 +02:00
);
public static $yyRuleName = array(
/* 0 */
"start ::= template",
/* 1 */
"template ::= template_element",
/* 2 */
"template ::= template template_element",
/* 3 */
"template ::=",
/* 4 */
"template_element ::= smartytag RDEL",
/* 5 */
"template_element ::= COMMENT",
/* 6 */
"template_element ::= literal",
/* 7 */
"template_element ::= PHPSTARTTAG",
/* 8 */
"template_element ::= PHPENDTAG",
/* 9 */
"template_element ::= PHPENDSCRIPT",
/* 10 */
"template_element ::= ASPSTARTTAG",
/* 11 */
"template_element ::= ASPENDTAG",
/* 12 */
"template_element ::= XMLTAG",
2014-10-18 00:31:50 +02:00
/* 13 */
2014-10-18 00:18:11 +02:00
"template_element ::= TEXT",
2014-10-18 00:31:50 +02:00
/* 14 */
2014-10-18 00:18:11 +02:00
"template_element ::= STRIPON",
2014-10-18 00:31:50 +02:00
/* 15 */
2014-10-18 00:18:11 +02:00
"template_element ::= STRIPOFF",
2014-10-18 00:31:50 +02:00
/* 16 */
2014-10-18 00:18:11 +02:00
"template_element ::= BLOCKSOURCE",
2014-10-18 00:31:50 +02:00
/* 17 */
2014-10-18 00:18:11 +02:00
"literal ::= LITERALSTART LITERALEND",
2014-10-18 00:31:50 +02:00
/* 18 */
2014-10-18 00:18:11 +02:00
"literal ::= LITERALSTART literal_elements LITERALEND",
2014-10-18 00:31:50 +02:00
/* 19 */
2014-10-18 00:18:11 +02:00
"literal_elements ::= literal_elements literal_element",
2014-10-18 00:31:50 +02:00
/* 20 */
2014-10-18 00:18:11 +02:00
"literal_elements ::=",
2014-10-18 00:31:50 +02:00
/* 21 */
2014-10-18 00:18:11 +02:00
"literal_element ::= literal",
2014-10-18 00:31:50 +02:00
/* 22 */
2014-10-18 00:18:11 +02:00
"literal_element ::= LITERAL",
2014-10-18 00:31:50 +02:00
/* 23 */
"smartytag ::= LDEL value",
2014-10-18 00:18:11 +02:00
/* 24 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL value modifierlist attributes",
2014-10-18 00:18:11 +02:00
/* 25 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL value attributes",
2014-10-18 00:18:11 +02:00
/* 26 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL expr modifierlist attributes",
2014-10-18 00:18:11 +02:00
/* 27 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL expr attributes",
2014-10-18 00:18:11 +02:00
/* 28 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL DOLLAR ID EQUAL value",
2014-10-18 00:18:11 +02:00
/* 29 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL DOLLAR ID EQUAL expr",
2014-10-18 00:18:11 +02:00
/* 30 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL DOLLAR ID EQUAL expr attributes",
2014-10-18 00:18:11 +02:00
/* 31 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL varindexed EQUAL expr attributes",
2014-10-18 00:18:11 +02:00
/* 32 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL ID attributes",
2014-10-18 00:18:11 +02:00
/* 33 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL ID",
2014-10-18 00:18:11 +02:00
/* 34 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL ID PTR ID attributes",
2014-10-18 00:18:11 +02:00
/* 35 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL ID modifierlist attributes",
2014-10-18 00:18:11 +02:00
/* 36 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL ID PTR ID modifierlist attributes",
2014-10-18 00:18:11 +02:00
/* 37 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELIF expr",
2014-10-18 00:18:11 +02:00
/* 38 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELIF expr attributes",
2014-10-18 00:18:11 +02:00
/* 39 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELIF statement",
2014-10-18 00:18:11 +02:00
/* 40 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELIF statement attributes",
2014-10-18 00:18:11 +02:00
/* 41 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOR statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction attributes",
2014-10-18 00:18:11 +02:00
/* 42 */
2014-10-18 00:31:50 +02:00
"foraction ::= EQUAL expr",
2014-10-18 00:18:11 +02:00
/* 43 */
2014-10-18 00:31:50 +02:00
"foraction ::= INCDEC",
2014-10-18 00:18:11 +02:00
/* 44 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOR statement TO expr attributes",
2014-10-18 00:18:11 +02:00
/* 45 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOR statement TO expr STEP expr attributes",
2014-10-18 00:18:11 +02:00
/* 46 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOREACH attributes",
2014-10-18 00:18:11 +02:00
/* 47 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar attributes",
2014-10-18 00:18:11 +02:00
/* 48 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar attributes",
2014-10-18 00:18:11 +02:00
/* 49 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar attributes",
2014-10-18 00:18:11 +02:00
/* 50 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar APTR DOLLAR varvar attributes",
2014-10-18 00:18:11 +02:00
/* 51 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELSETFILTER ID modparameters",
2014-10-18 00:18:11 +02:00
/* 52 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELSETFILTER ID modparameters modifierlist",
2014-10-18 00:18:11 +02:00
/* 53 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDEL SMARTYBLOCKCHILDPARENT",
2014-10-18 00:18:11 +02:00
/* 54 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELSLASH ID",
2014-10-18 00:18:11 +02:00
/* 55 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELSLASH ID modifierlist",
2014-10-18 00:18:11 +02:00
/* 56 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELSLASH ID PTR ID",
2014-10-18 00:18:11 +02:00
/* 57 */
2014-10-18 00:31:50 +02:00
"smartytag ::= LDELSLASH ID PTR ID modifierlist",
2014-10-18 00:18:11 +02:00
/* 58 */
2014-10-18 00:31:50 +02:00
"attributes ::= attributes attribute",
2014-10-18 00:18:11 +02:00
/* 59 */
2014-10-18 00:31:50 +02:00
"attributes ::= attribute",
2014-10-18 00:18:11 +02:00
/* 60 */
2014-10-18 00:31:50 +02:00
"attributes ::=",
2014-10-18 00:18:11 +02:00
/* 61 */
2014-10-18 00:31:50 +02:00
"attribute ::= SPACE ID EQUAL ID",
2014-10-18 00:18:11 +02:00
/* 62 */
2014-10-18 00:31:50 +02:00
"attribute ::= ATTR expr",
2014-10-18 00:18:11 +02:00
/* 63 */
2014-10-18 00:31:50 +02:00
"attribute ::= ATTR value",
2014-10-18 00:18:11 +02:00
/* 64 */
2014-10-18 00:31:50 +02:00
"attribute ::= SPACE ID",
2014-10-18 00:18:11 +02:00
/* 65 */
2014-10-18 00:31:50 +02:00
"attribute ::= SPACE expr",
2014-10-18 00:18:11 +02:00
/* 66 */
2014-10-18 00:31:50 +02:00
"attribute ::= SPACE value",
2014-10-18 00:18:11 +02:00
/* 67 */
2014-10-18 00:31:50 +02:00
"attribute ::= SPACE INTEGER EQUAL expr",
2014-10-18 00:18:11 +02:00
/* 68 */
2014-10-18 00:31:50 +02:00
"statements ::= statement",
2014-10-18 00:18:11 +02:00
/* 69 */
2014-10-18 00:31:50 +02:00
"statements ::= statements COMMA statement",
2014-10-18 00:18:11 +02:00
/* 70 */
2014-10-18 00:31:50 +02:00
"statement ::= DOLLAR varvar EQUAL expr",
2014-10-18 00:18:11 +02:00
/* 71 */
2014-10-18 00:31:50 +02:00
"statement ::= varindexed EQUAL expr",
2014-10-18 00:18:11 +02:00
/* 72 */
2014-10-18 00:31:50 +02:00
"statement ::= OPENP statement CLOSEP",
2014-10-18 00:18:11 +02:00
/* 73 */
2014-10-18 00:31:50 +02:00
"expr ::= value",
2014-10-18 00:18:11 +02:00
/* 74 */
2014-10-18 00:31:50 +02:00
"expr ::= ternary",
2014-10-18 00:18:11 +02:00
/* 75 */
2014-10-18 00:31:50 +02:00
"expr ::= DOLLAR ID COLON ID",
2014-10-18 00:18:11 +02:00
/* 76 */
2014-10-18 00:31:50 +02:00
"expr ::= expr MATH value",
2014-10-18 00:18:11 +02:00
/* 77 */
2014-10-18 00:31:50 +02:00
"expr ::= expr UNIMATH value",
2014-10-18 00:18:11 +02:00
/* 78 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ANDSYM value",
2014-10-18 00:18:11 +02:00
/* 79 */
2014-10-18 00:31:50 +02:00
"expr ::= array",
2014-10-18 00:18:11 +02:00
/* 80 */
2014-10-18 00:31:50 +02:00
"expr ::= expr modifierlist",
2014-10-18 00:18:11 +02:00
/* 81 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ifcond expr",
2014-10-18 00:18:11 +02:00
/* 82 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISIN array",
2014-10-18 00:18:11 +02:00
/* 83 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISIN value",
2014-10-18 00:18:11 +02:00
/* 84 */
2014-10-18 00:31:50 +02:00
"expr ::= expr lop expr",
2014-10-18 00:18:11 +02:00
/* 85 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISDIVBY expr",
2014-10-18 00:18:11 +02:00
/* 86 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISNOTDIVBY expr",
2014-10-18 00:18:11 +02:00
/* 87 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISEVEN",
2014-10-18 00:18:11 +02:00
/* 88 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISNOTEVEN",
2014-10-18 00:18:11 +02:00
/* 89 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISEVENBY expr",
2014-10-18 00:18:11 +02:00
/* 90 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISNOTEVENBY expr",
2014-10-18 00:18:11 +02:00
/* 91 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISODD",
2014-10-18 00:18:11 +02:00
/* 92 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISNOTODD",
2014-10-18 00:18:11 +02:00
/* 93 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISODDBY expr",
2014-10-18 00:18:11 +02:00
/* 94 */
2014-10-18 00:31:50 +02:00
"expr ::= expr ISNOTODDBY expr",
2014-10-18 00:18:11 +02:00
/* 95 */
2014-10-18 00:31:50 +02:00
"expr ::= value INSTANCEOF ID",
2014-10-18 00:18:11 +02:00
/* 96 */
2014-10-18 00:31:50 +02:00
"expr ::= value INSTANCEOF value",
2014-10-18 00:18:11 +02:00
/* 97 */
"ternary ::= OPENP expr CLOSEP QMARK DOLLAR ID COLON expr",
2014-10-18 00:31:50 +02:00
/* 98 */
2014-10-18 00:18:11 +02:00
"ternary ::= OPENP expr CLOSEP QMARK expr COLON expr",
2014-10-18 00:31:50 +02:00
/* 99 */
2014-10-18 00:18:11 +02:00
"value ::= variable",
2014-10-18 00:31:50 +02:00
/* 100 */
2014-10-18 00:18:11 +02:00
"value ::= UNIMATH value",
2014-10-18 00:31:50 +02:00
/* 101 */
2014-10-18 00:18:11 +02:00
"value ::= NOT value",
2014-10-18 00:31:50 +02:00
/* 102 */
2014-10-18 00:18:11 +02:00
"value ::= TYPECAST value",
2014-10-18 00:31:50 +02:00
/* 103 */
2014-10-18 00:18:11 +02:00
"value ::= variable INCDEC",
2014-10-18 00:31:50 +02:00
/* 104 */
2014-10-18 00:18:11 +02:00
"value ::= HEX",
2014-10-18 00:31:50 +02:00
/* 105 */
2014-10-18 00:18:11 +02:00
"value ::= INTEGER",
2014-10-18 00:31:50 +02:00
/* 106 */
2014-10-18 00:18:11 +02:00
"value ::= INTEGER DOT INTEGER",
2014-10-18 00:31:50 +02:00
/* 107 */
2014-10-18 00:18:11 +02:00
"value ::= INTEGER DOT",
2014-10-18 00:31:50 +02:00
/* 108 */
2014-10-18 00:18:11 +02:00
"value ::= DOT INTEGER",
2014-10-18 00:31:50 +02:00
/* 109 */
2014-10-18 00:18:11 +02:00
"value ::= ID",
2014-10-18 00:31:50 +02:00
/* 110 */
2014-10-18 00:18:11 +02:00
"value ::= function",
2014-10-18 00:31:50 +02:00
/* 111 */
2014-10-18 00:18:11 +02:00
"value ::= OPENP expr CLOSEP",
2014-10-18 00:31:50 +02:00
/* 112 */
2014-10-18 00:18:11 +02:00
"value ::= SINGLEQUOTESTRING",
2014-10-18 00:31:50 +02:00
/* 113 */
2014-10-18 00:18:11 +02:00
"value ::= doublequoted_with_quotes",
2014-10-18 00:31:50 +02:00
/* 114 */
2014-10-18 00:18:11 +02:00
"value ::= ID DOUBLECOLON static_class_access",
2014-10-18 00:31:50 +02:00
/* 115 */
2014-10-18 00:18:11 +02:00
"value ::= varindexed DOUBLECOLON static_class_access",
2014-10-18 00:31:50 +02:00
/* 116 */
2014-10-18 00:18:11 +02:00
"value ::= smartytag RDEL",
2014-10-18 00:31:50 +02:00
/* 117 */
2014-10-18 00:18:11 +02:00
"value ::= value modifierlist",
2014-10-18 00:31:50 +02:00
/* 118 */
2014-10-18 00:18:11 +02:00
"variable ::= varindexed",
2014-10-18 00:31:50 +02:00
/* 119 */
2014-10-18 00:18:11 +02:00
"variable ::= DOLLAR varvar AT ID",
2014-10-18 00:31:50 +02:00
/* 120 */
2014-10-18 00:18:11 +02:00
"variable ::= object",
2014-10-18 00:31:50 +02:00
/* 121 */
2014-10-18 00:18:11 +02:00
"variable ::= HATCH ID HATCH",
2014-10-18 00:31:50 +02:00
/* 122 */
2014-10-18 00:18:11 +02:00
"variable ::= HATCH ID HATCH arrayindex",
2014-10-18 00:31:50 +02:00
/* 123 */
2014-10-18 00:18:11 +02:00
"variable ::= HATCH variable HATCH",
2014-10-18 00:31:50 +02:00
/* 124 */
2014-10-18 00:18:11 +02:00
"variable ::= HATCH variable HATCH arrayindex",
2014-10-18 00:31:50 +02:00
/* 125 */
2014-10-18 00:18:11 +02:00
"varindexed ::= DOLLAR varvar arrayindex",
2014-10-18 00:31:50 +02:00
/* 126 */
2014-10-18 00:18:11 +02:00
"arrayindex ::= arrayindex indexdef",
2014-10-18 00:31:50 +02:00
/* 127 */
2014-10-18 00:18:11 +02:00
"arrayindex ::=",
2014-10-18 00:31:50 +02:00
/* 128 */
2014-10-18 00:18:11 +02:00
"indexdef ::= DOT DOLLAR varvar",
2014-10-18 00:31:50 +02:00
/* 129 */
2014-10-18 00:18:11 +02:00
"indexdef ::= DOT DOLLAR varvar AT ID",
2014-10-18 00:31:50 +02:00
/* 130 */
2014-10-18 00:18:11 +02:00
"indexdef ::= DOT ID",
2014-10-18 00:31:50 +02:00
/* 131 */
2014-10-18 00:18:11 +02:00
"indexdef ::= DOT INTEGER",
2014-10-18 00:31:50 +02:00
/* 132 */
2014-10-18 00:18:11 +02:00
"indexdef ::= DOT LDEL expr RDEL",
2014-10-18 00:31:50 +02:00
/* 133 */
2014-10-18 00:18:11 +02:00
"indexdef ::= OPENB ID CLOSEB",
2014-10-18 00:31:50 +02:00
/* 134 */
2014-10-18 00:18:11 +02:00
"indexdef ::= OPENB ID DOT ID CLOSEB",
2014-10-18 00:31:50 +02:00
/* 135 */
2014-10-18 00:18:11 +02:00
"indexdef ::= OPENB expr CLOSEB",
2014-10-18 00:31:50 +02:00
/* 136 */
2014-10-18 00:18:11 +02:00
"indexdef ::= OPENB CLOSEB",
2014-10-18 00:31:50 +02:00
/* 137 */
2014-10-18 00:18:11 +02:00
"varvar ::= varvarele",
2014-10-18 00:31:50 +02:00
/* 138 */
2014-10-18 00:18:11 +02:00
"varvar ::= varvar varvarele",
2014-10-18 00:31:50 +02:00
/* 139 */
2014-10-18 00:18:11 +02:00
"varvarele ::= ID",
2014-10-18 00:31:50 +02:00
/* 140 */
2014-10-18 00:18:11 +02:00
"varvarele ::= LDEL expr RDEL",
2014-10-18 00:31:50 +02:00
/* 141 */
2014-10-18 00:18:11 +02:00
"object ::= varindexed objectchain",
2014-10-18 00:31:50 +02:00
/* 142 */
2014-10-18 00:18:11 +02:00
"objectchain ::= objectelement",
2014-10-18 00:31:50 +02:00
/* 143 */
2014-10-18 00:18:11 +02:00
"objectchain ::= objectchain objectelement",
2014-10-18 00:31:50 +02:00
/* 144 */
2014-10-18 00:18:11 +02:00
"objectelement ::= PTR ID arrayindex",
2014-10-18 00:31:50 +02:00
/* 145 */
2014-10-18 00:18:11 +02:00
"objectelement ::= PTR DOLLAR varvar arrayindex",
2014-10-18 00:31:50 +02:00
/* 146 */
2014-10-18 00:18:11 +02:00
"objectelement ::= PTR LDEL expr RDEL arrayindex",
2014-10-18 00:31:50 +02:00
/* 147 */
2014-10-18 00:18:11 +02:00
"objectelement ::= PTR ID LDEL expr RDEL arrayindex",
2014-10-18 00:31:50 +02:00
/* 148 */
2014-10-18 00:18:11 +02:00
"objectelement ::= PTR method",
2014-10-18 00:31:50 +02:00
/* 149 */
2014-10-18 00:18:11 +02:00
"function ::= ID OPENP params CLOSEP",
2014-10-18 00:31:50 +02:00
/* 150 */
2014-10-18 00:18:11 +02:00
"method ::= ID OPENP params CLOSEP",
2014-10-18 00:31:50 +02:00
/* 151 */
2014-10-18 00:18:11 +02:00
"method ::= DOLLAR ID OPENP params CLOSEP",
2014-10-18 00:31:50 +02:00
/* 152 */
2014-10-18 00:18:11 +02:00
"params ::= params COMMA expr",
2014-10-18 00:31:50 +02:00
/* 153 */
2014-10-18 00:18:11 +02:00
"params ::= expr",
2014-10-18 00:31:50 +02:00
/* 154 */
2014-10-18 00:18:11 +02:00
"params ::=",
2014-10-18 00:31:50 +02:00
/* 155 */
2014-10-18 00:18:11 +02:00
"modifierlist ::= modifierlist modifier modparameters",
2014-10-18 00:31:50 +02:00
/* 156 */
2014-10-18 00:18:11 +02:00
"modifierlist ::= modifier modparameters",
2014-10-18 00:31:50 +02:00
/* 157 */
2014-10-18 00:18:11 +02:00
"modifier ::= VERT AT ID",
2014-10-18 00:31:50 +02:00
/* 158 */
2014-10-18 00:18:11 +02:00
"modifier ::= VERT ID",
2014-10-18 00:31:50 +02:00
/* 159 */
2014-10-18 00:18:11 +02:00
"modparameters ::= modparameters modparameter",
2014-10-18 00:31:50 +02:00
/* 160 */
2014-10-18 00:18:11 +02:00
"modparameters ::=",
2014-10-18 00:31:50 +02:00
/* 161 */
2014-10-18 00:18:11 +02:00
"modparameter ::= COLON value",
2014-10-18 00:31:50 +02:00
/* 162 */
2014-10-18 00:18:11 +02:00
"modparameter ::= COLON array",
2014-10-18 00:31:50 +02:00
/* 163 */
2014-10-18 00:18:11 +02:00
"static_class_access ::= method",
2014-10-18 00:31:50 +02:00
/* 164 */
2014-10-18 00:18:11 +02:00
"static_class_access ::= method objectchain",
2014-10-18 00:31:50 +02:00
/* 165 */
2014-10-18 00:18:11 +02:00
"static_class_access ::= ID",
2014-10-18 00:31:50 +02:00
/* 166 */
2014-10-18 00:18:11 +02:00
"static_class_access ::= DOLLAR ID arrayindex",
2014-10-18 00:31:50 +02:00
/* 167 */
2014-10-18 00:18:11 +02:00
"static_class_access ::= DOLLAR ID arrayindex objectchain",
2014-10-18 00:31:50 +02:00
/* 168 */
2014-10-18 00:18:11 +02:00
"ifcond ::= EQUALS",
2014-10-18 00:31:50 +02:00
/* 169 */
2014-10-18 00:18:11 +02:00
"ifcond ::= NOTEQUALS",
2014-10-18 00:31:50 +02:00
/* 170 */
2014-10-18 00:18:11 +02:00
"ifcond ::= GREATERTHAN",
2014-10-18 00:31:50 +02:00
/* 171 */
2014-10-18 00:18:11 +02:00
"ifcond ::= LESSTHAN",
2014-10-18 00:31:50 +02:00
/* 172 */
2014-10-18 00:18:11 +02:00
"ifcond ::= GREATEREQUAL",
2014-10-18 00:31:50 +02:00
/* 173 */
2014-10-18 00:18:11 +02:00
"ifcond ::= LESSEQUAL",
2014-10-18 00:31:50 +02:00
/* 174 */
2014-10-18 00:18:11 +02:00
"ifcond ::= IDENTITY",
2014-10-18 00:31:50 +02:00
/* 175 */
2014-10-18 00:18:11 +02:00
"ifcond ::= NONEIDENTITY",
2014-10-18 00:31:50 +02:00
/* 176 */
2014-10-18 00:18:11 +02:00
"ifcond ::= MOD",
2014-10-18 00:31:50 +02:00
/* 177 */
2014-10-18 00:18:11 +02:00
"lop ::= LAND",
2014-10-18 00:31:50 +02:00
/* 178 */
2014-10-18 00:18:11 +02:00
"lop ::= LOR",
2014-10-18 00:31:50 +02:00
/* 179 */
2014-10-18 00:18:11 +02:00
"lop ::= LXOR",
2014-10-18 00:31:50 +02:00
/* 180 */
2014-10-18 00:18:11 +02:00
"array ::= OPENB arrayelements CLOSEB",
2014-10-18 00:31:50 +02:00
/* 181 */
2014-10-18 00:18:11 +02:00
"arrayelements ::= arrayelement",
2014-10-18 00:31:50 +02:00
/* 182 */
2014-10-18 00:18:11 +02:00
"arrayelements ::= arrayelements COMMA arrayelement",
2014-10-18 00:31:50 +02:00
/* 183 */
2014-10-18 00:18:11 +02:00
"arrayelements ::=",
2014-10-18 00:31:50 +02:00
/* 184 */
2014-10-18 00:18:11 +02:00
"arrayelement ::= value APTR expr",
2014-10-18 00:31:50 +02:00
/* 185 */
2014-10-18 00:18:11 +02:00
"arrayelement ::= ID APTR expr",
2014-10-18 00:31:50 +02:00
/* 186 */
2014-10-18 00:18:11 +02:00
"arrayelement ::= expr",
2014-10-18 00:31:50 +02:00
/* 187 */
2014-10-18 00:18:11 +02:00
"doublequoted_with_quotes ::= QUOTE QUOTE",
2014-10-18 00:31:50 +02:00
/* 188 */
2014-10-18 00:18:11 +02:00
"doublequoted_with_quotes ::= QUOTE doublequoted QUOTE",
2014-10-18 00:31:50 +02:00
/* 189 */
2014-10-18 00:18:11 +02:00
"doublequoted ::= doublequoted doublequotedcontent",
2014-10-18 00:31:50 +02:00
/* 190 */
2014-10-18 00:18:11 +02:00
"doublequoted ::= doublequotedcontent",
2014-10-18 00:31:50 +02:00
/* 191 */
2014-10-18 00:18:11 +02:00
"doublequotedcontent ::= BACKTICK variable BACKTICK",
2014-10-18 00:31:50 +02:00
/* 192 */
2014-10-18 00:18:11 +02:00
"doublequotedcontent ::= BACKTICK expr BACKTICK",
2014-10-18 00:31:50 +02:00
/* 193 */
2014-10-18 00:18:11 +02:00
"doublequotedcontent ::= DOLLARID",
2014-10-18 00:31:50 +02:00
/* 194 */
2014-10-18 00:18:11 +02:00
"doublequotedcontent ::= LDEL variable RDEL",
2014-10-18 00:31:50 +02:00
/* 195 */
2014-10-18 00:18:11 +02:00
"doublequotedcontent ::= LDEL expr RDEL",
2014-10-18 00:31:50 +02:00
/* 196 */
2014-10-18 00:18:11 +02:00
"doublequotedcontent ::= smartytag RDEL",
2014-10-18 00:31:50 +02:00
/* 197 */
2014-10-18 00:18:11 +02:00
"doublequotedcontent ::= TEXT",
2014-10-18 00:31:50 +02:00
/* 198 */
2014-10-18 00:18:11 +02:00
"optspace ::= SPACE",
2014-10-18 00:31:50 +02:00
/* 199 */
2014-10-18 00:18:11 +02:00
"optspace ::=",
);
public function tokenName($tokenType)
{
if ($tokenType === 0) {
return 'End of Input';
}
if ($tokenType > 0 && $tokenType < count($this->yyTokenName)) {
return $this->yyTokenName[$tokenType];
} else {
return "Unknown";
}
}
public static function yy_destructor($yymajor, $yypminor)
{
switch ($yymajor) {
default:
break; /* If no destructor action specified: do nothing */
}
}
public function yy_pop_parser_stack()
{
if (!count($this->yystack)) {
return;
}
$yytos = array_pop($this->yystack);
if ($this->yyTraceFILE && $this->yyidx >= 0) {
fwrite($this->yyTraceFILE,
$this->yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] .
"\n");
}
$yymajor = $yytos->major;
self::yy_destructor($yymajor, $yytos->minor);
$this->yyidx --;
return $yymajor;
}
public function __destruct()
{
while ($this->yystack !== Array()) {
$this->yy_pop_parser_stack();
}
if (is_resource($this->yyTraceFILE)) {
fclose($this->yyTraceFILE);
}
}
public 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 = array_merge($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);
$this->yyidx = $yyidx;
$this->yystack = $stack;
return array_unique($expected);
}
public 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;
}
public 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 ($this->yyTraceFILE) {
fwrite($this->yyTraceFILE, $this->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];
}
}
public 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];
}
}
public function yy_shift($yyNewState, $yyMajor, $yypMinor)
{
$this->yyidx ++;
if ($this->yyidx >= self::YYSTACKDEPTH) {
$this->yyidx --;
if ($this->yyTraceFILE) {
fprintf($this->yyTraceFILE, "%sStack Overflow!\n", $this->yyTracePrompt);
}
while ($this->yyidx >= 0) {
$this->yy_pop_parser_stack();
}
2014-10-18 00:31:50 +02:00
#line 82 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
$this->internalError = true;
$this->compiler->trigger_template_error("Stack overflow in template parser");
2014-10-18 00:31:50 +02:00
#line 1721 "smarty_internal_templateparser.php"
2014-10-18 00:18:11 +02:00
return;
}
$yytos = new TP_yyStackEntry;
$yytos->stateno = $yyNewState;
$yytos->major = $yyMajor;
$yytos->minor = $yypMinor;
array_push($this->yystack, $yytos);
if ($this->yyTraceFILE && $this->yyidx > 0) {
fprintf($this->yyTraceFILE, "%sShift %d\n", $this->yyTracePrompt,
$yyNewState);
fprintf($this->yyTraceFILE, "%sStack:", $this->yyTracePrompt);
for ($i = 1; $i <= $this->yyidx; $i ++) {
fprintf($this->yyTraceFILE, " %s",
$this->yyTokenName[$this->yystack[$i]->major]);
}
fwrite($this->yyTraceFILE, "\n");
}
}
public static $yyRuleInfo = array(
2014-10-18 00:31:50 +02:00
array('lhs' => 83, 'rhs' => 1),
2014-10-18 00:18:11 +02:00
array('lhs' => 84, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 84, 'rhs' => 2),
array('lhs' => 84, 'rhs' => 0),
2014-10-18 00:18:11 +02:00
array('lhs' => 85, 'rhs' => 2),
2014-10-18 00:31:50 +02:00
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 85, 'rhs' => 1),
array('lhs' => 87, 'rhs' => 2),
array('lhs' => 87, 'rhs' => 3),
2014-10-18 00:18:11 +02:00
array('lhs' => 88, 'rhs' => 2),
2014-10-18 00:31:50 +02:00
array('lhs' => 88, 'rhs' => 0),
array('lhs' => 89, 'rhs' => 1),
array('lhs' => 89, 'rhs' => 1),
array('lhs' => 86, 'rhs' => 2),
array('lhs' => 86, 'rhs' => 4),
array('lhs' => 86, 'rhs' => 3),
array('lhs' => 86, 'rhs' => 4),
array('lhs' => 86, 'rhs' => 3),
array('lhs' => 86, 'rhs' => 5),
array('lhs' => 86, 'rhs' => 5),
array('lhs' => 86, 'rhs' => 6),
array('lhs' => 86, 'rhs' => 5),
array('lhs' => 86, 'rhs' => 3),
array('lhs' => 86, 'rhs' => 2),
array('lhs' => 86, 'rhs' => 5),
array('lhs' => 86, 'rhs' => 4),
array('lhs' => 86, 'rhs' => 6),
array('lhs' => 86, 'rhs' => 2),
array('lhs' => 86, 'rhs' => 3),
array('lhs' => 86, 'rhs' => 2),
array('lhs' => 86, 'rhs' => 3),
array('lhs' => 86, 'rhs' => 11),
array('lhs' => 99, 'rhs' => 2),
array('lhs' => 99, 'rhs' => 1),
array('lhs' => 86, 'rhs' => 5),
array('lhs' => 86, 'rhs' => 7),
array('lhs' => 86, 'rhs' => 2),
array('lhs' => 86, 'rhs' => 7),
array('lhs' => 86, 'rhs' => 10),
array('lhs' => 86, 'rhs' => 7),
array('lhs' => 86, 'rhs' => 10),
array('lhs' => 86, 'rhs' => 3),
array('lhs' => 86, 'rhs' => 4),
array('lhs' => 86, 'rhs' => 2),
array('lhs' => 86, 'rhs' => 2),
array('lhs' => 86, 'rhs' => 3),
array('lhs' => 86, 'rhs' => 4),
array('lhs' => 86, 'rhs' => 5),
array('lhs' => 92, 'rhs' => 2),
array('lhs' => 92, 'rhs' => 1),
array('lhs' => 92, 'rhs' => 0),
array('lhs' => 101, 'rhs' => 4),
array('lhs' => 101, 'rhs' => 2),
array('lhs' => 101, 'rhs' => 2),
array('lhs' => 101, 'rhs' => 2),
array('lhs' => 101, 'rhs' => 2),
array('lhs' => 101, 'rhs' => 2),
array('lhs' => 101, 'rhs' => 4),
array('lhs' => 96, 'rhs' => 1),
array('lhs' => 96, 'rhs' => 3),
array('lhs' => 95, 'rhs' => 4),
array('lhs' => 95, 'rhs' => 3),
array('lhs' => 95, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 1),
array('lhs' => 93, 'rhs' => 1),
array('lhs' => 93, 'rhs' => 4),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 1),
array('lhs' => 93, 'rhs' => 2),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 2),
array('lhs' => 93, 'rhs' => 2),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 2),
array('lhs' => 93, 'rhs' => 2),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 93, 'rhs' => 3),
array('lhs' => 102, 'rhs' => 8),
array('lhs' => 102, 'rhs' => 7),
2014-10-18 00:18:11 +02:00
array('lhs' => 90, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 90, 'rhs' => 2),
array('lhs' => 90, 'rhs' => 2),
array('lhs' => 90, 'rhs' => 2),
array('lhs' => 90, 'rhs' => 2),
2014-10-18 00:18:11 +02:00
array('lhs' => 90, 'rhs' => 1),
array('lhs' => 90, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 90, 'rhs' => 3),
array('lhs' => 90, 'rhs' => 2),
array('lhs' => 90, 'rhs' => 2),
2014-10-18 00:18:11 +02:00
array('lhs' => 90, 'rhs' => 1),
array('lhs' => 90, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 90, 'rhs' => 3),
2014-10-18 00:18:11 +02:00
array('lhs' => 90, 'rhs' => 1),
array('lhs' => 90, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 90, 'rhs' => 3),
array('lhs' => 90, 'rhs' => 3),
array('lhs' => 90, 'rhs' => 2),
array('lhs' => 90, 'rhs' => 2),
array('lhs' => 106, 'rhs' => 1),
array('lhs' => 106, 'rhs' => 4),
array('lhs' => 106, 'rhs' => 1),
array('lhs' => 106, 'rhs' => 3),
array('lhs' => 106, 'rhs' => 4),
array('lhs' => 106, 'rhs' => 3),
array('lhs' => 106, 'rhs' => 4),
2014-10-18 00:18:11 +02:00
array('lhs' => 94, 'rhs' => 3),
2014-10-18 00:31:50 +02:00
array('lhs' => 111, 'rhs' => 2),
array('lhs' => 111, 'rhs' => 0),
array('lhs' => 112, 'rhs' => 3),
array('lhs' => 112, 'rhs' => 5),
2014-10-18 00:18:11 +02:00
array('lhs' => 112, 'rhs' => 2),
2014-10-18 00:31:50 +02:00
array('lhs' => 112, 'rhs' => 2),
array('lhs' => 112, 'rhs' => 4),
array('lhs' => 112, 'rhs' => 3),
array('lhs' => 112, 'rhs' => 5),
array('lhs' => 112, 'rhs' => 3),
array('lhs' => 112, 'rhs' => 2),
array('lhs' => 98, 'rhs' => 1),
array('lhs' => 98, 'rhs' => 2),
array('lhs' => 113, 'rhs' => 1),
2014-10-18 00:18:11 +02:00
array('lhs' => 113, 'rhs' => 3),
2014-10-18 00:31:50 +02:00
array('lhs' => 110, 'rhs' => 2),
2014-10-18 00:18:11 +02:00
array('lhs' => 114, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 114, 'rhs' => 2),
array('lhs' => 115, 'rhs' => 3),
array('lhs' => 115, 'rhs' => 4),
array('lhs' => 115, 'rhs' => 5),
array('lhs' => 115, 'rhs' => 6),
2014-10-18 00:18:11 +02:00
array('lhs' => 115, 'rhs' => 2),
2014-10-18 00:31:50 +02:00
array('lhs' => 107, 'rhs' => 4),
2014-10-18 00:18:11 +02:00
array('lhs' => 116, 'rhs' => 4),
array('lhs' => 116, 'rhs' => 5),
2014-10-18 00:31:50 +02:00
array('lhs' => 117, 'rhs' => 3),
array('lhs' => 117, 'rhs' => 1),
array('lhs' => 117, 'rhs' => 0),
array('lhs' => 91, 'rhs' => 3),
array('lhs' => 91, 'rhs' => 2),
2014-10-18 00:18:11 +02:00
array('lhs' => 118, 'rhs' => 3),
2014-10-18 00:31:50 +02:00
array('lhs' => 118, 'rhs' => 2),
array('lhs' => 100, 'rhs' => 2),
array('lhs' => 100, 'rhs' => 0),
2014-10-18 00:18:11 +02:00
array('lhs' => 119, 'rhs' => 2),
2014-10-18 00:31:50 +02:00
array('lhs' => 119, 'rhs' => 2),
array('lhs' => 109, 'rhs' => 1),
array('lhs' => 109, 'rhs' => 2),
array('lhs' => 109, 'rhs' => 1),
array('lhs' => 109, 'rhs' => 3),
array('lhs' => 109, 'rhs' => 4),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
array('lhs' => 104, 'rhs' => 1),
2014-10-18 00:18:11 +02:00
array('lhs' => 105, 'rhs' => 1),
array('lhs' => 105, 'rhs' => 1),
array('lhs' => 105, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 103, 'rhs' => 3),
array('lhs' => 120, 'rhs' => 1),
array('lhs' => 120, 'rhs' => 3),
array('lhs' => 120, 'rhs' => 0),
array('lhs' => 121, 'rhs' => 3),
2014-10-18 00:18:11 +02:00
array('lhs' => 121, 'rhs' => 3),
2014-10-18 00:31:50 +02:00
array('lhs' => 121, 'rhs' => 1),
array('lhs' => 108, 'rhs' => 2),
array('lhs' => 108, 'rhs' => 3),
array('lhs' => 122, 'rhs' => 2),
2014-10-18 00:18:11 +02:00
array('lhs' => 122, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 123, 'rhs' => 3),
array('lhs' => 123, 'rhs' => 3),
array('lhs' => 123, 'rhs' => 1),
array('lhs' => 123, 'rhs' => 3),
array('lhs' => 123, 'rhs' => 3),
2014-10-18 00:18:11 +02:00
array('lhs' => 123, 'rhs' => 2),
array('lhs' => 123, 'rhs' => 1),
2014-10-18 00:31:50 +02:00
array('lhs' => 97, 'rhs' => 1),
array('lhs' => 97, 'rhs' => 0),
2014-10-18 00:18:11 +02:00
);
public static $yyReduceMap = array(
0 => 0,
1 => 1,
2014-10-18 00:31:50 +02:00
2 => 2,
2014-10-18 00:18:11 +02:00
4 => 4,
5 => 5,
6 => 6,
7 => 7,
8 => 8,
9 => 9,
10 => 10,
11 => 11,
12 => 12,
13 => 13,
14 => 14,
15 => 15,
16 => 16,
17 => 17,
2014-10-18 00:31:50 +02:00
20 => 17,
199 => 17,
2014-10-18 00:18:11 +02:00
18 => 18,
2014-10-18 00:31:50 +02:00
72 => 18,
2014-10-18 00:18:11 +02:00
19 => 19,
2014-10-18 00:31:50 +02:00
100 => 19,
102 => 19,
103 => 19,
126 => 19,
164 => 19,
21 => 21,
22 => 21,
43 => 21,
65 => 21,
66 => 21,
73 => 21,
74 => 21,
79 => 21,
99 => 21,
104 => 21,
105 => 21,
110 => 21,
112 => 21,
113 => 21,
120 => 21,
137 => 21,
163 => 21,
165 => 21,
181 => 21,
186 => 21,
198 => 21,
23 => 23,
2014-10-18 00:18:11 +02:00
24 => 24,
2014-10-18 00:31:50 +02:00
25 => 25,
27 => 25,
2014-10-18 00:18:11 +02:00
26 => 26,
28 => 28,
2014-10-18 00:31:50 +02:00
29 => 28,
2014-10-18 00:18:11 +02:00
30 => 30,
31 => 31,
32 => 32,
2014-10-18 00:31:50 +02:00
33 => 33,
2014-10-18 00:18:11 +02:00
34 => 34,
2014-10-18 00:31:50 +02:00
35 => 35,
2014-10-18 00:18:11 +02:00
36 => 36,
37 => 37,
38 => 38,
2014-10-18 00:31:50 +02:00
40 => 38,
2014-10-18 00:18:11 +02:00
39 => 39,
41 => 41,
42 => 42,
44 => 44,
45 => 45,
2014-10-18 00:31:50 +02:00
46 => 46,
2014-10-18 00:18:11 +02:00
47 => 47,
2014-10-18 00:31:50 +02:00
49 => 47,
2014-10-18 00:18:11 +02:00
48 => 48,
2014-10-18 00:31:50 +02:00
50 => 48,
2014-10-18 00:18:11 +02:00
51 => 51,
52 => 52,
53 => 53,
54 => 54,
2014-10-18 00:31:50 +02:00
55 => 55,
56 => 56,
2014-10-18 00:18:11 +02:00
57 => 57,
58 => 58,
59 => 59,
2014-10-18 00:31:50 +02:00
68 => 59,
153 => 59,
157 => 59,
161 => 59,
162 => 59,
2014-10-18 00:18:11 +02:00
60 => 60,
2014-10-18 00:31:50 +02:00
154 => 60,
160 => 60,
2014-10-18 00:18:11 +02:00
61 => 61,
62 => 62,
2014-10-18 00:31:50 +02:00
63 => 62,
2014-10-18 00:18:11 +02:00
64 => 64,
67 => 67,
2014-10-18 00:31:50 +02:00
69 => 69,
2014-10-18 00:18:11 +02:00
70 => 70,
2014-10-18 00:31:50 +02:00
71 => 70,
2014-10-18 00:18:11 +02:00
75 => 75,
76 => 76,
77 => 76,
2014-10-18 00:31:50 +02:00
78 => 76,
80 => 80,
117 => 80,
2014-10-18 00:18:11 +02:00
81 => 81,
2014-10-18 00:31:50 +02:00
84 => 81,
95 => 81,
2014-10-18 00:18:11 +02:00
82 => 82,
2014-10-18 00:31:50 +02:00
83 => 83,
85 => 85,
2014-10-18 00:18:11 +02:00
86 => 86,
87 => 87,
2014-10-18 00:31:50 +02:00
92 => 87,
2014-10-18 00:18:11 +02:00
88 => 88,
2014-10-18 00:31:50 +02:00
91 => 88,
2014-10-18 00:18:11 +02:00
89 => 89,
2014-10-18 00:31:50 +02:00
94 => 89,
90 => 90,
93 => 90,
2014-10-18 00:18:11 +02:00
96 => 96,
2014-10-18 00:31:50 +02:00
97 => 97,
98 => 98,
101 => 101,
106 => 106,
2014-10-18 00:18:11 +02:00
107 => 107,
2014-10-18 00:31:50 +02:00
108 => 108,
109 => 109,
111 => 111,
2014-10-18 00:18:11 +02:00
114 => 114,
115 => 115,
2014-10-18 00:31:50 +02:00
116 => 116,
118 => 118,
119 => 119,
2014-10-18 00:18:11 +02:00
121 => 121,
122 => 122,
2014-10-18 00:31:50 +02:00
123 => 123,
2014-10-18 00:18:11 +02:00
124 => 124,
125 => 125,
127 => 127,
2014-10-18 00:31:50 +02:00
183 => 127,
2014-10-18 00:18:11 +02:00
128 => 128,
129 => 129,
130 => 130,
131 => 131,
2014-10-18 00:31:50 +02:00
132 => 132,
135 => 132,
2014-10-18 00:18:11 +02:00
133 => 133,
134 => 134,
136 => 136,
138 => 138,
139 => 139,
140 => 140,
2014-10-18 00:31:50 +02:00
141 => 141,
2014-10-18 00:18:11 +02:00
142 => 142,
2014-10-18 00:31:50 +02:00
143 => 143,
2014-10-18 00:18:11 +02:00
144 => 144,
145 => 145,
146 => 146,
147 => 147,
148 => 148,
149 => 149,
150 => 150,
151 => 151,
152 => 152,
155 => 155,
156 => 156,
158 => 158,
2014-10-18 00:31:50 +02:00
159 => 159,
166 => 166,
167 => 167,
168 => 168,
169 => 169,
170 => 170,
171 => 171,
2014-10-18 00:18:11 +02:00
172 => 172,
173 => 173,
174 => 174,
175 => 175,
176 => 176,
177 => 177,
178 => 178,
179 => 179,
180 => 180,
182 => 182,
184 => 184,
185 => 185,
2014-10-18 00:31:50 +02:00
187 => 187,
2014-10-18 00:18:11 +02:00
188 => 188,
2014-10-18 00:31:50 +02:00
189 => 189,
2014-10-18 00:18:11 +02:00
190 => 190,
191 => 191,
2014-10-18 00:31:50 +02:00
192 => 191,
194 => 191,
2014-10-18 00:18:11 +02:00
193 => 193,
195 => 195,
196 => 196,
197 => 197,
);
2014-10-18 00:31:50 +02:00
#line 93 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r0()
{
$this->_retvalue = $this->root_buffer->to_smarty_php();
}
2014-10-18 00:31:50 +02:00
#line 2150 "smarty_internal_templateparser.php"
#line 101 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r1()
{
if ($this->yystack[$this->yyidx + 0]->minor != null) {
$this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor);
}
}
2014-10-18 00:31:50 +02:00
#line 2157 "smarty_internal_templateparser.php"
#line 108 "smarty_internal_templateparser.y"
function yy_r2()
{
if ($this->yystack[$this->yyidx + 0]->minor != null) {
// because of possible code injection
$this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor);
}
}
#line 2165 "smarty_internal_templateparser.php"
#line 122 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r4()
{
if ($this->compiler->has_code) {
$tmp = '';
foreach ($this->compiler->prefix_code as $code) {
$tmp .= $code;
}
$this->compiler->prefix_code = array();
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode($tmp . $this->yystack[$this->yyidx + - 1]->minor, true));
} else {
$this->_retvalue = null;
}
$this->compiler->has_variable_string = false;
$this->block_nesting_level = count($this->compiler->_tag_stack);
}
2014-10-18 00:31:50 +02:00
#line 2177 "smarty_internal_templateparser.php"
#line 134 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r5()
{
$this->_retvalue = null;
}
2014-10-18 00:31:50 +02:00
#line 2182 "smarty_internal_templateparser.php"
#line 139 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r6()
{
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2187 "smarty_internal_templateparser.php"
#line 144 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r7()
{
if (strpos($this->yystack[$this->yyidx + 0]->minor, '<s') === 0) {
$this->lex->is_phpScript = true;
}
if ($this->php_handling == Smarty::PHP_PASSTHRU) {
2014-10-18 00:31:50 +02:00
if ($this->lex->is_phpScript) {
$s = addcslashes($this->yystack[$this->yyidx + 0]->minor, "'");
$this->_retvalue = new _smarty_text($this, $s);
} else {
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:18:11 +02:00
} elseif ($this->php_handling == Smarty::PHP_QUOTE) {
$this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
} elseif ($this->php_handling == Smarty::PHP_ALLOW) {
if (!($this->smarty instanceof SmartyBC)) {
$this->compiler->trigger_template_error(self::Err3);
}
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode('<?php ', true));
2014-10-18 00:18:11 +02:00
} elseif ($this->php_handling == Smarty::PHP_REMOVE) {
$this->_retvalue = null;
}
}
2014-10-18 00:31:50 +02:00
#line 2211 "smarty_internal_templateparser.php"
#line 168 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r8()
{
if ($this->is_xml) {
$this->compiler->tag_nocache = true;
$this->is_xml = false;
$save = $this->template->has_nocache_code;
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode("<?php echo '?>';?>\n", $this->compiler, true));
2014-10-18 00:18:11 +02:00
$this->template->has_nocache_code = $save;
} elseif ($this->php_handling == Smarty::PHP_PASSTHRU) {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
2014-10-18 00:18:11 +02:00
} elseif ($this->php_handling == Smarty::PHP_QUOTE) {
$this->_retvalue = new _smarty_text($this, htmlspecialchars('?>', ENT_QUOTES));
} elseif ($this->php_handling == Smarty::PHP_ALLOW) {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode('?>', true));
2014-10-18 00:18:11 +02:00
} elseif ($this->php_handling == Smarty::PHP_REMOVE) {
$this->_retvalue = null;
}
}
2014-10-18 00:31:50 +02:00
#line 2230 "smarty_internal_templateparser.php"
#line 186 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r9()
{
if (!$this->lex->is_phpScript) {
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
} else {
$this->lex->is_phpScript = false;
if ($this->php_handling == Smarty::PHP_PASSTHRU) {
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
} elseif ($this->php_handling == Smarty::PHP_QUOTE) {
$this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
} elseif ($this->php_handling == Smarty::PHP_ALLOW) {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode('?>', true));
2014-10-18 00:18:11 +02:00
} elseif ($this->php_handling == Smarty::PHP_REMOVE) {
$this->_retvalue = null;
}
}
}
2014-10-18 00:31:50 +02:00
#line 2248 "smarty_internal_templateparser.php"
#line 204 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r10()
{
if ($this->php_handling == Smarty::PHP_PASSTHRU) {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
2014-10-18 00:18:11 +02:00
} elseif ($this->php_handling == Smarty::PHP_QUOTE) {
$this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
} elseif ($this->php_handling == Smarty::PHP_ALLOW) {
if ($this->asp_tags) {
if (!($this->smarty instanceof SmartyBC)) {
$this->compiler->trigger_template_error(self::Err3);
}
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode('<%', true));
2014-10-18 00:18:11 +02:00
} else {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
2014-10-18 00:18:11 +02:00
}
} elseif ($this->php_handling == Smarty::PHP_REMOVE) {
if ($this->asp_tags) {
$this->_retvalue = null;
} else {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
2014-10-18 00:18:11 +02:00
}
}
}
2014-10-18 00:31:50 +02:00
#line 2272 "smarty_internal_templateparser.php"
#line 228 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r11()
{
if ($this->php_handling == Smarty::PHP_PASSTHRU) {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_text($this, st);
2014-10-18 00:18:11 +02:00
} elseif ($this->php_handling == Smarty::PHP_QUOTE) {
$this->_retvalue = new _smarty_text($this, htmlspecialchars('%>', ENT_QUOTES));
} elseif ($this->php_handling == Smarty::PHP_ALLOW) {
if ($this->asp_tags) {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode('%>', true));
2014-10-18 00:18:11 +02:00
} else {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_text($this, st);
2014-10-18 00:18:11 +02:00
}
} elseif ($this->php_handling == Smarty::PHP_REMOVE) {
if ($this->asp_tags) {
$this->_retvalue = null;
} else {
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_text($this, st);
2014-10-18 00:18:11 +02:00
}
}
}
2014-10-18 00:31:50 +02:00
#line 2293 "smarty_internal_templateparser.php"
#line 250 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
function yy_r12()
{
$this->compiler->tag_nocache = true;
$this->is_xml = true;
$save = $this->template->has_nocache_code;
2014-10-18 00:31:50 +02:00
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true));
2014-10-18 00:18:11 +02:00
$this->template->has_nocache_code = $save;
}
2014-10-18 00:31:50 +02:00
#line 2302 "smarty_internal_templateparser.php"
#line 259 "smarty_internal_templateparser.y"
function yy_r13()
2014-10-18 00:18:11 +02:00
{
if ($this->strip) {
$this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor));
} else {
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
}
}
2014-10-18 00:31:50 +02:00
#line 2311 "smarty_internal_templateparser.php"
#line 268 "smarty_internal_templateparser.y"
function yy_r14()
2014-10-18 00:18:11 +02:00
{
$this->strip = true;
}
2014-10-18 00:31:50 +02:00
#line 2316 "smarty_internal_templateparser.php"
#line 272 "smarty_internal_templateparser.y"
function yy_r15()
2014-10-18 00:18:11 +02:00
{
$this->strip = false;
}
2014-10-18 00:31:50 +02:00
#line 2321 "smarty_internal_templateparser.php"
#line 276 "smarty_internal_templateparser.y"
function yy_r16()
2014-10-18 00:18:11 +02:00
{
if ($this->strip) {
SMARTY_INTERNAL_COMPILE_BLOCK::blockSource($this->compiler, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor));
} else {
SMARTY_INTERNAL_COMPILE_BLOCK::blockSource($this->compiler, $this->yystack[$this->yyidx + 0]->minor);
}
}
2014-10-18 00:31:50 +02:00
#line 2330 "smarty_internal_templateparser.php"
#line 285 "smarty_internal_templateparser.y"
function yy_r17()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '';
}
2014-10-18 00:31:50 +02:00
#line 2335 "smarty_internal_templateparser.php"
#line 289 "smarty_internal_templateparser.y"
function yy_r18()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2340 "smarty_internal_templateparser.php"
#line 293 "smarty_internal_templateparser.y"
function yy_r19()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2345 "smarty_internal_templateparser.php"
#line 301 "smarty_internal_templateparser.y"
function yy_r21()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2350 "smarty_internal_templateparser.php"
#line 314 "smarty_internal_templateparser.y"
function yy_r23()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('private_print_expression', array(), array('value' => $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2355 "smarty_internal_templateparser.php"
#line 318 "smarty_internal_templateparser.y"
function yy_r24()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 2]->minor, 'modifierlist' => $this->yystack[$this->yyidx + - 1]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2360 "smarty_internal_templateparser.php"
#line 322 "smarty_internal_templateparser.y"
function yy_r25()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 1]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2365 "smarty_internal_templateparser.php"
#line 326 "smarty_internal_templateparser.y"
function yy_r26()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 2]->minor, 'modifierlist' => $this->yystack[$this->yyidx + - 1]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2370 "smarty_internal_templateparser.php"
#line 339 "smarty_internal_templateparser.y"
function yy_r28()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('assign', array(array('value' => $this->yystack[$this->yyidx + 0]->minor), array('var' => "'" . $this->yystack[$this->yyidx + - 2]->minor . "'")));
}
2014-10-18 00:31:50 +02:00
#line 2375 "smarty_internal_templateparser.php"
#line 347 "smarty_internal_templateparser.y"
function yy_r30()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('assign', array_merge(array(array('value' => $this->yystack[$this->yyidx + - 1]->minor), array('var' => "'" . $this->yystack[$this->yyidx + - 3]->minor . "'")), $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2380 "smarty_internal_templateparser.php"
#line 351 "smarty_internal_templateparser.y"
function yy_r31()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('assign', array_merge(array(array('value' => $this->yystack[$this->yyidx + - 1]->minor), array('var' => $this->yystack[$this->yyidx + - 3]->minor['var'])), $this->yystack[$this->yyidx + 0]->minor), array('smarty_internal_index' => $this->yystack[$this->yyidx + - 3]->minor['smarty_internal_index']));
}
2014-10-18 00:31:50 +02:00
#line 2385 "smarty_internal_templateparser.php"
#line 356 "smarty_internal_templateparser.y"
function yy_r32()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2390 "smarty_internal_templateparser.php"
#line 360 "smarty_internal_templateparser.y"
function yy_r33()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor, array());
}
2014-10-18 00:31:50 +02:00
#line 2395 "smarty_internal_templateparser.php"
#line 365 "smarty_internal_templateparser.y"
function yy_r34()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 3]->minor, $this->yystack[$this->yyidx + 0]->minor, array('object_method' => $this->yystack[$this->yyidx + - 1]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2400 "smarty_internal_templateparser.php"
#line 370 "smarty_internal_templateparser.y"
function yy_r35()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '<?php ob_start();?>' . $this->compiler->compileTag($this->yystack[$this->yyidx + - 2]->minor, $this->yystack[$this->yyidx + 0]->minor) . '<?php echo ';
$this->_retvalue .= $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $this->yystack[$this->yyidx + - 1]->minor, 'value' => 'ob_get_clean()')) . '?>';
}
2014-10-18 00:31:50 +02:00
#line 2406 "smarty_internal_templateparser.php"
#line 376 "smarty_internal_templateparser.y"
function yy_r36()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '<?php ob_start();?>' . $this->compiler->compileTag($this->yystack[$this->yyidx + - 4]->minor, $this->yystack[$this->yyidx + 0]->minor, array('object_method' => $this->yystack[$this->yyidx + - 2]->minor)) . '<?php echo ';
$this->_retvalue .= $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $this->yystack[$this->yyidx + - 1]->minor, 'value' => 'ob_get_clean()')) . '?>';
}
2014-10-18 00:31:50 +02:00
#line 2412 "smarty_internal_templateparser.php"
#line 382 "smarty_internal_templateparser.y"
function yy_r37()
2014-10-18 00:18:11 +02:00
{
$tag = trim(substr($this->yystack[$this->yyidx + - 1]->minor, $this->lex->ldel_length));
$this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(), array('if condition' => $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2418 "smarty_internal_templateparser.php"
#line 387 "smarty_internal_templateparser.y"
function yy_r38()
2014-10-18 00:18:11 +02:00
{
$tag = trim(substr($this->yystack[$this->yyidx + - 2]->minor, $this->lex->ldel_length));
$this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, $this->yystack[$this->yyidx + 0]->minor, array('if condition' => $this->yystack[$this->yyidx + - 1]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2424 "smarty_internal_templateparser.php"
#line 392 "smarty_internal_templateparser.y"
function yy_r39()
2014-10-18 00:18:11 +02:00
{
$tag = trim(substr($this->yystack[$this->yyidx + - 1]->minor, $this->lex->ldel_length));
$this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(), array('if condition' => $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2430 "smarty_internal_templateparser.php"
#line 403 "smarty_internal_templateparser.y"
function yy_r41()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 9]->minor), array('ifexp' => $this->yystack[$this->yyidx + - 6]->minor), array('var' => $this->yystack[$this->yyidx + - 2]->minor), array('step' => $this->yystack[$this->yyidx + - 1]->minor))), 1);
}
2014-10-18 00:31:50 +02:00
#line 2435 "smarty_internal_templateparser.php"
#line 407 "smarty_internal_templateparser.y"
function yy_r42()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '=' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2440 "smarty_internal_templateparser.php"
#line 415 "smarty_internal_templateparser.y"
function yy_r44()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 3]->minor), array('to' => $this->yystack[$this->yyidx + - 1]->minor))), 0);
}
2014-10-18 00:31:50 +02:00
#line 2445 "smarty_internal_templateparser.php"
#line 419 "smarty_internal_templateparser.y"
function yy_r45()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 5]->minor), array('to' => $this->yystack[$this->yyidx + - 3]->minor), array('step' => $this->yystack[$this->yyidx + - 1]->minor))), 0);
}
2014-10-18 00:31:50 +02:00
#line 2450 "smarty_internal_templateparser.php"
#line 424 "smarty_internal_templateparser.y"
function yy_r46()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('foreach', $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2455 "smarty_internal_templateparser.php"
#line 429 "smarty_internal_templateparser.y"
function yy_r47()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('from' => $this->yystack[$this->yyidx + - 4]->minor), array('item' => $this->yystack[$this->yyidx + - 1]->minor))));
}
2014-10-18 00:31:50 +02:00
#line 2460 "smarty_internal_templateparser.php"
#line 433 "smarty_internal_templateparser.y"
function yy_r48()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('from' => $this->yystack[$this->yyidx + - 7]->minor), array('item' => $this->yystack[$this->yyidx + - 1]->minor), array('key' => $this->yystack[$this->yyidx + - 4]->minor))));
}
2014-10-18 00:31:50 +02:00
#line 2465 "smarty_internal_templateparser.php"
#line 446 "smarty_internal_templateparser.y"
function yy_r51()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('setfilter', array(), array('modifier_list' => array(array_merge(array($this->yystack[$this->yyidx + - 1]->minor), $this->yystack[$this->yyidx + 0]->minor))));
}
2014-10-18 00:31:50 +02:00
#line 2470 "smarty_internal_templateparser.php"
#line 450 "smarty_internal_templateparser.y"
function yy_r52()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('setfilter', array(), array('modifier_list' => array_merge(array(array_merge(array($this->yystack[$this->yyidx + - 2]->minor), $this->yystack[$this->yyidx + - 1]->minor)), $this->yystack[$this->yyidx + 0]->minor)));
}
2014-10-18 00:31:50 +02:00
#line 2475 "smarty_internal_templateparser.php"
#line 455 "smarty_internal_templateparser.y"
function yy_r53()
2014-10-18 00:18:11 +02:00
{
$j = strrpos($this->yystack[$this->yyidx + 0]->minor, '.');
if ($this->yystack[$this->yyidx + 0]->minor[$j + 1] == 'c') {
// {$smarty.block.child}
$this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileChildBlock($this->compiler);
} else {
// {$smarty.block.parent}
$this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileParentBlock($this->compiler);
}
}
2014-10-18 00:31:50 +02:00
#line 2487 "smarty_internal_templateparser.php"
#line 468 "smarty_internal_templateparser.y"
function yy_r54()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor . 'close', array());
}
2014-10-18 00:31:50 +02:00
#line 2492 "smarty_internal_templateparser.php"
#line 472 "smarty_internal_templateparser.y"
function yy_r55()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 1]->minor . 'close', array(), array('modifier_list' => $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2497 "smarty_internal_templateparser.php"
#line 477 "smarty_internal_templateparser.y"
function yy_r56()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 2]->minor . 'close', array(), array('object_method' => $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2502 "smarty_internal_templateparser.php"
#line 481 "smarty_internal_templateparser.y"
function yy_r57()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 3]->minor . 'close', array(), array('object_method' => $this->yystack[$this->yyidx + - 1]->minor, 'modifier_list' => $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2507 "smarty_internal_templateparser.php"
#line 489 "smarty_internal_templateparser.y"
function yy_r58()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor;
$this->_retvalue[] = $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2513 "smarty_internal_templateparser.php"
#line 495 "smarty_internal_templateparser.y"
function yy_r59()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2518 "smarty_internal_templateparser.php"
#line 500 "smarty_internal_templateparser.y"
function yy_r60()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array();
}
2014-10-18 00:31:50 +02:00
#line 2523 "smarty_internal_templateparser.php"
#line 505 "smarty_internal_templateparser.y"
function yy_r61()
2014-10-18 00:18:11 +02:00
{
if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
$this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => 'true');
} elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
$this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => 'false');
} elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
$this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => 'null');
} else {
$this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => "'" . $this->yystack[$this->yyidx + 0]->minor . "'");
}
}
2014-10-18 00:31:50 +02:00
#line 2536 "smarty_internal_templateparser.php"
#line 517 "smarty_internal_templateparser.y"
function yy_r62()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array(trim($this->yystack[$this->yyidx + - 1]->minor, " =\n\r\t") => $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2541 "smarty_internal_templateparser.php"
#line 525 "smarty_internal_templateparser.y"
function yy_r64()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = "'" . $this->yystack[$this->yyidx + 0]->minor . "'";
}
2014-10-18 00:31:50 +02:00
#line 2546 "smarty_internal_templateparser.php"
#line 537 "smarty_internal_templateparser.y"
function yy_r67()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2551 "smarty_internal_templateparser.php"
#line 550 "smarty_internal_templateparser.y"
function yy_r69()
2014-10-18 00:18:11 +02:00
{
$this->yystack[$this->yyidx + - 2]->minor[] = $this->yystack[$this->yyidx + 0]->minor;
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2557 "smarty_internal_templateparser.php"
#line 555 "smarty_internal_templateparser.y"
function yy_r70()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array('var' => $this->yystack[$this->yyidx + - 2]->minor, 'value' => $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2562 "smarty_internal_templateparser.php"
#line 583 "smarty_internal_templateparser.y"
function yy_r75()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '$_smarty_tpl->getStreamVariable(\'' . $this->yystack[$this->yyidx + - 2]->minor . '://' . $this->yystack[$this->yyidx + 0]->minor . '\')';
}
2014-10-18 00:31:50 +02:00
#line 2567 "smarty_internal_templateparser.php"
#line 588 "smarty_internal_templateparser.y"
function yy_r76()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . trim($this->yystack[$this->yyidx + - 1]->minor) . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2572 "smarty_internal_templateparser.php"
#line 607 "smarty_internal_templateparser.y"
function yy_r80()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->compiler->compileTag('private_modifier', array(), array('value' => $this->yystack[$this->yyidx + - 1]->minor, 'modifierlist' => $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2577 "smarty_internal_templateparser.php"
#line 613 "smarty_internal_templateparser.y"
function yy_r81()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2582 "smarty_internal_templateparser.php"
#line 617 "smarty_internal_templateparser.y"
function yy_r82()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = 'in_array(' . $this->yystack[$this->yyidx + - 2]->minor . ',' . $this->yystack[$this->yyidx + 0]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2587 "smarty_internal_templateparser.php"
#line 621 "smarty_internal_templateparser.y"
function yy_r83()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = 'in_array(' . $this->yystack[$this->yyidx + - 2]->minor . ',(array)' . $this->yystack[$this->yyidx + 0]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2592 "smarty_internal_templateparser.php"
#line 629 "smarty_internal_templateparser.y"
function yy_r85()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '!(' . $this->yystack[$this->yyidx + - 2]->minor . ' % ' . $this->yystack[$this->yyidx + 0]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2597 "smarty_internal_templateparser.php"
#line 633 "smarty_internal_templateparser.y"
function yy_r86()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '(' . $this->yystack[$this->yyidx + - 2]->minor . ' % ' . $this->yystack[$this->yyidx + 0]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2602 "smarty_internal_templateparser.php"
#line 637 "smarty_internal_templateparser.y"
function yy_r87()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '!(1 & ' . $this->yystack[$this->yyidx + - 1]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2607 "smarty_internal_templateparser.php"
#line 641 "smarty_internal_templateparser.y"
function yy_r88()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '(1 & ' . $this->yystack[$this->yyidx + - 1]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2612 "smarty_internal_templateparser.php"
#line 645 "smarty_internal_templateparser.y"
function yy_r89()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '!(1 & ' . $this->yystack[$this->yyidx + - 2]->minor . ' / ' . $this->yystack[$this->yyidx + 0]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2617 "smarty_internal_templateparser.php"
#line 649 "smarty_internal_templateparser.y"
function yy_r90()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '(1 & ' . $this->yystack[$this->yyidx + - 2]->minor . ' / ' . $this->yystack[$this->yyidx + 0]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2622 "smarty_internal_templateparser.php"
#line 673 "smarty_internal_templateparser.y"
function yy_r96()
2014-10-18 00:18:11 +02:00
{
self::$prefix_number ++;
$this->compiler->prefix_code[] = '<?php $_tmp' . self::$prefix_number . '=' . $this->yystack[$this->yyidx + 0]->minor . ';?>';
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor . '$_tmp' . self::$prefix_number;
}
2014-10-18 00:31:50 +02:00
#line 2629 "smarty_internal_templateparser.php"
#line 682 "smarty_internal_templateparser.y"
function yy_r97()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 6]->minor . ' ? ' . $this->compileVariable("'" . $this->yystack[$this->yyidx + - 2]->minor . "'") . ' : ' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2634 "smarty_internal_templateparser.php"
#line 686 "smarty_internal_templateparser.y"
function yy_r98()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 5]->minor . ' ? ' . $this->yystack[$this->yyidx + - 2]->minor . ' : ' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2639 "smarty_internal_templateparser.php"
#line 701 "smarty_internal_templateparser.y"
function yy_r101()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '!' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2644 "smarty_internal_templateparser.php"
#line 722 "smarty_internal_templateparser.y"
function yy_r106()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . '.' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2649 "smarty_internal_templateparser.php"
#line 726 "smarty_internal_templateparser.y"
function yy_r107()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . '.';
}
2014-10-18 00:31:50 +02:00
#line 2654 "smarty_internal_templateparser.php"
#line 730 "smarty_internal_templateparser.y"
function yy_r108()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '.' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2659 "smarty_internal_templateparser.php"
#line 735 "smarty_internal_templateparser.y"
function yy_r109()
2014-10-18 00:18:11 +02:00
{
if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
$this->_retvalue = 'true';
} elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
$this->_retvalue = 'false';
} elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
$this->_retvalue = 'null';
} else {
$this->_retvalue = "'" . $this->yystack[$this->yyidx + 0]->minor . "'";
}
}
2014-10-18 00:31:50 +02:00
#line 2672 "smarty_internal_templateparser.php"
#line 753 "smarty_internal_templateparser.y"
function yy_r111()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = "(" . $this->yystack[$this->yyidx + - 1]->minor . ")";
}
2014-10-18 00:31:50 +02:00
#line 2677 "smarty_internal_templateparser.php"
#line 768 "smarty_internal_templateparser.y"
function yy_r114()
2014-10-18 00:18:11 +02:00
{
if (!$this->security || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + - 2]->minor]) || $this->smarty->security_policy->isTrustedStaticClass($this->yystack[$this->yyidx + - 2]->minor, $this->compiler)) {
if (isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + - 2]->minor])) {
$this->_retvalue = $this->smarty->registered_classes[$this->yystack[$this->yyidx + - 2]->minor] . '::' . $this->yystack[$this->yyidx + 0]->minor;
} else {
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . '::' . $this->yystack[$this->yyidx + 0]->minor;
}
} else {
$this->compiler->trigger_template_error("static class '" . $this->yystack[$this->yyidx + - 2]->minor . "' is undefined or not allowed by security setting");
}
}
2014-10-18 00:31:50 +02:00
#line 2690 "smarty_internal_templateparser.php"
#line 780 "smarty_internal_templateparser.y"
function yy_r115()
2014-10-18 00:18:11 +02:00
{
if ($this->yystack[$this->yyidx + - 2]->minor['var'] == '\'smarty\'') {
$this->_retvalue = $this->compiler->compileTag('private_special_variable', array(), $this->yystack[$this->yyidx + - 2]->minor['smarty_internal_index']) . '::' . $this->yystack[$this->yyidx + 0]->minor;
} else {
$this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + - 2]->minor['var']) . $this->yystack[$this->yyidx + - 2]->minor['smarty_internal_index'] . '::' . $this->yystack[$this->yyidx + 0]->minor;
}
}
2014-10-18 00:31:50 +02:00
#line 2699 "smarty_internal_templateparser.php"
#line 789 "smarty_internal_templateparser.y"
function yy_r116()
2014-10-18 00:18:11 +02:00
{
self::$prefix_number ++;
$this->compiler->prefix_code[] = '<?php ob_start();?>' . $this->yystack[$this->yyidx + - 1]->minor . '<?php $_tmp' . self::$prefix_number . '=ob_get_clean();?>';
$this->_retvalue = '$_tmp' . self::$prefix_number;
}
2014-10-18 00:31:50 +02:00
#line 2706 "smarty_internal_templateparser.php"
#line 804 "smarty_internal_templateparser.y"
function yy_r118()
2014-10-18 00:18:11 +02:00
{
if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') {
$smarty_var = $this->compiler->compileTag('private_special_variable', array(), $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);
$this->_retvalue = $smarty_var;
} else {
// used for array reset,next,prev,end,current
$this->last_variable = $this->yystack[$this->yyidx + 0]->minor['var'];
$this->last_index = $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
$this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + 0]->minor['var']) . $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
}
}
2014-10-18 00:31:50 +02:00
#line 2719 "smarty_internal_templateparser.php"
#line 817 "smarty_internal_templateparser.y"
function yy_r119()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '$_smarty_tpl->tpl_vars[' . $this->yystack[$this->yyidx + - 2]->minor . ']->' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2724 "smarty_internal_templateparser.php"
#line 827 "smarty_internal_templateparser.y"
function yy_r121()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '$_smarty_tpl->getConfigVariable(\'' . $this->yystack[$this->yyidx + - 1]->minor . '\')';
}
2014-10-18 00:31:50 +02:00
#line 2729 "smarty_internal_templateparser.php"
#line 831 "smarty_internal_templateparser.y"
function yy_r122()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '(is_array($tmp = $_smarty_tpl->getConfigVariable(\'' . $this->yystack[$this->yyidx + - 2]->minor . '\')) ? $tmp' . $this->yystack[$this->yyidx + 0]->minor . ' :null)';
}
2014-10-18 00:31:50 +02:00
#line 2734 "smarty_internal_templateparser.php"
#line 835 "smarty_internal_templateparser.y"
function yy_r123()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '$_smarty_tpl->getConfigVariable(' . $this->yystack[$this->yyidx + - 1]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2739 "smarty_internal_templateparser.php"
#line 839 "smarty_internal_templateparser.y"
function yy_r124()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '(is_array($tmp = $_smarty_tpl->getConfigVariable(' . $this->yystack[$this->yyidx + - 2]->minor . ')) ? $tmp' . $this->yystack[$this->yyidx + 0]->minor . ' : null)';
}
2014-10-18 00:31:50 +02:00
#line 2744 "smarty_internal_templateparser.php"
#line 843 "smarty_internal_templateparser.y"
function yy_r125()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array('var' => $this->yystack[$this->yyidx + - 1]->minor, 'smarty_internal_index' => $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2749 "smarty_internal_templateparser.php"
#line 856 "smarty_internal_templateparser.y"
function yy_r127()
2014-10-18 00:18:11 +02:00
{
return;
}
2014-10-18 00:31:50 +02:00
#line 2754 "smarty_internal_templateparser.php"
#line 862 "smarty_internal_templateparser.y"
function yy_r128()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '[' . $this->compileVariable($this->yystack[$this->yyidx + 0]->minor) . ']';
}
2014-10-18 00:31:50 +02:00
#line 2759 "smarty_internal_templateparser.php"
#line 866 "smarty_internal_templateparser.y"
function yy_r129()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '[' . $this->compileVariable($this->yystack[$this->yyidx + - 2]->minor) . '->' . $this->yystack[$this->yyidx + 0]->minor . ']';
}
2014-10-18 00:31:50 +02:00
#line 2764 "smarty_internal_templateparser.php"
#line 870 "smarty_internal_templateparser.y"
function yy_r130()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = "['" . $this->yystack[$this->yyidx + 0]->minor . "']";
}
2014-10-18 00:31:50 +02:00
#line 2769 "smarty_internal_templateparser.php"
#line 874 "smarty_internal_templateparser.y"
function yy_r131()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = "[" . $this->yystack[$this->yyidx + 0]->minor . "]";
}
2014-10-18 00:31:50 +02:00
#line 2774 "smarty_internal_templateparser.php"
#line 878 "smarty_internal_templateparser.y"
function yy_r132()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = "[" . $this->yystack[$this->yyidx + - 1]->minor . "]";
}
2014-10-18 00:31:50 +02:00
#line 2779 "smarty_internal_templateparser.php"
#line 883 "smarty_internal_templateparser.y"
function yy_r133()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' . $this->yystack[$this->yyidx + - 1]->minor . '\'][\'index\']') . ']';
}
2014-10-18 00:31:50 +02:00
#line 2784 "smarty_internal_templateparser.php"
#line 887 "smarty_internal_templateparser.y"
function yy_r134()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' . $this->yystack[$this->yyidx + - 3]->minor . '\'][\'' . $this->yystack[$this->yyidx + - 1]->minor . '\']') . ']';
}
2014-10-18 00:31:50 +02:00
#line 2789 "smarty_internal_templateparser.php"
#line 897 "smarty_internal_templateparser.y"
function yy_r136()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '[]';
}
2014-10-18 00:31:50 +02:00
#line 2794 "smarty_internal_templateparser.php"
#line 910 "smarty_internal_templateparser.y"
function yy_r138()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . '.' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2799 "smarty_internal_templateparser.php"
#line 915 "smarty_internal_templateparser.y"
function yy_r139()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '\'' . $this->yystack[$this->yyidx + 0]->minor . '\'';
}
2014-10-18 00:31:50 +02:00
#line 2804 "smarty_internal_templateparser.php"
#line 920 "smarty_internal_templateparser.y"
function yy_r140()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '(' . $this->yystack[$this->yyidx + - 1]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 2809 "smarty_internal_templateparser.php"
#line 927 "smarty_internal_templateparser.y"
function yy_r141()
2014-10-18 00:18:11 +02:00
{
if ($this->yystack[$this->yyidx + - 1]->minor['var'] == '\'smarty\'') {
$this->_retvalue = $this->compiler->compileTag('private_special_variable', array(), $this->yystack[$this->yyidx + - 1]->minor['smarty_internal_index']) . $this->yystack[$this->yyidx + 0]->minor;
} else {
$this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + - 1]->minor['var']) . $this->yystack[$this->yyidx + - 1]->minor['smarty_internal_index'] . $this->yystack[$this->yyidx + 0]->minor;
}
}
2014-10-18 00:31:50 +02:00
#line 2818 "smarty_internal_templateparser.php"
#line 936 "smarty_internal_templateparser.y"
function yy_r142()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2823 "smarty_internal_templateparser.php"
#line 941 "smarty_internal_templateparser.y"
function yy_r143()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2828 "smarty_internal_templateparser.php"
#line 946 "smarty_internal_templateparser.y"
function yy_r144()
2014-10-18 00:18:11 +02:00
{
if ($this->security && substr($this->yystack[$this->yyidx + - 1]->minor, 0, 1) == '_') {
$this->compiler->trigger_template_error(self::Err1);
}
$this->_retvalue = '->' . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2836 "smarty_internal_templateparser.php"
#line 953 "smarty_internal_templateparser.y"
function yy_r145()
2014-10-18 00:18:11 +02:00
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
}
$this->_retvalue = '->{' . $this->compileVariable($this->yystack[$this->yyidx + - 1]->minor) . $this->yystack[$this->yyidx + 0]->minor . '}';
}
2014-10-18 00:31:50 +02:00
#line 2844 "smarty_internal_templateparser.php"
#line 960 "smarty_internal_templateparser.y"
function yy_r146()
2014-10-18 00:18:11 +02:00
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
}
$this->_retvalue = '->{' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + 0]->minor . '}';
}
2014-10-18 00:31:50 +02:00
#line 2852 "smarty_internal_templateparser.php"
#line 967 "smarty_internal_templateparser.y"
function yy_r147()
2014-10-18 00:18:11 +02:00
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
}
$this->_retvalue = '->{\'' . $this->yystack[$this->yyidx + - 4]->minor . '\'.' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + 0]->minor . '}';
}
2014-10-18 00:31:50 +02:00
#line 2860 "smarty_internal_templateparser.php"
#line 975 "smarty_internal_templateparser.y"
function yy_r148()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '->' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2865 "smarty_internal_templateparser.php"
#line 983 "smarty_internal_templateparser.y"
function yy_r149()
2014-10-18 00:18:11 +02:00
{
if (!$this->security || $this->smarty->security_policy->isTrustedPhpFunction($this->yystack[$this->yyidx + - 3]->minor, $this->compiler)) {
if (strcasecmp($this->yystack[$this->yyidx + - 3]->minor, 'isset') === 0 || strcasecmp($this->yystack[$this->yyidx + - 3]->minor, 'empty') === 0 || strcasecmp($this->yystack[$this->yyidx + - 3]->minor, 'array') === 0 || is_callable($this->yystack[$this->yyidx + - 3]->minor)) {
$func_name = strtolower($this->yystack[$this->yyidx + - 3]->minor);
if ($func_name == 'isset') {
if (count($this->yystack[$this->yyidx + - 1]->minor) == 0) {
$this->compiler->trigger_template_error('Illegal number of paramer in "isset()"');
}
$par = implode(',', $this->yystack[$this->yyidx + - 1]->minor);
if (strncasecmp($par, '$_smarty_tpl->getConfigVariable', strlen('$_smarty_tpl->getConfigVariable')) === 0) {
self::$prefix_number ++;
$this->compiler->prefix_code[] = '<?php $_tmp' . self::$prefix_number . '=' . str_replace(')', ', false)', $par) . ';?>';
$isset_par = '$_tmp' . self::$prefix_number;
} else {
$isset_par = str_replace("')->value", "',null,true,false)->value", $par);
}
$this->_retvalue = $this->yystack[$this->yyidx + - 3]->minor . "(" . $isset_par . ")";
} elseif (in_array($func_name, array('empty', 'reset', 'current', 'end', 'prev', 'next'))) {
if (count($this->yystack[$this->yyidx + - 1]->minor) != 1) {
$this->compiler->trigger_template_error('Illegal number of paramer in "empty()"');
}
if ($func_name == 'empty') {
$this->_retvalue = $func_name . '(' . str_replace("')->value", "',null,true,false)->value", $this->yystack[$this->yyidx + - 1]->minor[0]) . ')';
} else {
$this->_retvalue = $func_name . '(' . $this->yystack[$this->yyidx + - 1]->minor[0] . ')';
}
} else {
$this->_retvalue = $this->yystack[$this->yyidx + - 3]->minor . "(" . implode(',', $this->yystack[$this->yyidx + - 1]->minor) . ")";
}
} else {
$this->compiler->trigger_template_error("unknown function \"" . $this->yystack[$this->yyidx + - 3]->minor . "\"");
}
}
}
2014-10-18 00:31:50 +02:00
#line 2901 "smarty_internal_templateparser.php"
#line 1021 "smarty_internal_templateparser.y"
function yy_r150()
2014-10-18 00:18:11 +02:00
{
if ($this->security && substr($this->yystack[$this->yyidx + - 3]->minor, 0, 1) == '_') {
$this->compiler->trigger_template_error(self::Err1);
}
$this->_retvalue = $this->yystack[$this->yyidx + - 3]->minor . "(" . implode(',', $this->yystack[$this->yyidx + - 1]->minor) . ")";
}
2014-10-18 00:31:50 +02:00
#line 2909 "smarty_internal_templateparser.php"
#line 1028 "smarty_internal_templateparser.y"
function yy_r151()
2014-10-18 00:18:11 +02:00
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
}
self::$prefix_number ++;
$this->compiler->prefix_code[] = '<?php $_tmp' . self::$prefix_number . '=' . $this->compileVariable("'" . $this->yystack[$this->yyidx + - 3]->minor . "'") . ';?>';
$this->_retvalue = '$_tmp' . self::$prefix_number . '(' . implode(',', $this->yystack[$this->yyidx + - 1]->minor) . ')';
}
2014-10-18 00:31:50 +02:00
#line 2919 "smarty_internal_templateparser.php"
#line 1039 "smarty_internal_templateparser.y"
function yy_r152()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array_merge($this->yystack[$this->yyidx + - 2]->minor, array($this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2924 "smarty_internal_templateparser.php"
#line 1056 "smarty_internal_templateparser.y"
function yy_r155()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array_merge($this->yystack[$this->yyidx + - 2]->minor, array(array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor)));
}
2014-10-18 00:31:50 +02:00
#line 2929 "smarty_internal_templateparser.php"
#line 1060 "smarty_internal_templateparser.y"
function yy_r156()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array(array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor));
}
2014-10-18 00:31:50 +02:00
#line 2934 "smarty_internal_templateparser.php"
#line 1068 "smarty_internal_templateparser.y"
function yy_r158()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2939 "smarty_internal_templateparser.php"
#line 1076 "smarty_internal_templateparser.y"
function yy_r159()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 2944 "smarty_internal_templateparser.php"
#line 1110 "smarty_internal_templateparser.y"
function yy_r166()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '$' . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2949 "smarty_internal_templateparser.php"
#line 1115 "smarty_internal_templateparser.y"
function yy_r167()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '$' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 2954 "smarty_internal_templateparser.php"
#line 1121 "smarty_internal_templateparser.y"
function yy_r168()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '==';
}
2014-10-18 00:31:50 +02:00
#line 2959 "smarty_internal_templateparser.php"
#line 1125 "smarty_internal_templateparser.y"
function yy_r169()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '!=';
}
2014-10-18 00:31:50 +02:00
#line 2964 "smarty_internal_templateparser.php"
#line 1129 "smarty_internal_templateparser.y"
function yy_r170()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '>';
}
2014-10-18 00:31:50 +02:00
#line 2969 "smarty_internal_templateparser.php"
#line 1133 "smarty_internal_templateparser.y"
function yy_r171()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '<';
}
2014-10-18 00:31:50 +02:00
#line 2974 "smarty_internal_templateparser.php"
#line 1137 "smarty_internal_templateparser.y"
function yy_r172()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '>=';
}
2014-10-18 00:31:50 +02:00
#line 2979 "smarty_internal_templateparser.php"
#line 1141 "smarty_internal_templateparser.y"
function yy_r173()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '<=';
}
2014-10-18 00:31:50 +02:00
#line 2984 "smarty_internal_templateparser.php"
#line 1145 "smarty_internal_templateparser.y"
function yy_r174()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '===';
}
2014-10-18 00:31:50 +02:00
#line 2989 "smarty_internal_templateparser.php"
#line 1149 "smarty_internal_templateparser.y"
function yy_r175()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '!==';
}
2014-10-18 00:31:50 +02:00
#line 2994 "smarty_internal_templateparser.php"
#line 1153 "smarty_internal_templateparser.y"
function yy_r176()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '%';
}
2014-10-18 00:31:50 +02:00
#line 2999 "smarty_internal_templateparser.php"
#line 1157 "smarty_internal_templateparser.y"
function yy_r177()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '&&';
}
2014-10-18 00:31:50 +02:00
#line 3004 "smarty_internal_templateparser.php"
#line 1161 "smarty_internal_templateparser.y"
function yy_r178()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '||';
}
2014-10-18 00:31:50 +02:00
#line 3009 "smarty_internal_templateparser.php"
#line 1165 "smarty_internal_templateparser.y"
function yy_r179()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = ' XOR ';
}
2014-10-18 00:31:50 +02:00
#line 3014 "smarty_internal_templateparser.php"
#line 1172 "smarty_internal_templateparser.y"
function yy_r180()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = 'array(' . $this->yystack[$this->yyidx + - 1]->minor . ')';
}
2014-10-18 00:31:50 +02:00
#line 3019 "smarty_internal_templateparser.php"
#line 1180 "smarty_internal_templateparser.y"
function yy_r182()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . ',' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 3024 "smarty_internal_templateparser.php"
#line 1188 "smarty_internal_templateparser.y"
function yy_r184()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . '=>' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 3029 "smarty_internal_templateparser.php"
#line 1192 "smarty_internal_templateparser.y"
function yy_r185()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = '\'' . $this->yystack[$this->yyidx + - 2]->minor . '\'=>' . $this->yystack[$this->yyidx + 0]->minor;
}
2014-10-18 00:31:50 +02:00
#line 3034 "smarty_internal_templateparser.php"
#line 1204 "smarty_internal_templateparser.y"
function yy_r187()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = "''";
}
2014-10-18 00:31:50 +02:00
#line 3039 "smarty_internal_templateparser.php"
#line 1208 "smarty_internal_templateparser.y"
function yy_r188()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor->to_smarty_php();
}
2014-10-18 00:31:50 +02:00
#line 3044 "smarty_internal_templateparser.php"
#line 1213 "smarty_internal_templateparser.y"
function yy_r189()
2014-10-18 00:18:11 +02:00
{
$this->yystack[$this->yyidx + - 1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor);
$this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor;
}
2014-10-18 00:31:50 +02:00
#line 3050 "smarty_internal_templateparser.php"
#line 1218 "smarty_internal_templateparser.y"
function yy_r190()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 3055 "smarty_internal_templateparser.php"
#line 1222 "smarty_internal_templateparser.y"
function yy_r191()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = new _smarty_code($this, '(string)' . $this->yystack[$this->yyidx + - 1]->minor);
}
2014-10-18 00:31:50 +02:00
#line 3060 "smarty_internal_templateparser.php"
#line 1230 "smarty_internal_templateparser.y"
function yy_r193()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = new _smarty_code($this, '(string)$_smarty_tpl->tpl_vars[\'' . substr($this->yystack[$this->yyidx + 0]->minor, 1) . '\']->value');
}
2014-10-18 00:31:50 +02:00
#line 3065 "smarty_internal_templateparser.php"
#line 1238 "smarty_internal_templateparser.y"
function yy_r195()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = new _smarty_code($this, '(string)(' . $this->yystack[$this->yyidx + - 1]->minor . ')');
}
2014-10-18 00:31:50 +02:00
#line 3070 "smarty_internal_templateparser.php"
#line 1242 "smarty_internal_templateparser.y"
function yy_r196()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + - 1]->minor);
}
2014-10-18 00:31:50 +02:00
#line 3075 "smarty_internal_templateparser.php"
#line 1246 "smarty_internal_templateparser.y"
function yy_r197()
2014-10-18 00:18:11 +02:00
{
$this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor);
}
2014-10-18 00:31:50 +02:00
#line 3080 "smarty_internal_templateparser.php"
2014-10-18 00:18:11 +02:00
private $_retvalue;
public function yy_reduce($yyruleno)
{
$yymsp = $this->yystack[$this->yyidx];
if ($this->yyTraceFILE && $yyruleno >= 0
&& $yyruleno < count(self::$yyRuleName)
) {
fprintf($this->yyTraceFILE, "%sReduce (%d) [%s].\n",
$this->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 (!$this->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();
}
}
public function yy_parse_failed()
{
if ($this->yyTraceFILE) {
fprintf($this->yyTraceFILE, "%sFail!\n", $this->yyTracePrompt);
}
while ($this->yyidx >= 0) {
$this->yy_pop_parser_stack();
}
}
public function yy_syntax_error($yymajor, $TOKEN)
{
2014-10-18 00:31:50 +02:00
#line 75 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
$this->internalError = true;
$this->yymajor = $yymajor;
$this->compiler->trigger_template_error();
2014-10-18 00:31:50 +02:00
#line 3142 "smarty_internal_templateparser.php"
2014-10-18 00:18:11 +02:00
}
public function yy_accept()
{
if ($this->yyTraceFILE) {
fprintf($this->yyTraceFILE, "%sAccept!\n", $this->yyTracePrompt);
}
while ($this->yyidx >= 0) {
$stack = $this->yy_pop_parser_stack();
}
2014-10-18 00:31:50 +02:00
#line 66 "smarty_internal_templateparser.y"
2014-10-18 00:18:11 +02:00
$this->successful = !$this->internalError;
$this->internalError = false;
$this->retvalue = $this->_retvalue;
//echo $this->retvalue."\n\n";
2014-10-18 00:31:50 +02:00
#line 3160 "smarty_internal_templateparser.php"
2014-10-18 00:18:11 +02:00
}
public 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 ($this->yyTraceFILE) {
fprintf($this->yyTraceFILE, "%sInput %s\n",
$this->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 ($this->yyTraceFILE) {
fprintf($this->yyTraceFILE, "%sSyntax Error!\n",
$this->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 ($this->yyTraceFILE) {
fprintf($this->yyTraceFILE, "%sDiscard input token %s\n",
$this->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);
}
}