summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b2b95d6)
raw | patch | inline | side by side (parent: b2b95d6)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 5 Jul 2010 09:42:42 +0000 (09:42 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 5 Jul 2010 09:42:42 +0000 (09:42 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18925 594d385d-05f5-0310-b6e9-bd551577e9d8
26 files changed:
index 505f269fc96998d241e207f9dd92ae7eab2acf3b..319debf11060f478de75368037ae8d9ad4275578 100644 (file)
*/
class Smarty extends Smarty_Internal_Data {
// smarty version
- const SMARTY_VERSION = '3.0rc1'; // SVN Rev: 3286
+ const SMARTY_VERSION = 'Smarty-3.0-RC2';
// auto literal on delimiters with whitspace
public $auto_literal = true;
// display error on not assigned variables
diff --git a/gosa-core/include/smarty/plugins/function.counter.php b/gosa-core/include/smarty/plugins/function.counter.php
index 88e49d80126241402aa9d4859eb5d482c11d2c7c..1f6e1cf7c0ab8120ddfe2aa47ac6b0c544d3c327 100644 (file)
/**
* Smarty plugin
* @package Smarty
- * @subpackage PluginsFunction
+ * @subpackage plugins
*/
* @author Monte Ohrt <monte at ohrt dot com>
* @link http://smarty.php.net/manual/en/language.function.counter.php {counter}
* (Smarty online manual)
- * @param array $params parameters
- * @param object $smarty Smarty object
- * @param object $template template object
+ * @param array parameters
+ * @param Smarty
* @return string|null
*/
-function smarty_function_counter($params, $smarty, $template)
+function smarty_function_counter($params, $smarty)
{
+ static $counters = array();
$name = (isset($params['name'])) ? $params['name'] : 'default';
- if (!isset($template->plugin_data['counter'][$name])) {
- $template->plugin_data['counter'][$name] = array(
+ if (!isset($counters[$name])) {
+ $counters[$name] = array(
'start'=>1,
'skip'=>1,
'direction'=>'up',
'count'=>1
);
}
- $counter = &$template->plugin_data['counter'][$name];
+ $counter =& $counters[$name];
if (isset($params['start'])) {
$counter['start'] = $counter['count'] = (int)$params['start'];
}
if (isset($counter['assign'])) {
- $template->assign($counter['assign'], $counter['count']);
+ $smarty->assign($counter['assign'], $counter['count']);
}
if (isset($params['print'])) {
return $retval;
}
-
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/function.cycle.php b/gosa-core/include/smarty/plugins/function.cycle.php
index f1cb46ba65e27f0ce93cc54312e8e4cac87f117d..509584c97f7dc28187f4ff29bbff779b5960c14b 100644 (file)
/**
* Smarty plugin
* @package Smarty
- * @subpackage PluginsFunction
+ * @subpackage plugins
*/
/**
* Name: cycle<br>
* Date: May 3, 2002<br>
* Purpose: cycle through given values<br>
+ * Input:
+ * - name = name of cycle (optional)
+ * - values = comma separated list of values to cycle,
+ * or an array of values to cycle
+ * (this can be left out for subsequent calls)
+ * - reset = boolean - resets given var to true
+ * - print = boolean - print var or not. default is true
+ * - advance = boolean - whether or not to advance the cycle
+ * - delimiter = the value delimiter, default is ","
+ * - assign = boolean, assigns to template var instead of
+ * printed.
*
* Examples:<br>
* <pre>
* @author credit to Mark Priatel <mpriatel@rogers.com>
* @author credit to Gerard <gerard@interfold.com>
* @author credit to Jason Sweat <jsweat_php@yahoo.com>
- * @param array $params parameters
- * Input:
- * - name = name of cycle (optional)
- * - values = comma separated list of values to cycle,
- * or an array of values to cycle
- * (this can be left out for subsequent calls)
- * - reset = boolean - resets given var to true
- * - print = boolean - print var or not. default is true
- * - advance = boolean - whether or not to advance the cycle
- * - delimiter = the value delimiter, default is ","
- * - assign = boolean, assigns to template var instead of
- * printed.
- * @param object $smarty Smarty object
- * @param object $template template object
+ * @version 1.3
+ * @param array
+ * @param Smarty
* @return string|null
*/
-function smarty_function_cycle($params, $smarty, $template)
+function smarty_function_cycle($params, $smarty)
{
+ static $cycle_vars;
+
$name = (empty($params['name'])) ? 'default' : $params['name'];
$print = (isset($params['print'])) ? (bool)$params['print'] : true;
$advance = (isset($params['advance'])) ? (bool)$params['advance'] : true;
$reset = (isset($params['reset'])) ? (bool)$params['reset'] : false;
if (!in_array('values', array_keys($params))) {
- if(!isset($template->plugin_data['cycle'][$name]['values'])) {
- trigger_error("cycle: missing 'values' parameter",E_USER_WARNING);
+ if(!isset($cycle_vars[$name]['values'])) {
+ $smarty->trigger_error("cycle: missing 'values' parameter");
return;
}
} else {
- if(isset($template->plugin_data['cycle'][$name]['values'])
- && $template->plugin_data['cycle'][$name]['values'] != $params['values'] ) {
- $template->plugin_data['cycle'][$name]['index'] = 0;
+ if(isset($cycle_vars[$name]['values'])
+ && $cycle_vars[$name]['values'] != $params['values'] ) {
+ $cycle_vars[$name]['index'] = 0;
}
- $template->plugin_data['cycle'][$name]['values'] = $params['values'];
+ $cycle_vars[$name]['values'] = $params['values'];
}
if (isset($params['delimiter'])) {
- $template->plugin_data['cycle'][$name]['delimiter'] = $params['delimiter'];
- } elseif (!isset($template->plugin_data['cycle'][$name]['delimiter'])) {
- $template->plugin_data['cycle'][$name]['delimiter'] = ',';
+ $cycle_vars[$name]['delimiter'] = $params['delimiter'];
+ } elseif (!isset($cycle_vars[$name]['delimiter'])) {
+ $cycle_vars[$name]['delimiter'] = ',';
}
- if(is_array($template->plugin_data['cycle'][$name]['values'])) {
- $cycle_array = $template->plugin_data['cycle'][$name]['values'];
+ if(is_array($cycle_vars[$name]['values'])) {
+ $cycle_array = $cycle_vars[$name]['values'];
} else {
- $cycle_array = explode($template->plugin_data['cycle'][$name]['delimiter'],$template->plugin_data['cycle'][$name]['values']);
+ $cycle_array = explode($cycle_vars[$name]['delimiter'],$cycle_vars[$name]['values']);
}
- if(!isset($template->plugin_data['cycle'][$name]['index']) || $reset ) {
- $template->plugin_data['cycle'][$name]['index'] = 0;
+ if(!isset($cycle_vars[$name]['index']) || $reset ) {
+ $cycle_vars[$name]['index'] = 0;
}
if (isset($params['assign'])) {
$print = false;
- $template->assign($params['assign'], $cycle_array[$template->plugin_data['cycle'][$name]['index']]);
+ $smarty->assign($params['assign'], $cycle_array[$cycle_vars[$name]['index']]);
}
if($print) {
- $retval = $cycle_array[$template->plugin_data['cycle'][$name]['index']];
+ $retval = $cycle_array[$cycle_vars[$name]['index']];
} else {
$retval = null;
}
if($advance) {
- if ( $template->plugin_data['cycle'][$name]['index'] >= count($cycle_array) -1 ) {
- $template->plugin_data['cycle'][$name]['index'] = 0;
+ if ( $cycle_vars[$name]['index'] >= count($cycle_array) -1 ) {
+ $cycle_vars[$name]['index'] = 0;
} else {
- $template->plugin_data['cycle'][$name]['index']++;
+ $cycle_vars[$name]['index']++;
}
}
return $retval;
}
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/function.popup_init.php b/gosa-core/include/smarty/plugins/function.popup_init.php
index ae580376526a6a23326a0e31d5f00871e1ab0a35..dc5bbd7a33d17c9221b5fb97ad742ab308a30462 100644 (file)
trigger_error("popup_init: missing src parameter",E_USER_WARNING);
}
}
-
-/* vim: set expandtab: */
-
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifier.regex_replace.php b/gosa-core/include/smarty/plugins/modifier.regex_replace.php
index 100b58ce4b1e7a969bef4fdee59f17d36f56f41c..7c6e6b90f5765e8acefc4dc146d357f9b7ad1ed9 100644 (file)
}
return $search;
}
-
-/* vim: set expandtab: */
-
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/shared.escape_special_chars.php b/gosa-core/include/smarty/plugins/shared.escape_special_chars.php
index f7142f917311297e06f69f1d04ef6c062ad38fea..5bd21ef836786fc792af1ff0dc15b69393ac6e43 100644 (file)
}
return $string;
}
-
-/* vim: set expandtab: */
-
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_call.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_call.php
index 6fd8aa89f0543e77c67f8952a8af3012420f8b79..0f7e521404523e5c2384478a5201e558c538468e 100644 (file)
<?php
/**
-* Smarty Internal Plugin Compile Function_Call
-*
-* Compiles the calls of user defined tags defined by {function}
-*
-* @package Smarty
-* @subpackage Compiler
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Compile Function_Call
+ *
+ * Compiles the calls of user defined tags defined by {function}
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ * @author Uwe Tews
+ */
/**
-* Smarty Internal Plugin Compile Function_Call Class
-*/
+ * Smarty Internal Plugin Compile Function_Call Class
+ */
class Smarty_Internal_Compile_Call extends Smarty_Internal_CompileBase {
/**
- * Compiles the calls of user defined tags defined by {function}
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return string compiled code
- */
+ * Compiles the calls of user defined tags defined by {function}
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
public function compile($args, $compiler)
{
$this->compiler = $compiler;
+ $this->smarty = $compiler->smarty;
$this->required_attributes = array('name');
$this->optional_attributes = array('_any');
// check and get attributes
// output will be stored in a smarty variable instead of beind displayed
$_assign = $_attr['assign'];
}
+ $_name = trim($_attr['name'], "'\"");
+ unset($_attr['name'], $_attr['assign']);
// set flag (compiled code of {function} must be included in cache file
- if ($this->compiler->nocache || $this->compiler->tag_nocache) {
- $nocache = 'true';
+ if ($compiler->nocache || $compiler->tag_nocache) {
+ $_nocache = 'true';
} else {
- $nocache = 'false';
+ $_nocache = 'false';
}
- // create template object
- $_output = "<?php \$_template = new Smarty_Internal_Function_Call_Handler ({$_attr['name']}, \$_smarty_tpl->smarty, \$_smarty_tpl, {$nocache});\n";
- // delete {include} standard attributes
- unset($_attr['name'], $_attr['assign']);
- // remaining attributes must be assigned as smarty variable
- if (!empty($_attr)) {
- // create variables
- foreach ($_attr as $_key => $_value) {
- $_output .= "\$_template->assign('$_key',$_value);\n";
+ $_paramsArray = array();
+ foreach ($_attr as $_key => $_value) {
+ if (is_int($_key)) {
+ $_paramsArray[] = "$_key=>$_value";
+ } else {
+ $_paramsArray[] = "'$_key'=>$_value";
}
}
+ if (isset($compiler->template->properties['function'][$_name]['parameter'])) {
+ foreach ($compiler->template->properties['function'][$_name]['parameter'] as $_key => $_value) {
+ if (!isset($_attr[$_key])) {
+ if (is_int($_key)) {
+ $_paramsArray[] = "$_key=>$_value";
+ } else {
+ $_paramsArray[] = "'$_key'=>$_value";
+ }
+ }
+ }
+ } elseif (isset($this->smarty->template_functions[$_name]['parameter'])) {
+ foreach ($this->smarty->template_functions[$_name]['parameter'] as $_key => $_value) {
+ if (!isset($_attr[$_key])) {
+ if (is_int($_key)) {
+ $_paramsArray[] = "$_key=>$_value";
+ } else {
+ $_paramsArray[] = "'$_key'=>$_value";
+ }
+ }
+ }
+ }
+ $_params = 'array(' . implode(",", $_paramsArray) . ')';
+ $_hash = str_replace('-','_',$compiler->template->properties['nocache_hash']);
// was there an assign attribute
if (isset($_assign)) {
- $_output .= "\$_smarty_tpl->assign({$_assign},\$_template->getRenderedTemplate());\n";
+ if ($compiler->template->caching) {
+ $_output = "\$_smarty_tpl->assign({$_assign},Smarty_Internal_Function_Call_Handler::call ('{$_name}',\$_smarty_tpl,{$_params},'{$_hash}',{$_nocache}));?>\n";
+ } else {
+ $_output = "\$_smarty_tpl->assign({$_assign},smarty_template_function_{$_name}(\$_smarty_tpl,{$_params}));?>\n";
+ }
} else {
- $_output .= "echo \$_template->getRenderedTemplate();\n";
+ if ($compiler->template->caching) {
+ $_output = "<?php Smarty_Internal_Function_Call_Handler::call ('{$_name}',\$_smarty_tpl,{$_params},'{$_hash}',{$_nocache});?>\n";
+ } else {
+ $_output = "<?php smarty_template_function_{$_name}(\$_smarty_tpl,{$_params});?>\n";
+ }
}
- $_output .= 'unset($_template);?>';
return $_output;
}
}
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_extends.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_extends.php
index 875e17b724a0fc52e993c6aaaa157c1257739110..3f5997a4d6bbcc1975265a8fa72760e3ebff4ded 100644 (file)
// save file dependency
$compiler->template->properties['file_dependency'][sha1($_template->getTemplateFilepath())] = array($_template->getTemplateFilepath(), $_template->getTemplateTimestamp());
$_content = $compiler->template->template_source;
- if (preg_match_all("!({$this->_ldl}block(.+?){$this->_rdl})!", $_content, $s) !=
+ if (preg_match_all("!({$this->_ldl}block\s(.+?){$this->_rdl})!", $_content, $s) !=
preg_match_all("!({$this->_ldl}/block(.*?){$this->_rdl})!", $_content, $c)) {
$this->compiler->trigger_template_error('unmatched {block} {/block} pairs');
}
- preg_match_all("!{$this->_ldl}block(.+?){$this->_rdl}|{$this->_ldl}/block(.*?){$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
+ preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block(.*?){$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
$_result_count = count($_result[0]);
$_start = 0;
while ($_start < $_result_count) {
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_for.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_for.php
index a85a52f3b0eadc76ba13c911f889721ec0cf5e96..a848a6f46c91aa13008193ad692c437a1c67eab2 100644 (file)
// check and get attributes
$_attr = $this->_get_attributes($args);
- $this->_open_tag('for', array('for', $this->compiler->nocache));
- // maybe nocache because of nocache variables
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $local_vars = array();
$output = "<?php ";
if (isset($_attr['ifexp'])) {
$output .= " \$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;";
$output .= " \$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value];\n";
$compiler->local_var[$_statement['var']] = true;
+ $local_vars[] = $_statement['var'];
}
$output .= " if ($_attr[ifexp]){ for (\$_foo=true;$_attr[ifexp]; \$_smarty_tpl->tpl_vars[$_attr[varloop]]->value$_attr[loop]){\n";
} else {
$_statement = $_attr['start'];
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;";
$compiler->local_var[$_statement['var']] = true;
+ $local_vars[] = $_statement['var'];
if (isset($_attr['step'])) {
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = $_attr[step];";
} else {
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->first = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == 1;";
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->last = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == \$_smarty_tpl->tpl_vars[$_statement[var]]->total;";
}
- $output .= "?>";
+ $output .= "?>";
+
+ $this->_open_tag('for', array('for', $this->compiler->nocache, $local_vars));
+ // maybe nocache because of nocache variables
+ $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
// return compiled code
return $output;
}
// check and get attributes
$_attr = $this->_get_attributes($args);
- list($_open_tag, $nocache) = $this->_close_tag(array('for'));
- $this->_open_tag('forelse', array('forelse', $nocache));
+ list($_open_tag, $nocache, $local_vars) = $this->_close_tag(array('for'));
+ $this->_open_tag('forelse', array('forelse', $nocache, $local_vars));
return "<?php }} else { ?>";
}
}
$this->compiler->tag_nocache = true;
}
- list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('for', 'forelse'));
+ list($_open_tag, $this->compiler->nocache, $local_vars) = $this->_close_tag(array('for', 'forelse'));
+
+ foreach ($local_vars as $var) {
+ unset($compiler->local_var[$var]);
+ }
if ($_open_tag == 'forelse')
return "<?php } ?>";
else
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_foreach.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_foreach.php
index aac39f6482d72036e2b2f444097855ea68828aa1..bfc084dae70689da53bd8824ddbe044c90721a9d 100644 (file)
// check and get attributes
$_attr = $this->_get_attributes($args);
- $this->_open_tag('foreach', array('foreach', $this->compiler->nocache));
- // maybe nocache because of nocache variables
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
-
$from = $_attr['from'];
$item = $_attr['item'];
$key = null;
}
+ $this->_open_tag('foreach', array('foreach', $this->compiler->nocache, $item, $key));
+ // maybe nocache because of nocache variables
+ $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+
if (isset($_attr['name'])) {
$name = $_attr['name'];
$has_name = true;
// check and get attributes
$_attr = $this->_get_attributes($args);
- list($_open_tag, $nocache) = $this->_close_tag(array('foreach'));
- $this->_open_tag('foreachelse', array('foreachelse', $nocache));
+ list($_open_tag, $nocache, $item, $key) = $this->_close_tag(array('foreach'));
+ $this->_open_tag('foreachelse', array('foreachelse', $nocache, $item, $key));
return "<?php }} else { ?>";
}
@@ -181,7 +181,11 @@ class Smarty_Internal_Compile_Foreachclose extends Smarty_Internal_CompileBase {
$this->compiler->tag_nocache = true;
}
- list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('foreach', 'foreachelse'));
+ list($_open_tag, $this->compiler->nocache, $item, $key) = $this->_close_tag(array('foreach', 'foreachelse'));
+ unset($compiler->local_var[$item]);
+ if ($key != null) {
+ unset($compiler->local_var[$key]);
+ }
if ($_open_tag == 'foreachelse')
return "<?php } ?>";
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_function.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_function.php
index 86363b2b8be8c7b12fab04b7bba52fce48212380..88eec3db63c8ec00aeb2f483a9bd93350444029f 100644 (file)
<?php
/**
-* Smarty Internal Plugin Compile Function
-*
-* Compiles the {function} {/function} tags
-*
-* @package Smarty
-* @subpackage Compiler
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Compile Function
+ *
+ * Compiles the {function} {/function} tags
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ * @author Uwe Tews
+ */
/**
-* Smarty Internal Plugin Compile Function Class
-*/
+ * Smarty Internal Plugin Compile Function Class
+ */
class Smarty_Internal_Compile_Function extends Smarty_Internal_CompileBase {
/**
- * Compiles code for the {function} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return boolean true
- */
+ * Compiles code for the {function} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return boolean true
+ */
public function compile($args, $compiler)
{
$this->compiler = $compiler;
$this->_open_tag('function', $save);
$_name = trim($_attr['name'], "'\"");
unset($_attr['name']);
+ $compiler->template->properties['function'][$_name]['parameter'] = array();
foreach ($_attr as $_key => $_data) {
$compiler->template->properties['function'][$_name]['parameter'][$_key] = $_data;
}
- // make function known for recursive calls
- $this->compiler->smarty->template_functions[$_name]['compiled'] = '';
+ $compiler->smarty->template_functions[$_name]['parameter'] = $compiler->template->properties['function'][$_name]['parameter'];
+ if ($compiler->template->caching) {
+ $output = '';
+ } else {
+ $output = "<?php if (!function_exists('smarty_template_function_{$_name}')) {
+ function smarty_template_function_{$_name}(\$_smarty_tpl,\$params) {
+ \$saved_tpl_vars = \$_smarty_tpl->tpl_vars;
+ foreach (\$params as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);}?>";
+ }
// Init temporay context
$compiler->template->required_plugins = array('compiled' => array(), 'nocache' => array());
$compiler->template->extract_code = true;
- $compiler->template->extracted_compiled_code = '';
+ $compiler->template->extracted_compiled_code = $output;
$compiler->template->has_nocache_code = false;
$compiler->has_code = false;
+ $compiler->template->properties['function'][$_name]['compiled'] = '';
return true;
}
}
/**
-* Smarty Internal Plugin Compile Functionclose Class
-*/
+ * Smarty Internal Plugin Compile Functionclose Class
+ */
class Smarty_Internal_Compile_Functionclose extends Smarty_Internal_CompileBase {
/**
- * Compiles code for the {/function} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return boolean true
- */
+ * Compiles code for the {/function} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return boolean true
+ */
public function compile($args, $compiler)
{
$this->compiler = $compiler;
- $this->compiler->has_code = false;
$_attr = $this->_get_attributes($args);
$saved_data = $this->_close_tag(array('function'));
- $_name = trim($saved_data[0]['name'], "'");
+ $_name = trim($saved_data[0]['name'], "'\"");
// build plugin include code
$plugins_string = '';
if (!empty($compiler->template->required_plugins['compiled'])) {
}
$plugins_string .= "?>/*/%%SmartyNocache:{$compiler->template->properties['nocache_hash']}%%*/';?>\n";
}
- $compiler->template->properties['function'][$_name]['compiled'] = $plugins_string . $compiler->template->extracted_compiled_code;
- $compiler->template->properties['function'][$_name]['nocache_hash'] = $compiler->template->properties['nocache_hash'];
- $compiler->template->properties['function'][$_name]['has_nocache_code'] = $compiler->template->has_nocache_code;
- $this->compiler->smarty->template_functions[$_name] = $compiler->template->properties['function'][$_name];
+ // if caching save template function for possible nocache call
+ if ($compiler->template->caching) {
+ $compiler->template->properties['function'][$_name]['compiled'] .= $plugins_string
+ . $compiler->template->extracted_compiled_code;
+ $compiler->template->properties['function'][$_name]['nocache_hash'] = $compiler->template->properties['nocache_hash'];
+ $compiler->template->properties['function'][$_name]['has_nocache_code'] = $compiler->template->has_nocache_code;
+ $compiler->smarty->template_functions[$_name] = $compiler->template->properties['function'][$_name];
+ $compiler->has_code = false;
+ $output = true;
+ } else {
+ $output = $plugins_string . $compiler->template->extracted_compiled_code . "<?php \$_smarty_tpl->tpl_vars = \$saved_tpl_vars;}}?>\n";
+ }
// restore old compiler status
$compiler->template->extracted_compiled_code = $saved_data[1];
$compiler->template->extract_code = $saved_data[2];
- $compiler->template->has_nocache_code = $saved_data[3];
+ $compiler->template->has_nocache_code = $compiler->template->has_nocache_code | $saved_data[3];
$compiler->template->required_plugins = $saved_data[4];
- return true;
+ return $output;
}
}
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_include.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_include.php
index f82f038e8846224f1f052440904ccc510d8cc091..d2f7484a5f77401390ad154d88d51518f7d744b4 100644 (file)
<?php
/**
-* Smarty Internal Plugin Compile Include
-*
-* Compiles the {include} tag
-*
-* @package Smarty
-* @subpackage Compiler
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Compile Include
+ *
+ * Compiles the {include} tag
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ * @author Uwe Tews
+ */
/**
-* Smarty Internal Plugin Compile Include Class
-*/
+ * Smarty Internal Plugin Compile Include Class
+ */
class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
/**
- * Compiles code for the {include} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return string compiled code
- */
+ * Compiles code for the {include} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
public function compile($args, $compiler)
{
$this->compiler = $compiler;
// needs code for cached page but no cache file
$tpl->caching = 9999;
}
+ if ($this->compiler->template->mustCompile) {
+ // make sure whole chain gest compiled
+ $tpl->mustCompile = true;
+ }
if ($tpl->resource_object->usesCompiler && $tpl->isExisting()) {
- // make sure that template is up to date and merge template properties
- $tpl->renderTemplate();
- // compiled code for {function} tags
- $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $tpl->properties['function']);
// get compiled code
- $compiled_tpl = $tpl->getCompiledTemplate();
+ $compiled_tpl = $tpl->getCompiledTemplate();
+ // merge compiled code for {function} tags
+ $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $tpl->properties['function']);
+ // merge filedependency by evaluating header code
+ preg_match_all("/(<\?php \/\*%%SmartyHeaderCode:{$tpl->properties['nocache_hash']}%%\*\/(.+?)\/\*\/%%SmartyHeaderCode%%\*\/\?>\n)/s", $compiled_tpl, $result);
+ $saved_has_nocache_code = $compiler->template->has_nocache_code;
+ $saved_nocache_hash = $compiler->template->properties['nocache_hash'];
+ $_smarty_tpl = $compiler->template;
+ eval($result[2][0]);
+ $compiler->template->properties['nocache_hash'] = $saved_nocache_hash;
+ $compiler->template->has_nocache_code = $saved_has_nocache_code;
// remove header code
$compiled_tpl = preg_replace("/(<\?php \/\*%%SmartyHeaderCode:{$tpl->properties['nocache_hash']}%%\*\/(.+?)\/\*\/%%SmartyHeaderCode%%\*\/\?>\n)/s", '', $compiled_tpl);
if ($tpl->has_nocache_code) {
$_output .= "<?php \$_template->updateParentVariables($_parent_scope);?>";
}
}
- $_output .= "<?php unset(\$_template);?>\n";
+ $_output .= "<?php unset(\$_template);?>";
return $_output;
}
}
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_insert.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_insert.php
index 189fe6d379588c2a1d97095bb9e5754ac9458d69..d90a9f2956eb34abb6a8f38b5f694f83dad99c22 100644 (file)
<?php
/**
-* Smarty Internal Plugin Compile Insert
-*
-* Compiles the {insert} tag
-*
-* @package Smarty
-* @subpackage Compiler
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Compile Insert
+ *
+ * Compiles the {insert} tag
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ * @author Uwe Tews
+ */
/**
-* Smarty Internal Plugin Compile Insert Class
-*/
+ * Smarty Internal Plugin Compile Insert Class
+ */
class Smarty_Internal_Compile_Insert extends Smarty_Internal_CompileBase {
/**
- * Compiles code for the {insert} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return string compiled code
- */
+ * Compiles code for the {insert} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
public function compile($args, $compiler)
{
$this->compiler = $compiler;
$this->optional_attributes = array('_any');
// check and get attributes
$_attr = $this->_get_attributes($args);
- // this tag must not be cached
+ // never compile as nocache code
+ $this->compiler->suppressNocacheProcessing = true;
$this->compiler->tag_nocache = true;
$_smarty_tpl = $compiler->template;
$this->compiler->trigger_template_error("{insert} missing script file '{$_script}'");
}
// code for script file loading
- $_output .= "require_once {$_script} ;";
+ $_output .= "require_once '{$_script}' ;";
require_once $_script;
if (!is_callable($_function)) {
$this->compiler->trigger_template_error(" {insert} function '{$_name}' is not callable");
}
} else {
+ $_script = 'null';
if (!is_callable($_function)) {
if (!$_function = $this->compiler->getPlugin($_name, 'insert')) {
$this->compiler->trigger_template_error("{insert} no function or plugin found for '{$_name}'");
$_params = 'array(' . implode(", ", $_paramsArray) . ')';
// call insert
if (isset($_assign)) {
- $_output .= "\$_smarty_tpl->assign({$_assign} , {$_function} ({$_params},\$_smarty_tpl->smarty,\$_smarty_tpl), true);?>";
+ if ($_smarty_tpl->caching) {
+ $_output .= "echo Smarty_Internal_Nocache_Insert::compile ('{$_function}',{$_params}, \$_smarty_tpl, '{$_script}',{$_assign});?>";
+ } else {
+ $_output .= "\$_smarty_tpl->assign({$_assign} , {$_function} ({$_params},\$_smarty_tpl->smarty,\$_smarty_tpl), true);?>";
+ }
} else {
$this->compiler->has_output = true;
- $_output .= "echo {$_function}({$_params},\$_smarty_tpl->smarty,\$_smarty_tpl);?>";
+ if ($_smarty_tpl->caching) {
+ $_output .= "echo Smarty_Internal_Nocache_Insert::compile ('{$_function}',{$_params}, \$_smarty_tpl, '{$_script}');?>";
+ } else {
+ $_output .= "echo {$_function}({$_params},\$_smarty_tpl->smarty,\$_smarty_tpl);?>";
+ }
}
return $_output;
}
}
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php
index 436ba24720d9a11fb243b84ce00e2fb616ea94ec..5a9b1140f49394511f8e41de2b0f16f34813f655 100644 (file)
public function compile($args, $compiler, $tag, $function)
{
$this->compiler = $compiler;
- if (strlen($tag) < 6 || substr_compare($tag, 'close', -5, 5) != 0) {
+ if (strlen($tag) < 6 || substr($tag, -5) != 'close') {
// opening tag of block plugin
$this->required_attributes = array();
$this->optional_attributes = array('_any');
}
}
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php
index 69d105011f54e0816a12e8ba7bc774c2ab0b3c11..ba4d5000c5e32b2048f4652c1afb12ec4bd208c6 100644 (file)
public function compile($args, $compiler, $tag, $methode)
{
$this->compiler = $compiler;
- if (strlen($tag) < 5 || substr_compare($tag, 'close', -5, 5) != 0) {
+ if (strlen($tag) < 5 || substr($tag, -5) != 'close') {
// opening tag of block plugin
$this->required_attributes = array();
$this->optional_attributes = array('_any');
}
}
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_print_expression.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_print_expression.php
index 7f72a76d1014077a09d22c5b195a0b765b638701..e72ca46c9d0a27a5b4180af34bfd0943652eb2d4 100644 (file)
<?php
/**
-* Smarty Internal Plugin Compile Print Expression
-*
-* Compiles any tag which will output an expression or variable
-*
-* @package Smarty
-* @subpackage Compiler
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Compile Print Expression
+ *
+ * Compiles any tag which will output an expression or variable
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ * @author Uwe Tews
+ */
/**
-* Smarty Internal Plugin Compile Print Expression Class
-*/
+ * Smarty Internal Plugin Compile Print Expression Class
+ */
class Smarty_Internal_Compile_Private_Print_Expression extends Smarty_Internal_CompileBase {
/**
- * Compiles code for gererting output from any expression
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return string compiled code
- */
+ * Compiles code for gererting output from any expression
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
public function compile($args, $compiler)
{
$this->compiler = $compiler;
@@ -49,10 +49,19 @@ class Smarty_Internal_Compile_Private_Print_Expression extends Smarty_Internal_C
// display value
$this->compiler->has_output = true;
if (isset($this->compiler->smarty->registered_filters['variable'])) {
- $output = '<?php echo Smarty_Internal_Filter_Handler::runFilter(\'variable\', ' . $_attr['value'] . ',$_smarty_tpl->smarty, $_smarty_tpl, ' . $_attr['filter'] . ');?>';
+ $output = 'Smarty_Internal_Filter_Handler::runFilter(\'variable\', ' . $_attr['value'] . ',$_smarty_tpl->smarty, $_smarty_tpl, ' . $_attr['filter'] . ')';
} else {
- $output = '<?php echo ' . $_attr['value'] . ';?>';
+ $output = $_attr['value'];
}
+ if (!isset($_attr['nofilter']) && isset($this->compiler->smarty->default_modifiers)) {
+ foreach ($this->compiler->smarty->default_modifiers as $default_modifier) {
+ $mod_array = explode (':', $default_modifier);
+ $modifier = $mod_array[0];
+ $mod_array[0] = $output;
+ $output = $this->compiler->compileTag('private_modifier', array('modifier' => $modifier, 'params' => implode(", ", $mod_array)));
+ }
+ }
+ $output = '<?php echo ' . $output . ';?>';
}
return $output;
}
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_registered_block.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_registered_block.php
index 3ad4d2fab141271131b077f7d8b641741e5df368..e0e7d87f5220acc68307d08fb86408dc0eda91bb 100644 (file)
public function compile($args, $compiler, $tag)\r
{\r
$this->compiler = $compiler;\r
- if (strlen($tag) < 6 || substr_compare($tag, 'close', -5, 5) != 0) {\r
+ if (strlen($tag) < 6 || substr($tag,-5) != 'close') {\r
// opening tag of block plugin\r
$this->required_attributes = array();\r
$this->optional_attributes = array('_any'); \r
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_config.php b/gosa-core/include/smarty/sysplugins/smarty_internal_config.php
index 3141e79319e4e7482faac788d76590b4df8d3aa2..4c10505fe9114d4d89bf7ab60c1cdf02317e3345 100644 (file)
public function mustCompile ()
{
return $this->mustCompile === null ?
- $this->mustCompile = ($this->smarty->force_compile || $this->smarty->compile_check && $this->getCompiledTimestamp () !== $this->getTimestamp ()):
+ $this->mustCompile = ($this->smarty->force_compile || $this->getCompiledTimestamp () === false || $this->smarty->compile_check && $this->getCompiledTimestamp () < $this->getTimestamp ()):
$this->mustCompile;
}
/**
if ($this->mustCompile()) {
$this->compileConfigSource();
}
- include($this->getCompiledFilepath ());
+ include($this->getCompiledFilepath ());
// copy global config vars
foreach ($_config_vars['vars'] as $variable => $value) {
if ($this->smarty->config_overwrite || !isset($scope->config_vars[$variable])) {
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_configfileparser.php b/gosa-core/include/smarty/sysplugins/smarty_internal_configfileparser.php
index 3621a487f808b7aa45447a22cfae9939ef30dade..3cd3f0f0bf19c56039c359a77b361874dd276e14 100644 (file)
function __destruct()
{
- while ($this->yyidx >= 0) {
+ while ($this->yystack !== Array()) {
$this->yy_pop_parser_stack();
}
if (is_resource(self::$yyTraceFILE)) {
$this->yystack[$this->yyidx]->stateno,
self::$yyRuleInfo[$yyruleno]['lhs']);
if (isset(self::$yyExpectedTokens[$nextstate])) {
- $expected += self::$yyExpectedTokens[$nextstate];
+ $expected = array_merge($expected, self::$yyExpectedTokens[$nextstate]);
if (in_array($token,
self::$yyExpectedTokens[$nextstate], true)) {
$this->yyidx = $yyidx;
}
break;
} while (true);
+ $this->yyidx = $yyidx;
+ $this->yystack = $stack;
return array_unique($expected);
}
while ($this->yyidx >= 0) {
$this->yy_pop_parser_stack();
}
+#line 127 "smarty_internal_configfileparser.y"
+
+ $this->internalError = true;
+ $this->compiler->trigger_config_file_error("Stack overflow in configfile parser");
+#line 586 "smarty_internal_configfileparser.php"
return;
}
$yytos = new TPC_yyStackEntry;
15 => 15,
16 => 16,
);
-#line 127 "smarty_internal_configfileparser.y"
+#line 133 "smarty_internal_configfileparser.y"
function yy_r0(){ $this->_retvalue = null; }
-#line 645 "smarty_internal_configfileparser.php"
-#line 130 "smarty_internal_configfileparser.y"
- function yy_r1(){ $this->add_global_vars($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; }
-#line 648 "smarty_internal_configfileparser.php"
+#line 653 "smarty_internal_configfileparser.php"
#line 136 "smarty_internal_configfileparser.y"
+ function yy_r1(){ $this->add_global_vars($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; }
+#line 656 "smarty_internal_configfileparser.php"
+#line 142 "smarty_internal_configfileparser.y"
function yy_r4(){ $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; }
-#line 651 "smarty_internal_configfileparser.php"
-#line 137 "smarty_internal_configfileparser.y"
+#line 659 "smarty_internal_configfileparser.php"
+#line 143 "smarty_internal_configfileparser.y"
function yy_r5(){ if ($this->smarty->config_read_hidden) { $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor); } $this->_retvalue = null; }
-#line 654 "smarty_internal_configfileparser.php"
-#line 140 "smarty_internal_configfileparser.y"
+#line 662 "smarty_internal_configfileparser.php"
+#line 146 "smarty_internal_configfileparser.y"
function yy_r6(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
-#line 657 "smarty_internal_configfileparser.php"
-#line 141 "smarty_internal_configfileparser.y"
+#line 665 "smarty_internal_configfileparser.php"
+#line 147 "smarty_internal_configfileparser.y"
function yy_r7(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor, Array($this->yystack[$this->yyidx + 0]->minor)); }
-#line 660 "smarty_internal_configfileparser.php"
-#line 142 "smarty_internal_configfileparser.y"
+#line 668 "smarty_internal_configfileparser.php"
+#line 148 "smarty_internal_configfileparser.y"
function yy_r8(){ $this->_retvalue = Array(); }
-#line 663 "smarty_internal_configfileparser.php"
-#line 146 "smarty_internal_configfileparser.y"
+#line 671 "smarty_internal_configfileparser.php"
+#line 152 "smarty_internal_configfileparser.y"
function yy_r9(){ $this->_retvalue = Array("key" => $this->yystack[$this->yyidx + -2]->minor, "value" => $this->yystack[$this->yyidx + 0]->minor); }
-#line 666 "smarty_internal_configfileparser.php"
-#line 148 "smarty_internal_configfileparser.y"
+#line 674 "smarty_internal_configfileparser.php"
+#line 154 "smarty_internal_configfileparser.y"
function yy_r10(){ $this->_retvalue = (float) $this->yystack[$this->yyidx + 0]->minor; }
-#line 669 "smarty_internal_configfileparser.php"
-#line 149 "smarty_internal_configfileparser.y"
+#line 677 "smarty_internal_configfileparser.php"
+#line 155 "smarty_internal_configfileparser.y"
function yy_r11(){ $this->_retvalue = (int) $this->yystack[$this->yyidx + 0]->minor; }
-#line 672 "smarty_internal_configfileparser.php"
-#line 150 "smarty_internal_configfileparser.y"
+#line 680 "smarty_internal_configfileparser.php"
+#line 156 "smarty_internal_configfileparser.y"
function yy_r12(){ $this->_retvalue = $this->parse_bool($this->yystack[$this->yyidx + 0]->minor); }
-#line 675 "smarty_internal_configfileparser.php"
-#line 151 "smarty_internal_configfileparser.y"
+#line 683 "smarty_internal_configfileparser.php"
+#line 157 "smarty_internal_configfileparser.y"
function yy_r13(){ $this->_retvalue = self::parse_single_quoted_string($this->yystack[$this->yyidx + 0]->minor); }
-#line 678 "smarty_internal_configfileparser.php"
-#line 152 "smarty_internal_configfileparser.y"
+#line 686 "smarty_internal_configfileparser.php"
+#line 158 "smarty_internal_configfileparser.y"
function yy_r14(){ $this->_retvalue = self::parse_double_quoted_string($this->yystack[$this->yyidx + 0]->minor); }
-#line 681 "smarty_internal_configfileparser.php"
-#line 153 "smarty_internal_configfileparser.y"
+#line 689 "smarty_internal_configfileparser.php"
+#line 159 "smarty_internal_configfileparser.y"
function yy_r15(){ $this->_retvalue = self::parse_tripple_double_quoted_string($this->yystack[$this->yyidx + 0]->minor); }
-#line 684 "smarty_internal_configfileparser.php"
-#line 154 "smarty_internal_configfileparser.y"
+#line 692 "smarty_internal_configfileparser.php"
+#line 160 "smarty_internal_configfileparser.y"
function yy_r16(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 687 "smarty_internal_configfileparser.php"
+#line 695 "smarty_internal_configfileparser.php"
private $_retvalue;
$this->internalError = true;
$this->yymajor = $yymajor;
$this->compiler->trigger_config_file_error();
-#line 750 "smarty_internal_configfileparser.php"
+#line 758 "smarty_internal_configfileparser.php"
}
function yy_accept()
$this->internalError = false;
$this->retvalue = $this->_retvalue;
//echo $this->retvalue."\n\n";
-#line 768 "smarty_internal_configfileparser.php"
+#line 776 "smarty_internal_configfileparser.php"
}
function doParse($yymajor, $yytokenvalue)
} while ($yymajor != self::YYNOCODE && $this->yyidx >= 0);
}
}
-?>
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_data.php b/gosa-core/include/smarty/sysplugins/smarty_internal_data.php
index 63f98a1d36aeb37d86a69e63c30bf610ec3ea16b..ec7d0d4fe2f7677eac7f375b54fc46080caab109 100644 (file)
}
}
/**
+ * wrapper function for Smarty 2 BC
+ *
+ * @param string $tpl_var the template variable name
+ * @param mixed $ &$value the referenced value to assign
+ * @param boolean $nocache if true any output of this variable will be not cached
+ * @param boolean $scope the scope the variable will have (local,parent or root)
+ */
+ public function assign_by_ref($tpl_var, &$value, $nocache = false, $scope = SMARTY_LOCAL_SCOPE)
+ {
+ trigger_error("function call 'assign_by_ref' is unknown or deprecated, use 'assignByRef'",E_USER_NOTICE);
+ $this->assignByRef($tpl_var,$value,$nocache,$scope);
+ }
+ /**
* appends values to template variables
*
* @param array $ |string $tpl_var the template variable name(s)
}
}
}
-
+ /**
+ * wrapper function for Smarty 2 BC
+ *
+ * @param string $tpl_var the template variable name
+ * @param mixed $ &$value the referenced value to append
+ * @param boolean $merge flag if array elements shall be merged
+ */
+ public function append_by_ref($tpl_var, &$value, $merge = false)
+ {
+ trigger_error("function call 'append_by_ref' is unknown or deprecated, use 'appendByRef'",E_USER_NOTICE);
+ $this->appendByRef($tpl_var,$value,$merge);
+ }
/**
* Returns a single or all template variables
*
$_ptr = null;
}
}
- if ($search_parents) {
+ if ($search_parents && isset($this->global_tpl_vars)) {
foreach ($this->global_tpl_vars AS $key => $var) {
$_result[$key] = $var->value;
}
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_function_call_handler.php b/gosa-core/include/smarty/sysplugins/smarty_internal_function_call_handler.php
index c9b2948dca205bf24cedd36ba3c7bf2e1c81798c..48bee427db57e793fc6ec9b41b1726c1d1456fc3 100644 (file)
<?php\r
/**\r
-* Smarty Internal Plugin Function Call Handler\r
-* \r
-* @package Smarty\r
-* @subpackage PluginsInternal\r
-* @author Uwe Tews \r
-*/\r
+ * Smarty Internal Plugin Function Call Handler\r
+ * \r
+ * @package Smarty\r
+ * @subpackage PluginsInternal\r
+ * @author Uwe Tews \r
+ */\r
/**\r
-* This class does call function defined with the {function} tag\r
-*/\r
+ * This class does call function defined with the {function} tag\r
+ */\r
class Smarty_Internal_Function_Call_Handler extends Smarty_Internal_Template {\r
- function __construct($name, $smarty, $parent, $nocache)\r
+ static function call ($_name, $_template, $_params, $_hash, $_nocache)\r
{\r
- parent::__construct('string:', $smarty, $parent);\r
- if (!isset($this->smarty->template_functions[$name])) {\r
- throw new Exception("Call to undefined template function \"{$name}\" in template \"{$parent->template_resource}\"");\r
- } \r
- $this->called_nocache = $nocache;\r
- $this->mustCompile = false;\r
- if ($nocache) {\r
- $smarty->template_functions[$name]['called_nocache'] = true;\r
- $this->properties['function'][$name]['called_nocache'] = true;\r
- } \r
- $this->properties['nocache_hash'] = $smarty->template_functions[$name]['nocache_hash']; \r
- // load compiled function\r
- if ($nocache) {\r
- // if called in nocache mode convert nocache code to real code\r
- $this->compiled_template = preg_replace(array("!(<\?php echo ')?/\*/?%%SmartyNocache:{$this->smarty->template_functions[$name]['nocache_hash']}%%\*/(';\?>)?!", "!\\\'!"), array('', "'"), $smarty->template_functions[$name]['compiled']);\r
+ if ($_nocache) {\r
+ $_function = "smarty_template_function_{$_name}_nocache";\r
+ $_template->smarty->template_functions[$_name]['called_nocache'] = true;\r
} else {\r
- $this->compiled_template = $smarty->template_functions[$name]['compiled'];\r
+ $_function = "smarty_template_function_{$_hash}_{$_name}";\r
} \r
- // assign default paramter\r
- if (isset($smarty->template_functions[$name]['parameter'])) {\r
- $_smarty_tpl = $this;\r
- foreach ($smarty->template_functions[$name]['parameter'] as $_key => $_value) {\r
- $this->assign($_key, eval("return {$_value};"));\r
+ if (!is_callable($_function)) {\r
+ $_code = "function {$_function}(\$_smarty_tpl,\$params) {\r
+ \$saved_tpl_vars = \$_smarty_tpl->tpl_vars;\r
+ foreach (\$params as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);}?>";\r
+ if ($_nocache) {\r
+ $_code .= preg_replace(array("!<\?php echo \\'/\*%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/|/\*/%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/\\';\?>!",\r
+ "!\\\'!"), array('', "'"), $_template->smarty->template_functions[$_name]['compiled']);\r
+ } else {\r
+ $_code .= preg_replace("/{$_template->smarty->template_functions[$_name]['nocache_hash']}/", $_template->properties['nocache_hash'], $_template->smarty->template_functions[$_name]['compiled']);\r
} \r
+ $_code .= "<?php \$_smarty_tpl->tpl_vars = \$saved_tpl_vars;}";\r
+ eval($_code);\r
} \r
- // set flag if {function} contains nocache code\r
- if ($smarty->template_functions[$name]['has_nocache_code']) {\r
- $this->has_nocache_code = true;\r
- } \r
+ $_function($_template, $_params);\r
} \r
} \r
\r
-?>\r
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_extends.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_extends.php
index c4f588a66467ed9689efc6424ab2400cfcc74e89..444907586385611ff71a598b7167ddacfbaa6fde 100644 (file)
$_template->template_filepath = $_filepath;
$_content = file_get_contents($_filepath);
if ($_filepath != $_files[count($_files)-1]) {
- if (preg_match_all("!({$this->_ldl}block(.+?){$this->_rdl})!", $_content, $_open) !=
+ if (preg_match_all("!({$this->_ldl}block\s(.+?){$this->_rdl})!", $_content, $_open) !=
preg_match_all("!({$this->_ldl}/block(.*?){$this->_rdl})!", $_content, $_close)) {
$this->smarty->trigger_error("unmatched {block} {/block} pairs in file '$_filepath'");
}
- preg_match_all("!{$this->_ldl}block(.+?){$this->_rdl}|{$this->_ldl}/block(.*?){$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
+ preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block(.*?){$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
$_result_count = count($_result[0]);
$_start = 0;
while ($_start < $_result_count) {
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_template.php b/gosa-core/include/smarty/sysplugins/smarty_internal_template.php
index 3dfd3f317c47d1b9aa89741fc18c3696713eda2e..bb334595f0a4536fce23c2d193919c306be9a2de 100644 (file)
touch($this->getCompiledFilepath(), $saved_timestamp);
}
throw $e;
- }
+ }
// compiling succeded
if (!$this->resource_object->isEvaluated) {
// write compiled template
*/
public function getCachedFilepath ()
{
+ if (!isset($this->cache_resource_object)) {
+ $this->cache_resource_object = $this->smarty->cache->loadResource();
+ }
return $this->cached_filepath === null ?
$this->cached_filepath = ($this->resource_object->isEvaluated || !($this->caching == SMARTY_CACHING_LIFETIME_CURRENT || $this->caching == SMARTY_CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedFilepath($this) :
$this->cached_filepath;
*/
public function getCachedTimestamp ()
{
+ if (!isset($this->cache_resource_object)) {
+ $this->cache_resource_object = $this->smarty->cache->loadResource();
+ }
return $this->cached_timestamp === null ?
$this->cached_timestamp = ($this->resource_object->isEvaluated || !($this->caching == SMARTY_CACHING_LIFETIME_CURRENT || $this->caching == SMARTY_CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedTimestamp($this) :
$this->cached_timestamp;
*/
public function getCachedContent ()
{
+ if (!isset($this->cache_resource_object)) {
+ $this->cache_resource_object = $this->smarty->cache->loadResource();
+ }
return $this->rendered_content === null ?
$this->rendered_content = ($this->resource_object->isEvaluated || !($this->caching == SMARTY_CACHING_LIFETIME_CURRENT || $this->caching == SMARTY_CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedContents($this) :
$this->rendered_content;
if (class_exists($_resource_class, false)) {
return new $_resource_class($this->smarty);
} else {
- $this->smarty->register_resource($resource_type,
+ $this->smarty->register->resource($resource_type,
array("smarty_resource_{$resource_type}_source",
"smarty_resource_{$resource_type}_timestamp",
"smarty_resource_{$resource_type}_secure",
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_templatecompilerbase.php b/gosa-core/include/smarty/sysplugins/smarty_internal_templatecompilerbase.php
index c41d7750af3abf4541ff0dca9ccda2e12cd710dd..91ed88866e27292497e9da173d6fd79fa9e35acc 100644 (file)
return '';\r
} else {\r
// not an internal compiler tag\r
- if (strlen($tag) < 6 || substr_compare($tag, 'close', -5, 5) != 0) {\r
+ if (strlen($tag) < 6 || substr($tag, -5) != 'close') {\r
// check if tag is a registered object\r
if (isset($this->smarty->registered_objects[$tag]) && isset($args['object_methode'])) {\r
$methode = $args['object_methode'];\r
// generate replacement code\r
if ((!$this->template->resource_object->isEvaluated || $this->template->forceNocache) && $this->template->caching && !$this->suppressNocacheProcessing &&\r
($this->nocache || $this->tag_nocache || $this->template->forceNocache == 2)) {\r
- $this->tag_nocache = false;\r
$this->template->has_nocache_code = true;\r
$_output = str_replace("'", "\'", $content);\r
$_output = "<?php echo '/*%%SmartyNocache:{$this->nocache_hash}%%*/" . $_output . "/*/%%SmartyNocache:{$this->nocache_hash}%%*/';?>"; \r
$_output = $content;\r
} \r
$this->suppressNocacheProcessing = false;\r
+ $this->tag_nocache = false;\r
return $_output;\r
} \r
/**\r
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_templatelexer.php b/gosa-core/include/smarty/sysplugins/smarty_internal_templatelexer.php
index e28e67191b575622ed2e86103c1bf6c5e73b8f24..629909a850faa8e53c18c6ae71b3839c31204679 100644 (file)
$this->smarty = $compiler->smarty;
$this->compiler = $compiler;
$this->ldel = preg_quote($this->smarty->left_delimiter,'/');
+ $this->ldel_length = strlen($this->smarty->left_delimiter);
$this->rdel = preg_quote($this->smarty->right_delimiter,'/');
$this->smarty_token_names['LDEL'] = $this->smarty->left_delimiter;
$this->smarty_token_names['RDEL'] = $this->smarty->right_delimiter;
8 => 0,
9 => 0,
10 => 0,
- 11 => 0,
- 12 => 0,
+ 11 => 1,
13 => 0,
- 14 => 2,
+ 14 => 0,
+ 15 => 0,
+ 16 => 0,
17 => 0,
+ 18 => 2,
+ 21 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>)))|^([\S\s]+)/";
+ $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>)))|^([\S\s]+)/";
do {
if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
function yy_r1_11($yy_subpatterns)
{
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELIF;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r1_13($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELFOR;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r1_14($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r1_15($yy_subpatterns)
+ {
+
if ($this->smarty->auto_literal) {
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
} else {
$this->taglineno = $this->line;
}
}
- function yy_r1_12($yy_subpatterns)
+ function yy_r1_16($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r1_13($yy_subpatterns)
+ function yy_r1_17($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDEL;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r1_14($yy_subpatterns)
+ function yy_r1_18($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
}
- function yy_r1_17($yy_subpatterns)
+ function yy_r1_21($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
$tokenMap = array (
1 => 0,
2 => 0,
- 3 => 0,
- 4 => 0,
+ 3 => 1,
5 => 0,
6 => 0,
7 => 0,
8 => 0,
- 9 => 1,
- 11 => 1,
+ 9 => 0,
+ 10 => 0,
+ 11 => 0,
+ 12 => 0,
13 => 1,
- 15 => 0,
- 16 => 0,
- 17 => 0,
- 18 => 1,
- 20 => 1,
+ 15 => 1,
+ 17 => 1,
+ 19 => 0,
+ 20 => 0,
+ 21 => 0,
22 => 1,
24 => 1,
26 => 1,
34 => 1,
36 => 1,
38 => 1,
- 40 => 0,
- 41 => 0,
- 42 => 0,
- 43 => 0,
+ 40 => 1,
+ 42 => 1,
44 => 0,
45 => 0,
46 => 0,
47 => 0,
48 => 0,
49 => 0,
- 50 => 3,
- 54 => 0,
- 55 => 0,
- 56 => 0,
- 57 => 0,
+ 50 => 0,
+ 51 => 0,
+ 52 => 0,
+ 53 => 0,
+ 54 => 3,
58 => 0,
59 => 0,
60 => 0,
- 61 => 1,
- 63 => 1,
+ 61 => 0,
+ 62 => 0,
+ 63 => 0,
+ 64 => 0,
65 => 1,
- 67 => 0,
- 68 => 0,
- 69 => 0,
- 70 => 0,
+ 67 => 1,
+ 69 => 1,
71 => 0,
72 => 0,
73 => 0,
77 => 0,
78 => 0,
79 => 0,
- 80 => 1,
+ 80 => 0,
+ 81 => 0,
82 => 0,
83 => 0,
84 => 0,
85 => 0,
86 => 0,
87 => 0,
+ 88 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|else if|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/";
+ $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(0[xX][0-9a-fA-F]+)|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/";
do {
if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
function yy_r2_3($yy_subpatterns)
{
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELIF;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r2_5($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELFOR;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r2_6($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r2_7($yy_subpatterns)
+ {
+
if ($this->smarty->auto_literal) {
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
} else {
$this->taglineno = $this->line;
}
}
- function yy_r2_4($yy_subpatterns)
+ function yy_r2_8($yy_subpatterns)
{
if ($this->smarty->auto_literal) {
$this->yypopstate();
}
}
- function yy_r2_5($yy_subpatterns)
+ function yy_r2_9($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r2_6($yy_subpatterns)
+ function yy_r2_10($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDEL;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r2_7($yy_subpatterns)
+ function yy_r2_11($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_RDEL;
$this->yypopstate();
}
- function yy_r2_8($yy_subpatterns)
+ function yy_r2_12($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISIN;
}
- function yy_r2_9($yy_subpatterns)
+ function yy_r2_13($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_AS;
}
- function yy_r2_11($yy_subpatterns)
+ function yy_r2_15($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_TO;
}
- function yy_r2_13($yy_subpatterns)
+ function yy_r2_17($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_STEP;
}
- function yy_r2_15($yy_subpatterns)
+ function yy_r2_19($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_INSTANCEOF;
}
- function yy_r2_16($yy_subpatterns)
+ function yy_r2_20($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_IDENTITY;
}
- function yy_r2_17($yy_subpatterns)
+ function yy_r2_21($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_NONEIDENTITY;
}
- function yy_r2_18($yy_subpatterns)
+ function yy_r2_22($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_EQUALS;
}
- function yy_r2_20($yy_subpatterns)
+ function yy_r2_24($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_NOTEQUALS;
}
- function yy_r2_22($yy_subpatterns)
+ function yy_r2_26($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_GREATEREQUAL;
}
- function yy_r2_24($yy_subpatterns)
+ function yy_r2_28($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LESSEQUAL;
}
- function yy_r2_26($yy_subpatterns)
+ function yy_r2_30($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_GREATERTHAN;
}
- function yy_r2_28($yy_subpatterns)
+ function yy_r2_32($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LESSTHAN;
}
- function yy_r2_30($yy_subpatterns)
+ function yy_r2_34($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_MOD;
}
- function yy_r2_32($yy_subpatterns)
+ function yy_r2_36($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_NOT;
}
- function yy_r2_34($yy_subpatterns)
+ function yy_r2_38($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LAND;
}
- function yy_r2_36($yy_subpatterns)
+ function yy_r2_40($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LOR;
}
- function yy_r2_38($yy_subpatterns)
+ function yy_r2_42($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LXOR;
}
- function yy_r2_40($yy_subpatterns)
+ function yy_r2_44($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISODDBY;
}
- function yy_r2_41($yy_subpatterns)
+ function yy_r2_45($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY;
}
- function yy_r2_42($yy_subpatterns)
+ function yy_r2_46($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISODD;
}
- function yy_r2_43($yy_subpatterns)
+ function yy_r2_47($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTODD;
}
- function yy_r2_44($yy_subpatterns)
+ function yy_r2_48($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISEVENBY;
}
- function yy_r2_45($yy_subpatterns)
+ function yy_r2_49($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY;
}
- function yy_r2_46($yy_subpatterns)
+ function yy_r2_50($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISEVEN;
}
- function yy_r2_47($yy_subpatterns)
+ function yy_r2_51($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN;
}
- function yy_r2_48($yy_subpatterns)
+ function yy_r2_52($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISDIVBY;
}
- function yy_r2_49($yy_subpatterns)
+ function yy_r2_53($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY;
}
- function yy_r2_50($yy_subpatterns)
+ function yy_r2_54($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_TYPECAST;
}
- function yy_r2_54($yy_subpatterns)
+ function yy_r2_58($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OPENP;
}
- function yy_r2_55($yy_subpatterns)
+ function yy_r2_59($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_CLOSEP;
}
- function yy_r2_56($yy_subpatterns)
+ function yy_r2_60($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OPENB;
}
- function yy_r2_57($yy_subpatterns)
+ function yy_r2_61($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_CLOSEB;
}
- function yy_r2_58($yy_subpatterns)
+ function yy_r2_62($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_PTR;
}
- function yy_r2_59($yy_subpatterns)
+ function yy_r2_63($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_APTR;
}
- function yy_r2_60($yy_subpatterns)
+ function yy_r2_64($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_EQUAL;
}
- function yy_r2_61($yy_subpatterns)
+ function yy_r2_65($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_INCDEC;
}
- function yy_r2_63($yy_subpatterns)
+ function yy_r2_67($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_UNIMATH;
}
- function yy_r2_65($yy_subpatterns)
+ function yy_r2_69($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_MATH;
}
- function yy_r2_67($yy_subpatterns)
+ function yy_r2_71($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_DOLLAR;
}
- function yy_r2_68($yy_subpatterns)
+ function yy_r2_72($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_SEMICOLON;
}
- function yy_r2_69($yy_subpatterns)
+ function yy_r2_73($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON;
}
- function yy_r2_70($yy_subpatterns)
+ function yy_r2_74($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_COLON;
}
- function yy_r2_71($yy_subpatterns)
+ function yy_r2_75($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_AT;
}
- function yy_r2_72($yy_subpatterns)
+ function yy_r2_76($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_HATCH;
}
- function yy_r2_73($yy_subpatterns)
+ function yy_r2_77($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_QUOTE;
$this->yypushstate(self::DOUBLEQUOTEDSTRING);
}
- function yy_r2_74($yy_subpatterns)
+ function yy_r2_78($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_BACKTICK;
$this->yypopstate();
}
- function yy_r2_75($yy_subpatterns)
+ function yy_r2_79($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_VERT;
}
- function yy_r2_76($yy_subpatterns)
+ function yy_r2_80($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_DOT;
}
- function yy_r2_77($yy_subpatterns)
+ function yy_r2_81($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_COMMA;
}
- function yy_r2_78($yy_subpatterns)
+ function yy_r2_82($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ANDSYM;
}
- function yy_r2_79($yy_subpatterns)
+ function yy_r2_83($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_QMARK;
}
- function yy_r2_80($yy_subpatterns)
- {
-
- $this->token = Smarty_Internal_Templateparser::TP_IF;
- }
- function yy_r2_82($yy_subpatterns)
- {
-
- $this->token = Smarty_Internal_Templateparser::TP_FOREACH;
- }
- function yy_r2_83($yy_subpatterns)
+ function yy_r2_84($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_FOR;
+ $this->token = Smarty_Internal_Templateparser::TP_HEX;
}
- function yy_r2_84($yy_subpatterns)
+ function yy_r2_85($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ID;
}
- function yy_r2_85($yy_subpatterns)
+ function yy_r2_86($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_INTEGER;
}
- function yy_r2_86($yy_subpatterns)
+ function yy_r2_87($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_SPACE;
}
- function yy_r2_87($yy_subpatterns)
+ function yy_r2_88($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
2 => 0,
3 => 0,
4 => 0,
- 5 => 2,
- 8 => 0,
+ 5 => 0,
+ 6 => 2,
+ 9 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^(([\S\s]*?)(?=(".$this->ldel."\/?literal".$this->rdel."|<\\?)))|^([\S\s]+)/";
+ $yy_global_pattern = "/^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^([\t ]*[\r\n]+[\t ]*)|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."\/?literal".$this->rdel."|<\\?)))|^([\S\s]+)/";
do {
if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
function yy_r3_3($yy_subpatterns)
{
+ $this->token = Smarty_Internal_Templateparser::TP_LITERAL;
+ }
+ function yy_r3_4($yy_subpatterns)
+ {
+
if (in_array($this->value, Array('<?', '<?=', '<?php'))) {
$this->token = Smarty_Internal_Templateparser::TP_PHPSTARTTAG;
} else {
$this->value = substr($this->value, 0, 2);
}
}
- function yy_r3_4($yy_subpatterns)
+ function yy_r3_5($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LITERAL;
}
- function yy_r3_5($yy_subpatterns)
+ function yy_r3_6($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LITERAL;
}
- function yy_r3_8($yy_subpatterns)
+ function yy_r3_9($yy_subpatterns)
{
$this->compiler->trigger_template_error ("missing or misspelled literal closing tag");
{
$tokenMap = array (
1 => 0,
- 2 => 0,
- 3 => 0,
+ 2 => 1,
4 => 0,
5 => 0,
6 => 0,
7 => 0,
8 => 0,
- 9 => 3,
- 13 => 0,
+ 9 => 0,
+ 10 => 0,
+ 11 => 0,
+ 12 => 0,
+ 13 => 3,
+ 17 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$[0-9]*[a-zA-Z_]\\w*)|^(\\$)|^(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|^([\S\s]+)/";
+ $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$[0-9]*[a-zA-Z_]\\w*)|^(\\$)|^(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|^([\S\s]+)/";
do {
if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
function yy_r4_2($yy_subpatterns)
{
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELIF;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r4_4($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELFOR;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r4_5($yy_subpatterns)
+ {
+
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r4_6($yy_subpatterns)
+ {
+
if ($this->smarty->auto_literal) {
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
} else {
$this->taglineno = $this->line;
}
}
- function yy_r4_3($yy_subpatterns)
+ function yy_r4_7($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r4_4($yy_subpatterns)
+ function yy_r4_8($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDEL;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r4_5($yy_subpatterns)
+ function yy_r4_9($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_QUOTE;
$this->yypopstate();
}
- function yy_r4_6($yy_subpatterns)
+ function yy_r4_10($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_BACKTICK;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r4_7($yy_subpatterns)
+ function yy_r4_11($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_DOLLARID;
}
- function yy_r4_8($yy_subpatterns)
+ function yy_r4_12($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
}
- function yy_r4_9($yy_subpatterns)
+ function yy_r4_13($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
}
- function yy_r4_13($yy_subpatterns)
+ function yy_r4_17($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_templateparser.php b/gosa-core/include/smarty/sysplugins/smarty_internal_templateparser.php
index f42ffc330b6cd2e02d1d9851daaba0c133a172ad..befb100d168b10892c5eb93d794ef74ff82b713f 100644 (file)
@@ -150,15 +150,15 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php
const TP_DOLLAR = 14;\r
const TP_ID = 15;\r
const TP_EQUAL = 16;\r
- const TP_FOREACH = 17;\r
- const TP_PTR = 18;\r
- const TP_IF = 19;\r
- const TP_SPACE = 20;\r
- const TP_FOR = 21;\r
- const TP_SEMICOLON = 22;\r
- const TP_INCDEC = 23;\r
- const TP_TO = 24;\r
- const TP_STEP = 25;\r
+ const TP_PTR = 17;\r
+ const TP_LDELIF = 18;\r
+ const TP_SPACE = 19;\r
+ const TP_LDELFOR = 20;\r
+ const TP_SEMICOLON = 21;\r
+ const TP_INCDEC = 22;\r
+ const TP_TO = 23;\r
+ const TP_STEP = 24;\r
+ const TP_LDELFOREACH = 25;\r
const TP_AS = 26;\r
const TP_APTR = 27;\r
const TP_LDELSLASH = 28;\r
@@ -184,673 +184,720 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php
const TP_QMARK = 48;\r
const TP_NOT = 49;\r
const TP_TYPECAST = 50;\r
- const TP_DOT = 51;\r
- const TP_SINGLEQUOTESTRING = 52;\r
- const TP_DOUBLECOLON = 53;\r
- const TP_AT = 54;\r
- const TP_HATCH = 55;\r
- const TP_OPENB = 56;\r
- const TP_CLOSEB = 57;\r
- const TP_EQUALS = 58;\r
- const TP_NOTEQUALS = 59;\r
- const TP_GREATERTHAN = 60;\r
- const TP_LESSTHAN = 61;\r
- const TP_GREATEREQUAL = 62;\r
- const TP_LESSEQUAL = 63;\r
- const TP_IDENTITY = 64;\r
- const TP_NONEIDENTITY = 65;\r
- const TP_MOD = 66;\r
- const TP_LAND = 67;\r
- const TP_LOR = 68;\r
- const TP_LXOR = 69;\r
- const TP_QUOTE = 70;\r
- const TP_BACKTICK = 71;\r
- const TP_DOLLARID = 72;\r
- const YY_NO_ACTION = 548;\r
- const YY_ACCEPT_ACTION = 547;\r
- const YY_ERROR_ACTION = 546;\r
+ const TP_HEX = 51;\r
+ const TP_DOT = 52;\r
+ const TP_SINGLEQUOTESTRING = 53;\r
+ const TP_DOUBLECOLON = 54;\r
+ const TP_AT = 55;\r
+ const TP_HATCH = 56;\r
+ const TP_OPENB = 57;\r
+ const TP_CLOSEB = 58;\r
+ const TP_EQUALS = 59;\r
+ const TP_NOTEQUALS = 60;\r
+ const TP_GREATERTHAN = 61;\r
+ const TP_LESSTHAN = 62;\r
+ const TP_GREATEREQUAL = 63;\r
+ const TP_LESSEQUAL = 64;\r
+ const TP_IDENTITY = 65;\r
+ const TP_NONEIDENTITY = 66;\r
+ const TP_MOD = 67;\r
+ const TP_LAND = 68;\r
+ const TP_LOR = 69;\r
+ const TP_LXOR = 70;\r
+ const TP_QUOTE = 71;\r
+ const TP_BACKTICK = 72;\r
+ const TP_DOLLARID = 73;\r
+ const YY_NO_ACTION = 546;\r
+ const YY_ACCEPT_ACTION = 545;\r
+ const YY_ERROR_ACTION = 544;\r
\r
- const YY_SZ_ACTTAB = 1810;\r
+ const YY_SZ_ACTTAB = 2037;\r
static public $yy_action = array(\r
- /* 0 */ 183, 280, 7, 38, 325, 217, 275, 199, 53, 119,\r
- /* 10 */ 104, 266, 317, 156, 323, 308, 305, 309, 335, 184,\r
- /* 20 */ 153, 298, 307, 283, 281, 193, 278, 32, 104, 319,\r
- /* 30 */ 47, 46, 45, 39, 16, 23, 341, 337, 21, 18,\r
- /* 40 */ 338, 339, 19, 20, 278, 43, 296, 293, 292, 288,\r
- /* 50 */ 289, 290, 153, 157, 323, 3, 24, 348, 355, 356,\r
- /* 60 */ 357, 358, 354, 353, 349, 350, 351, 352, 336, 183,\r
- /* 70 */ 280, 125, 183, 117, 100, 12, 99, 51, 121, 102,\r
- /* 80 */ 148, 322, 112, 26, 331, 168, 4, 335, 184, 191,\r
- /* 90 */ 333, 184, 283, 281, 286, 278, 459, 184, 316, 47,\r
- /* 100 */ 46, 45, 39, 16, 23, 341, 337, 21, 18, 338,\r
- /* 110 */ 339, 19, 20, 294, 295, 297, 12, 12, 547, 84,\r
- /* 120 */ 226, 295, 297, 112, 112, 36, 348, 355, 356, 357,\r
- /* 130 */ 358, 354, 353, 349, 350, 351, 352, 336, 183, 137,\r
- /* 140 */ 87, 280, 261, 240, 254, 182, 253, 199, 49, 118,\r
- /* 150 */ 104, 38, 123, 286, 275, 29, 172, 184, 335, 10,\r
- /* 160 */ 421, 13, 14, 283, 281, 277, 278, 421, 47, 46,\r
- /* 170 */ 45, 39, 16, 23, 341, 337, 21, 18, 338, 339,\r
- /* 180 */ 19, 20, 183, 318, 28, 280, 113, 133, 152, 282,\r
- /* 190 */ 184, 199, 43, 202, 104, 348, 355, 356, 357, 358,\r
- /* 200 */ 354, 353, 349, 350, 351, 352, 336, 283, 281, 306,\r
- /* 210 */ 278, 299, 47, 46, 45, 39, 16, 23, 341, 337,\r
- /* 220 */ 21, 18, 338, 339, 19, 20, 38, 89, 38, 275,\r
- /* 230 */ 29, 275, 271, 238, 122, 113, 195, 2, 244, 348,\r
- /* 240 */ 355, 356, 357, 358, 354, 353, 349, 350, 351, 352,\r
- /* 250 */ 336, 183, 280, 125, 183, 187, 174, 12, 199, 83,\r
- /* 260 */ 229, 104, 200, 163, 112, 419, 302, 274, 245, 335,\r
- /* 270 */ 202, 215, 419, 184, 283, 281, 89, 278, 204, 207,\r
- /* 280 */ 234, 47, 46, 45, 39, 16, 23, 341, 337, 21,\r
- /* 290 */ 18, 338, 339, 19, 20, 236, 17, 232, 12, 313,\r
- /* 300 */ 8, 38, 54, 54, 275, 112, 184, 340, 348, 355,\r
- /* 310 */ 356, 357, 358, 354, 353, 349, 350, 351, 352, 336,\r
- /* 320 */ 183, 280, 35, 165, 418, 100, 104, 101, 52, 121,\r
- /* 330 */ 102, 184, 38, 326, 271, 275, 172, 196, 335, 184,\r
- /* 340 */ 10, 13, 278, 283, 281, 359, 278, 218, 228, 183,\r
- /* 350 */ 47, 46, 45, 39, 16, 23, 341, 337, 21, 18,\r
- /* 360 */ 338, 339, 19, 20, 183, 344, 38, 280, 184, 211,\r
- /* 370 */ 265, 273, 184, 199, 26, 271, 104, 348, 355, 356,\r
- /* 380 */ 357, 358, 354, 353, 349, 350, 351, 352, 336, 283,\r
- /* 390 */ 281, 147, 278, 274, 47, 46, 45, 39, 16, 23,\r
- /* 400 */ 341, 337, 21, 18, 338, 339, 19, 20, 183, 208,\r
- /* 410 */ 230, 38, 38, 327, 275, 275, 33, 40, 107, 225,\r
- /* 420 */ 166, 348, 355, 356, 357, 358, 354, 353, 349, 350,\r
- /* 430 */ 351, 352, 336, 224, 267, 184, 158, 323, 47, 46,\r
- /* 440 */ 45, 39, 16, 23, 341, 337, 21, 18, 338, 339,\r
- /* 450 */ 19, 20, 183, 210, 38, 280, 332, 185, 92, 284,\r
- /* 460 */ 155, 199, 233, 184, 104, 348, 355, 356, 357, 358,\r
- /* 470 */ 354, 353, 349, 350, 351, 352, 336, 283, 281, 145,\r
- /* 480 */ 278, 201, 47, 46, 45, 39, 16, 23, 341, 337,\r
- /* 490 */ 21, 18, 338, 339, 19, 20, 183, 324, 95, 239,\r
- /* 500 */ 161, 323, 189, 178, 184, 43, 347, 150, 247, 348,\r
- /* 510 */ 355, 356, 357, 358, 354, 353, 349, 350, 351, 352,\r
- /* 520 */ 336, 286, 235, 115, 208, 268, 47, 46, 45, 39,\r
- /* 530 */ 16, 23, 341, 337, 21, 18, 338, 339, 19, 20,\r
- /* 540 */ 183, 312, 160, 280, 345, 203, 231, 272, 184, 199,\r
- /* 550 */ 154, 184, 104, 348, 355, 356, 357, 358, 354, 353,\r
- /* 560 */ 349, 350, 351, 352, 336, 283, 281, 279, 278, 188,\r
- /* 570 */ 47, 46, 45, 39, 16, 23, 341, 337, 21, 18,\r
- /* 580 */ 338, 339, 19, 20, 183, 37, 214, 280, 315, 93,\r
- /* 590 */ 114, 241, 108, 199, 194, 184, 104, 348, 355, 356,\r
- /* 600 */ 357, 358, 354, 353, 349, 350, 351, 352, 336, 283,\r
- /* 610 */ 281, 90, 278, 255, 47, 46, 45, 39, 16, 23,\r
- /* 620 */ 341, 337, 21, 18, 338, 339, 19, 20, 183, 300,\r
- /* 630 */ 12, 256, 310, 271, 198, 258, 184, 112, 184, 221,\r
- /* 640 */ 328, 348, 355, 356, 357, 358, 354, 353, 349, 350,\r
- /* 650 */ 351, 352, 336, 213, 109, 252, 216, 11, 47, 46,\r
- /* 660 */ 45, 39, 16, 23, 341, 337, 21, 18, 338, 339,\r
- /* 670 */ 19, 20, 183, 303, 243, 280, 334, 4, 184, 311,\r
- /* 680 */ 184, 199, 54, 184, 104, 348, 355, 356, 357, 358,\r
- /* 690 */ 354, 353, 349, 350, 351, 352, 336, 283, 281, 34,\r
- /* 700 */ 278, 9, 47, 46, 45, 39, 16, 23, 341, 337,\r
- /* 710 */ 21, 18, 338, 339, 19, 20, 38, 196, 304, 275,\r
- /* 720 */ 27, 262, 263, 233, 238, 184, 106, 250, 2, 348,\r
- /* 730 */ 355, 356, 357, 358, 354, 353, 349, 350, 351, 352,\r
- /* 740 */ 336, 183, 280, 301, 125, 291, 217, 201, 199, 64,\r
- /* 750 */ 43, 104, 134, 43, 212, 38, 329, 162, 275, 335,\r
- /* 760 */ 237, 6, 159, 266, 283, 281, 286, 278, 94, 135,\r
- /* 770 */ 220, 47, 46, 45, 39, 16, 23, 341, 337, 21,\r
- /* 780 */ 18, 338, 339, 19, 20, 183, 246, 17, 232, 330,\r
- /* 790 */ 88, 219, 5, 274, 41, 54, 184, 257, 348, 355,\r
- /* 800 */ 356, 357, 358, 354, 353, 349, 350, 351, 352, 336,\r
- /* 810 */ 111, 197, 139, 276, 248, 47, 46, 45, 39, 16,\r
- /* 820 */ 23, 341, 337, 21, 18, 338, 339, 19, 20, 183,\r
- /* 830 */ 287, 343, 314, 22, 144, 91, 270, 184, 184, 184,\r
- /* 840 */ 142, 227, 348, 355, 356, 357, 358, 354, 353, 349,\r
- /* 850 */ 350, 351, 352, 336, 286, 40, 249, 303, 303, 47,\r
- /* 860 */ 46, 45, 39, 16, 23, 341, 337, 21, 18, 338,\r
- /* 870 */ 339, 19, 20, 183, 264, 303, 280, 303, 303, 303,\r
- /* 880 */ 269, 116, 199, 303, 303, 104, 348, 355, 356, 357,\r
- /* 890 */ 358, 354, 353, 349, 350, 351, 352, 336, 283, 281,\r
- /* 900 */ 303, 278, 303, 47, 46, 45, 39, 16, 23, 341,\r
- /* 910 */ 337, 21, 18, 338, 339, 19, 20, 167, 303, 303,\r
- /* 920 */ 303, 303, 303, 303, 303, 303, 303, 31, 15, 303,\r
- /* 930 */ 348, 355, 356, 357, 358, 354, 353, 349, 350, 351,\r
- /* 940 */ 352, 336, 132, 3, 303, 105, 86, 167, 120, 303,\r
- /* 950 */ 222, 3, 205, 110, 169, 303, 286, 31, 15, 125,\r
- /* 960 */ 209, 98, 126, 48, 303, 131, 303, 125, 209, 129,\r
- /* 970 */ 164, 48, 303, 303, 277, 277, 303, 25, 303, 286,\r
- /* 980 */ 44, 42, 277, 285, 303, 30, 89, 1, 44, 42,\r
- /* 990 */ 3, 285, 110, 175, 89, 1, 242, 151, 143, 303,\r
- /* 1000 */ 303, 85, 3, 167, 110, 175, 125, 209, 303, 85,\r
- /* 1010 */ 48, 286, 286, 31, 15, 136, 303, 146, 125, 209,\r
- /* 1020 */ 303, 303, 48, 303, 30, 270, 303, 44, 42, 286,\r
- /* 1030 */ 285, 286, 303, 89, 1, 3, 25, 113, 175, 44,\r
- /* 1040 */ 42, 124, 285, 270, 128, 89, 1, 3, 85, 113,\r
- /* 1050 */ 170, 125, 209, 97, 277, 48, 303, 277, 96, 303,\r
- /* 1060 */ 85, 303, 303, 125, 179, 303, 277, 48, 303, 30,\r
- /* 1070 */ 303, 277, 44, 42, 149, 285, 127, 303, 89, 1,\r
- /* 1080 */ 3, 30, 110, 173, 44, 42, 303, 285, 286, 277,\r
- /* 1090 */ 89, 1, 3, 85, 103, 175, 125, 209, 303, 303,\r
- /* 1100 */ 48, 130, 270, 303, 303, 85, 303, 141, 125, 209,\r
- /* 1110 */ 303, 303, 48, 303, 30, 286, 303, 44, 42, 303,\r
- /* 1120 */ 285, 286, 303, 89, 1, 3, 30, 110, 171, 44,\r
- /* 1130 */ 42, 303, 285, 303, 303, 89, 1, 3, 85, 113,\r
- /* 1140 */ 175, 125, 209, 303, 303, 48, 303, 303, 303, 303,\r
- /* 1150 */ 85, 303, 303, 125, 209, 303, 303, 48, 303, 25,\r
- /* 1160 */ 303, 303, 44, 42, 303, 285, 303, 303, 89, 1,\r
- /* 1170 */ 3, 30, 113, 177, 44, 42, 303, 285, 303, 303,\r
- /* 1180 */ 89, 303, 303, 85, 303, 303, 125, 209, 303, 303,\r
- /* 1190 */ 48, 303, 280, 303, 303, 85, 176, 303, 199, 71,\r
- /* 1200 */ 303, 104, 303, 303, 30, 303, 303, 44, 42, 335,\r
- /* 1210 */ 285, 303, 303, 89, 283, 281, 280, 278, 303, 303,\r
- /* 1220 */ 217, 303, 199, 62, 303, 104, 180, 321, 85, 303,\r
- /* 1230 */ 303, 303, 303, 335, 303, 303, 303, 303, 283, 281,\r
- /* 1240 */ 280, 278, 303, 303, 217, 303, 199, 62, 206, 104,\r
- /* 1250 */ 303, 303, 280, 303, 303, 303, 217, 335, 199, 62,\r
- /* 1260 */ 303, 104, 283, 281, 280, 278, 303, 303, 176, 335,\r
- /* 1270 */ 199, 71, 223, 104, 283, 281, 303, 278, 303, 303,\r
- /* 1280 */ 303, 335, 303, 303, 251, 303, 283, 281, 280, 278,\r
- /* 1290 */ 303, 303, 217, 303, 199, 62, 303, 104, 303, 320,\r
- /* 1300 */ 280, 303, 303, 303, 217, 335, 199, 65, 303, 104,\r
- /* 1310 */ 283, 281, 303, 278, 303, 303, 303, 335, 303, 303,\r
- /* 1320 */ 190, 303, 283, 281, 280, 278, 303, 303, 217, 303,\r
- /* 1330 */ 199, 73, 303, 104, 303, 303, 280, 303, 303, 303,\r
- /* 1340 */ 217, 335, 199, 72, 303, 104, 283, 281, 280, 278,\r
- /* 1350 */ 303, 303, 217, 335, 199, 63, 303, 104, 283, 281,\r
- /* 1360 */ 303, 278, 303, 303, 303, 335, 303, 303, 303, 303,\r
- /* 1370 */ 283, 281, 280, 278, 303, 303, 217, 303, 199, 70,\r
- /* 1380 */ 303, 104, 303, 303, 280, 303, 303, 303, 217, 335,\r
- /* 1390 */ 199, 67, 303, 104, 283, 281, 303, 278, 303, 303,\r
- /* 1400 */ 303, 335, 303, 303, 303, 303, 283, 281, 280, 278,\r
- /* 1410 */ 303, 303, 217, 303, 199, 75, 303, 104, 303, 303,\r
- /* 1420 */ 280, 303, 303, 303, 217, 335, 199, 74, 303, 104,\r
- /* 1430 */ 283, 281, 280, 278, 303, 303, 217, 335, 199, 79,\r
- /* 1440 */ 303, 104, 283, 281, 303, 278, 303, 303, 303, 335,\r
- /* 1450 */ 303, 303, 303, 303, 283, 281, 280, 278, 303, 303,\r
- /* 1460 */ 217, 303, 199, 66, 303, 104, 303, 303, 280, 303,\r
- /* 1470 */ 303, 303, 217, 335, 199, 57, 303, 104, 283, 281,\r
- /* 1480 */ 303, 278, 303, 303, 303, 335, 303, 303, 303, 303,\r
- /* 1490 */ 283, 281, 280, 278, 303, 303, 217, 303, 199, 76,\r
- /* 1500 */ 303, 104, 303, 303, 280, 303, 303, 303, 217, 335,\r
- /* 1510 */ 199, 82, 303, 104, 283, 281, 280, 278, 303, 303,\r
- /* 1520 */ 217, 335, 181, 59, 303, 104, 283, 281, 303, 278,\r
- /* 1530 */ 303, 303, 303, 335, 303, 303, 303, 303, 283, 281,\r
- /* 1540 */ 280, 278, 303, 303, 217, 303, 199, 81, 303, 104,\r
- /* 1550 */ 303, 303, 280, 303, 303, 303, 217, 335, 199, 77,\r
- /* 1560 */ 303, 104, 283, 281, 303, 278, 303, 303, 303, 335,\r
- /* 1570 */ 303, 303, 303, 303, 283, 281, 280, 278, 303, 303,\r
- /* 1580 */ 217, 303, 199, 50, 303, 104, 303, 303, 280, 303,\r
- /* 1590 */ 303, 303, 217, 335, 199, 55, 303, 104, 283, 281,\r
- /* 1600 */ 280, 278, 303, 303, 217, 335, 199, 69, 303, 104,\r
- /* 1610 */ 283, 281, 303, 278, 303, 303, 303, 335, 303, 303,\r
- /* 1620 */ 303, 303, 283, 281, 280, 278, 303, 303, 217, 303,\r
- /* 1630 */ 199, 60, 303, 104, 303, 303, 280, 303, 303, 303,\r
- /* 1640 */ 217, 335, 199, 61, 303, 104, 283, 281, 303, 278,\r
- /* 1650 */ 303, 303, 303, 335, 303, 303, 303, 303, 283, 281,\r
- /* 1660 */ 280, 278, 303, 303, 217, 303, 199, 56, 303, 104,\r
- /* 1670 */ 303, 303, 280, 303, 303, 303, 217, 335, 199, 80,\r
- /* 1680 */ 303, 104, 283, 281, 280, 278, 303, 303, 217, 335,\r
- /* 1690 */ 199, 68, 303, 104, 283, 281, 303, 278, 303, 303,\r
- /* 1700 */ 303, 335, 303, 303, 303, 303, 283, 281, 280, 278,\r
- /* 1710 */ 303, 303, 217, 303, 199, 58, 303, 104, 303, 303,\r
- /* 1720 */ 280, 303, 303, 303, 217, 335, 199, 78, 303, 104,\r
- /* 1730 */ 283, 281, 303, 278, 303, 303, 303, 335, 303, 303,\r
- /* 1740 */ 303, 138, 283, 281, 280, 278, 167, 303, 192, 303,\r
- /* 1750 */ 199, 303, 303, 104, 280, 286, 31, 15, 342, 303,\r
- /* 1760 */ 199, 186, 303, 104, 303, 303, 283, 281, 303, 278,\r
- /* 1770 */ 303, 346, 303, 303, 303, 303, 283, 281, 303, 278,\r
- /* 1780 */ 140, 303, 303, 303, 280, 167, 303, 303, 259, 303,\r
- /* 1790 */ 199, 303, 303, 104, 286, 31, 15, 303, 303, 303,\r
- /* 1800 */ 303, 260, 303, 303, 303, 303, 283, 281, 303, 278,\r
+ /* 0 */ 175, 239, 238, 246, 248, 235, 234, 230, 266, 273,\r
+ /* 10 */ 158, 223, 291, 7, 29, 170, 12, 290, 179, 205,\r
+ /* 20 */ 13, 202, 200, 179, 114, 5, 124, 117, 233, 192,\r
+ /* 30 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27,\r
+ /* 40 */ 278, 256, 31, 30, 263, 279, 251, 35, 8, 158,\r
+ /* 50 */ 265, 271, 545, 83, 241, 238, 246, 136, 306, 307,\r
+ /* 60 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317,\r
+ /* 70 */ 175, 315, 289, 175, 132, 268, 113, 219, 179, 166,\r
+ /* 80 */ 105, 152, 296, 221, 175, 319, 168, 284, 179, 206,\r
+ /* 90 */ 128, 179, 358, 351, 284, 314, 331, 216, 183, 110,\r
+ /* 100 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27,\r
+ /* 110 */ 278, 256, 31, 30, 42, 43, 45, 40, 21, 22,\r
+ /* 120 */ 281, 299, 26, 27, 278, 256, 31, 30, 306, 307,\r
+ /* 130 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317,\r
+ /* 140 */ 175, 4, 306, 307, 308, 305, 304, 301, 302, 303,\r
+ /* 150 */ 309, 310, 316, 317, 175, 33, 32, 311, 179, 346,\r
+ /* 160 */ 17, 32, 348, 38, 346, 345, 253, 156, 343, 338,\r
+ /* 170 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27,\r
+ /* 180 */ 278, 256, 31, 30, 42, 43, 45, 40, 21, 22,\r
+ /* 190 */ 281, 299, 26, 27, 278, 256, 31, 30, 306, 307,\r
+ /* 200 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317,\r
+ /* 210 */ 175, 212, 306, 307, 308, 305, 304, 301, 302, 303,\r
+ /* 220 */ 309, 310, 316, 317, 175, 220, 32, 259, 179, 346,\r
+ /* 230 */ 32, 157, 343, 346, 34, 146, 252, 347, 107, 203,\r
+ /* 240 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27,\r
+ /* 250 */ 278, 256, 31, 30, 42, 43, 45, 40, 21, 22,\r
+ /* 260 */ 281, 299, 26, 27, 278, 256, 31, 30, 306, 307,\r
+ /* 270 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317,\r
+ /* 280 */ 87, 323, 306, 307, 308, 305, 304, 301, 302, 303,\r
+ /* 290 */ 309, 310, 316, 317, 175, 315, 153, 201, 347, 222,\r
+ /* 300 */ 122, 219, 53, 119, 105, 283, 164, 36, 175, 103,\r
+ /* 310 */ 137, 179, 318, 165, 288, 314, 358, 351, 262, 314,\r
+ /* 320 */ 258, 189, 24, 23, 42, 43, 45, 40, 21, 22,\r
+ /* 330 */ 281, 299, 26, 27, 278, 256, 31, 30, 42, 43,\r
+ /* 340 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256,\r
+ /* 350 */ 31, 30, 306, 307, 308, 305, 304, 301, 302, 303,\r
+ /* 360 */ 309, 310, 316, 317, 175, 225, 306, 307, 308, 305,\r
+ /* 370 */ 304, 301, 302, 303, 309, 310, 316, 317, 175, 414,\r
+ /* 380 */ 320, 282, 199, 298, 162, 179, 179, 179, 288, 179,\r
+ /* 390 */ 229, 161, 343, 347, 42, 43, 45, 40, 21, 22,\r
+ /* 400 */ 281, 299, 26, 27, 278, 256, 31, 30, 42, 43,\r
+ /* 410 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256,\r
+ /* 420 */ 31, 30, 306, 307, 308, 305, 304, 301, 302, 303,\r
+ /* 430 */ 309, 310, 316, 317, 2, 128, 306, 307, 308, 305,\r
+ /* 440 */ 304, 301, 302, 303, 309, 310, 316, 317, 175, 315,\r
+ /* 450 */ 154, 175, 86, 100, 155, 98, 52, 121, 99, 159,\r
+ /* 460 */ 167, 32, 260, 357, 346, 128, 318, 196, 288, 179,\r
+ /* 470 */ 358, 351, 102, 314, 32, 240, 187, 346, 42, 43,\r
+ /* 480 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256,\r
+ /* 490 */ 31, 30, 175, 194, 32, 116, 12, 346, 34, 32,\r
+ /* 500 */ 170, 20, 346, 280, 114, 13, 306, 307, 308, 305,\r
+ /* 510 */ 304, 301, 302, 303, 309, 310, 316, 317, 321, 46,\r
+ /* 520 */ 191, 217, 42, 43, 45, 40, 21, 22, 281, 299,\r
+ /* 530 */ 26, 27, 278, 256, 31, 30, 175, 224, 250, 328,\r
+ /* 540 */ 32, 32, 224, 346, 214, 25, 175, 104, 243, 280,\r
+ /* 550 */ 306, 307, 308, 305, 304, 301, 302, 303, 309, 310,\r
+ /* 560 */ 316, 317, 261, 15, 179, 297, 42, 43, 45, 40,\r
+ /* 570 */ 21, 22, 281, 299, 26, 27, 278, 256, 31, 30,\r
+ /* 580 */ 175, 295, 12, 209, 93, 330, 32, 179, 32, 211,\r
+ /* 590 */ 114, 182, 269, 134, 306, 307, 308, 305, 304, 301,\r
+ /* 600 */ 302, 303, 309, 310, 316, 317, 284, 324, 347, 292,\r
+ /* 610 */ 42, 43, 45, 40, 21, 22, 281, 299, 26, 27,\r
+ /* 620 */ 278, 256, 31, 30, 175, 342, 293, 12, 339, 247,\r
+ /* 630 */ 228, 179, 179, 179, 179, 114, 179, 149, 306, 307,\r
+ /* 640 */ 308, 305, 304, 301, 302, 303, 309, 310, 316, 317,\r
+ /* 650 */ 284, 109, 39, 3, 42, 43, 45, 40, 21, 22,\r
+ /* 660 */ 281, 299, 26, 27, 278, 256, 31, 30, 175, 356,\r
+ /* 670 */ 349, 355, 341, 352, 236, 179, 179, 179, 179, 179,\r
+ /* 680 */ 179, 294, 306, 307, 308, 305, 304, 301, 302, 303,\r
+ /* 690 */ 309, 310, 316, 317, 46, 336, 111, 267, 42, 43,\r
+ /* 700 */ 45, 40, 21, 22, 281, 299, 26, 27, 278, 256,\r
+ /* 710 */ 31, 30, 175, 46, 213, 354, 245, 350, 277, 128,\r
+ /* 720 */ 288, 11, 41, 9, 120, 139, 306, 307, 308, 305,\r
+ /* 730 */ 304, 301, 302, 303, 309, 310, 316, 317, 284, 179,\r
+ /* 740 */ 221, 223, 42, 43, 45, 40, 21, 22, 281, 299,\r
+ /* 750 */ 26, 27, 278, 256, 31, 30, 102, 415, 8, 255,\r
+ /* 760 */ 207, 417, 14, 415, 198, 37, 353, 417, 333, 143,\r
+ /* 770 */ 306, 307, 308, 305, 304, 301, 302, 303, 309, 310,\r
+ /* 780 */ 316, 317, 284, 7, 232, 115, 169, 226, 315, 205,\r
+ /* 790 */ 12, 202, 222, 46, 219, 59, 124, 105, 114, 192,\r
+ /* 800 */ 215, 32, 344, 44, 346, 318, 130, 325, 35, 358,\r
+ /* 810 */ 351, 270, 314, 147, 120, 10, 195, 16, 237, 208,\r
+ /* 820 */ 48, 47, 313, 204, 340, 97, 284, 87, 1, 227,\r
+ /* 830 */ 7, 249, 112, 85, 123, 150, 205, 237, 202, 141,\r
+ /* 840 */ 285, 329, 84, 124, 126, 6, 192, 215, 284, 244,\r
+ /* 850 */ 44, 205, 284, 202, 90, 179, 237, 188, 124, 142,\r
+ /* 860 */ 148, 192, 285, 88, 28, 163, 285, 48, 47, 313,\r
+ /* 870 */ 204, 340, 284, 284, 87, 1, 96, 7, 315, 115,\r
+ /* 880 */ 178, 46, 186, 205, 219, 202, 131, 105, 237, 84,\r
+ /* 890 */ 124, 95, 312, 192, 215, 190, 106, 44, 237, 358,\r
+ /* 900 */ 351, 125, 314, 237, 327, 18, 322, 140, 237, 19,\r
+ /* 910 */ 275, 16, 264, 237, 48, 47, 313, 204, 340, 9,\r
+ /* 920 */ 284, 87, 1, 41, 7, 345, 115, 178, 94, 458,\r
+ /* 930 */ 205, 127, 202, 254, 129, 329, 84, 124, 285, 6,\r
+ /* 940 */ 192, 215, 89, 237, 44, 205, 237, 202, 138, 12,\r
+ /* 950 */ 91, 92, 124, 144, 301, 192, 197, 114, 28, 160,\r
+ /* 960 */ 301, 48, 47, 313, 204, 340, 301, 301, 87, 1,\r
+ /* 970 */ 301, 7, 315, 115, 174, 301, 337, 205, 219, 202,\r
+ /* 980 */ 301, 105, 301, 84, 124, 301, 301, 192, 215, 332,\r
+ /* 990 */ 301, 44, 301, 358, 351, 301, 314, 301, 326, 18,\r
+ /* 1000 */ 322, 301, 301, 301, 301, 16, 301, 301, 48, 47,\r
+ /* 1010 */ 313, 204, 340, 301, 301, 87, 1, 301, 7, 315,\r
+ /* 1020 */ 107, 172, 301, 276, 205, 219, 202, 301, 105, 301,\r
+ /* 1030 */ 84, 124, 301, 301, 192, 180, 274, 301, 44, 301,\r
+ /* 1040 */ 358, 351, 301, 314, 301, 301, 301, 301, 301, 301,\r
+ /* 1050 */ 301, 301, 16, 301, 301, 48, 47, 313, 204, 340,\r
+ /* 1060 */ 301, 301, 87, 1, 301, 7, 315, 107, 178, 301,\r
+ /* 1070 */ 257, 205, 219, 202, 301, 105, 301, 84, 124, 301,\r
+ /* 1080 */ 301, 192, 215, 301, 301, 44, 301, 358, 351, 301,\r
+ /* 1090 */ 314, 301, 301, 301, 301, 301, 301, 301, 301, 16,\r
+ /* 1100 */ 301, 301, 48, 47, 313, 204, 340, 301, 301, 87,\r
+ /* 1110 */ 1, 301, 7, 315, 108, 178, 301, 231, 205, 219,\r
+ /* 1120 */ 202, 301, 105, 301, 84, 124, 301, 301, 192, 215,\r
+ /* 1130 */ 301, 301, 44, 301, 358, 351, 301, 314, 301, 301,\r
+ /* 1140 */ 301, 301, 301, 301, 301, 301, 16, 301, 301, 48,\r
+ /* 1150 */ 47, 313, 204, 340, 301, 301, 87, 1, 301, 7,\r
+ /* 1160 */ 315, 115, 171, 301, 286, 205, 219, 202, 301, 105,\r
+ /* 1170 */ 301, 84, 124, 301, 301, 192, 215, 301, 301, 44,\r
+ /* 1180 */ 301, 358, 351, 301, 314, 301, 301, 301, 301, 301,\r
+ /* 1190 */ 301, 301, 301, 28, 301, 301, 48, 47, 313, 204,\r
+ /* 1200 */ 340, 301, 301, 87, 1, 301, 7, 315, 107, 178,\r
+ /* 1210 */ 301, 300, 205, 219, 202, 301, 105, 301, 84, 124,\r
+ /* 1220 */ 301, 301, 192, 215, 301, 301, 44, 301, 358, 351,\r
+ /* 1230 */ 315, 314, 301, 301, 287, 301, 219, 301, 301, 105,\r
+ /* 1240 */ 16, 301, 301, 48, 47, 313, 204, 340, 301, 301,\r
+ /* 1250 */ 87, 358, 351, 7, 314, 107, 176, 301, 301, 205,\r
+ /* 1260 */ 301, 202, 301, 133, 301, 84, 124, 301, 165, 192,\r
+ /* 1270 */ 215, 301, 301, 44, 301, 301, 284, 24, 23, 315,\r
+ /* 1280 */ 301, 301, 301, 177, 301, 219, 82, 16, 105, 301,\r
+ /* 1290 */ 48, 47, 313, 204, 340, 301, 318, 87, 315, 301,\r
+ /* 1300 */ 358, 351, 177, 314, 219, 82, 301, 105, 301, 301,\r
+ /* 1310 */ 301, 301, 84, 335, 301, 318, 301, 301, 301, 358,\r
+ /* 1320 */ 351, 301, 314, 301, 301, 301, 301, 301, 301, 315,\r
+ /* 1330 */ 301, 184, 334, 100, 301, 101, 51, 121, 99, 301,\r
+ /* 1340 */ 301, 301, 301, 301, 301, 301, 318, 301, 315, 301,\r
+ /* 1350 */ 358, 351, 181, 314, 219, 49, 118, 105, 301, 301,\r
+ /* 1360 */ 301, 301, 301, 301, 301, 318, 301, 315, 301, 358,\r
+ /* 1370 */ 351, 173, 314, 219, 71, 242, 105, 301, 301, 301,\r
+ /* 1380 */ 301, 301, 301, 301, 318, 301, 315, 301, 358, 351,\r
+ /* 1390 */ 222, 314, 219, 59, 301, 105, 301, 301, 301, 301,\r
+ /* 1400 */ 301, 301, 301, 318, 301, 301, 301, 358, 351, 301,\r
+ /* 1410 */ 314, 301, 315, 301, 301, 301, 222, 193, 219, 56,\r
+ /* 1420 */ 301, 105, 301, 301, 218, 301, 301, 301, 301, 318,\r
+ /* 1430 */ 301, 315, 301, 358, 351, 222, 314, 219, 59, 301,\r
+ /* 1440 */ 105, 301, 301, 301, 301, 301, 301, 301, 318, 301,\r
+ /* 1450 */ 315, 301, 358, 351, 222, 314, 219, 59, 301, 105,\r
+ /* 1460 */ 301, 301, 210, 301, 301, 301, 301, 318, 301, 315,\r
+ /* 1470 */ 301, 358, 351, 222, 314, 219, 77, 301, 105, 301,\r
+ /* 1480 */ 301, 359, 301, 301, 301, 301, 318, 301, 301, 301,\r
+ /* 1490 */ 358, 351, 145, 314, 301, 315, 301, 165, 301, 222,\r
+ /* 1500 */ 301, 219, 81, 301, 105, 284, 24, 23, 301, 301,\r
+ /* 1510 */ 301, 301, 318, 301, 315, 301, 358, 351, 222, 314,\r
+ /* 1520 */ 219, 62, 301, 105, 301, 301, 301, 301, 301, 301,\r
+ /* 1530 */ 301, 318, 301, 315, 301, 358, 351, 222, 314, 219,\r
+ /* 1540 */ 54, 301, 105, 301, 301, 301, 301, 301, 301, 301,\r
+ /* 1550 */ 318, 301, 315, 301, 358, 351, 222, 314, 219, 79,\r
+ /* 1560 */ 301, 105, 301, 301, 301, 301, 301, 301, 301, 318,\r
+ /* 1570 */ 301, 301, 301, 358, 351, 135, 314, 301, 315, 301,\r
+ /* 1580 */ 165, 301, 222, 301, 219, 60, 301, 105, 284, 24,\r
+ /* 1590 */ 23, 301, 301, 301, 301, 318, 301, 315, 301, 358,\r
+ /* 1600 */ 351, 222, 314, 219, 65, 301, 105, 301, 301, 301,\r
+ /* 1610 */ 301, 301, 301, 301, 318, 301, 315, 301, 358, 351,\r
+ /* 1620 */ 222, 314, 219, 55, 301, 105, 301, 301, 301, 301,\r
+ /* 1630 */ 301, 301, 301, 318, 301, 315, 301, 358, 351, 222,\r
+ /* 1640 */ 314, 219, 58, 301, 105, 301, 301, 301, 301, 301,\r
+ /* 1650 */ 301, 301, 318, 301, 301, 301, 358, 351, 151, 314,\r
+ /* 1660 */ 301, 315, 301, 165, 301, 222, 301, 219, 75, 301,\r
+ /* 1670 */ 105, 284, 24, 23, 301, 301, 301, 301, 318, 301,\r
+ /* 1680 */ 315, 301, 358, 351, 222, 314, 219, 63, 301, 105,\r
+ /* 1690 */ 301, 301, 301, 301, 301, 301, 301, 318, 301, 315,\r
+ /* 1700 */ 301, 358, 351, 222, 314, 219, 72, 301, 105, 301,\r
+ /* 1710 */ 301, 301, 301, 301, 301, 301, 318, 301, 315, 301,\r
+ /* 1720 */ 358, 351, 222, 314, 219, 69, 301, 105, 301, 301,\r
+ /* 1730 */ 301, 301, 301, 301, 301, 318, 301, 301, 301, 358,\r
+ /* 1740 */ 351, 301, 314, 301, 315, 301, 301, 301, 222, 301,\r
+ /* 1750 */ 185, 61, 301, 105, 301, 301, 301, 301, 301, 301,\r
+ /* 1760 */ 301, 318, 301, 315, 301, 358, 351, 222, 314, 219,\r
+ /* 1770 */ 67, 301, 105, 301, 301, 301, 301, 301, 301, 301,\r
+ /* 1780 */ 318, 301, 315, 301, 358, 351, 222, 314, 219, 74,\r
+ /* 1790 */ 301, 105, 301, 301, 301, 301, 301, 301, 301, 318,\r
+ /* 1800 */ 301, 315, 301, 358, 351, 222, 314, 219, 80, 301,\r
+ /* 1810 */ 105, 301, 301, 301, 301, 301, 301, 301, 318, 301,\r
+ /* 1820 */ 301, 301, 358, 351, 301, 314, 301, 315, 301, 301,\r
+ /* 1830 */ 301, 222, 301, 219, 66, 301, 105, 301, 301, 301,\r
+ /* 1840 */ 301, 301, 301, 301, 318, 301, 315, 301, 358, 351,\r
+ /* 1850 */ 222, 314, 219, 70, 301, 105, 301, 301, 301, 301,\r
+ /* 1860 */ 301, 301, 301, 318, 301, 315, 301, 358, 351, 222,\r
+ /* 1870 */ 314, 219, 76, 301, 105, 301, 301, 301, 301, 301,\r
+ /* 1880 */ 301, 301, 318, 301, 315, 301, 358, 351, 222, 314,\r
+ /* 1890 */ 219, 64, 301, 105, 301, 301, 301, 301, 301, 301,\r
+ /* 1900 */ 301, 318, 301, 301, 301, 358, 351, 301, 314, 301,\r
+ /* 1910 */ 315, 301, 301, 301, 222, 301, 219, 57, 301, 105,\r
+ /* 1920 */ 301, 301, 301, 301, 301, 301, 301, 318, 301, 315,\r
+ /* 1930 */ 301, 358, 351, 222, 314, 219, 50, 301, 105, 301,\r
+ /* 1940 */ 301, 301, 301, 301, 301, 301, 318, 301, 315, 301,\r
+ /* 1950 */ 358, 351, 222, 314, 219, 78, 301, 105, 301, 301,\r
+ /* 1960 */ 301, 301, 301, 301, 301, 318, 301, 315, 301, 358,\r
+ /* 1970 */ 351, 222, 314, 219, 68, 301, 105, 301, 301, 301,\r
+ /* 1980 */ 301, 301, 301, 301, 318, 301, 301, 301, 358, 351,\r
+ /* 1990 */ 301, 314, 301, 315, 301, 301, 301, 222, 301, 219,\r
+ /* 2000 */ 73, 301, 105, 301, 301, 301, 301, 301, 301, 301,\r
+ /* 2010 */ 318, 301, 315, 301, 358, 351, 272, 314, 219, 301,\r
+ /* 2020 */ 301, 105, 301, 301, 301, 301, 301, 301, 301, 301,\r
+ /* 2030 */ 301, 301, 301, 358, 351, 301, 314,\r
);\r
static public $yy_lookahead = array(\r
- /* 0 */ 1, 77, 30, 12, 13, 81, 15, 83, 84, 85,\r
- /* 10 */ 86, 104, 13, 106, 107, 4, 5, 6, 94, 20,\r
- /* 20 */ 9, 10, 11, 99, 100, 83, 102, 27, 86, 57,\r
+ /* 0 */ 1, 77, 78, 79, 3, 4, 5, 6, 7, 8,\r
+ /* 10 */ 9, 2, 13, 12, 12, 52, 46, 13, 19, 18,\r
+ /* 20 */ 57, 20, 52, 19, 54, 16, 25, 14, 58, 28,\r
/* 30 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,\r
- /* 40 */ 41, 42, 43, 44, 102, 45, 3, 4, 5, 6,\r
- /* 50 */ 7, 8, 9, 106, 107, 12, 27, 58, 59, 60,\r
- /* 60 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 1,\r
- /* 70 */ 77, 28, 1, 20, 81, 46, 83, 84, 85, 86,\r
- /* 80 */ 82, 13, 53, 16, 13, 87, 16, 94, 20, 18,\r
- /* 90 */ 13, 20, 99, 100, 96, 102, 26, 20, 15, 31,\r
- /* 100 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,\r
- /* 110 */ 42, 43, 44, 76, 77, 78, 46, 46, 74, 75,\r
- /* 120 */ 76, 77, 78, 53, 53, 12, 58, 59, 60, 61,\r
- /* 130 */ 62, 63, 64, 65, 66, 67, 68, 69, 1, 82,\r
- /* 140 */ 15, 77, 17, 47, 19, 81, 21, 83, 84, 85,\r
- /* 150 */ 86, 12, 92, 96, 15, 16, 51, 20, 94, 46,\r
- /* 160 */ 13, 56, 25, 99, 100, 105, 102, 20, 31, 32,\r
- /* 170 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,\r
- /* 180 */ 43, 44, 1, 13, 12, 77, 14, 15, 15, 81,\r
- /* 190 */ 20, 83, 45, 54, 86, 58, 59, 60, 61, 62,\r
- /* 200 */ 63, 64, 65, 66, 67, 68, 69, 99, 100, 78,\r
- /* 210 */ 102, 80, 31, 32, 33, 34, 35, 36, 37, 38,\r
- /* 220 */ 39, 40, 41, 42, 43, 44, 12, 55, 12, 15,\r
- /* 230 */ 16, 15, 23, 8, 47, 14, 15, 12, 57, 58,\r
- /* 240 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68,\r
- /* 250 */ 69, 1, 77, 28, 1, 93, 81, 46, 83, 84,\r
- /* 260 */ 85, 86, 51, 13, 53, 13, 13, 105, 57, 94,\r
- /* 270 */ 54, 18, 20, 20, 99, 100, 55, 102, 14, 15,\r
- /* 280 */ 71, 31, 32, 33, 34, 35, 36, 37, 38, 39,\r
- /* 290 */ 40, 41, 42, 43, 44, 70, 71, 72, 46, 13,\r
- /* 300 */ 16, 12, 18, 18, 15, 53, 20, 15, 58, 59,\r
- /* 310 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,\r
- /* 320 */ 1, 77, 48, 83, 13, 81, 86, 83, 84, 85,\r
- /* 330 */ 86, 20, 12, 13, 23, 15, 51, 53, 94, 20,\r
- /* 340 */ 46, 56, 102, 99, 100, 13, 102, 27, 108, 1,\r
- /* 350 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,\r
- /* 360 */ 41, 42, 43, 44, 1, 13, 12, 77, 20, 15,\r
- /* 370 */ 15, 81, 20, 83, 16, 23, 86, 58, 59, 60,\r
- /* 380 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 99,\r
- /* 390 */ 100, 103, 102, 105, 31, 32, 33, 34, 35, 36,\r
- /* 400 */ 37, 38, 39, 40, 41, 42, 43, 44, 1, 51,\r
- /* 410 */ 47, 12, 12, 13, 15, 15, 12, 2, 14, 15,\r
- /* 420 */ 13, 58, 59, 60, 61, 62, 63, 64, 65, 66,\r
- /* 430 */ 67, 68, 69, 29, 15, 20, 106, 107, 31, 32,\r
- /* 440 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,\r
- /* 450 */ 43, 44, 1, 54, 12, 77, 13, 15, 88, 81,\r
- /* 460 */ 88, 83, 77, 20, 86, 58, 59, 60, 61, 62,\r
- /* 470 */ 63, 64, 65, 66, 67, 68, 69, 99, 100, 103,\r
- /* 480 */ 102, 2, 31, 32, 33, 34, 35, 36, 37, 38,\r
- /* 490 */ 39, 40, 41, 42, 43, 44, 1, 13, 113, 114,\r
- /* 500 */ 106, 107, 89, 90, 20, 45, 15, 82, 13, 58,\r
- /* 510 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68,\r
- /* 520 */ 69, 96, 71, 14, 51, 29, 31, 32, 33, 34,\r
- /* 530 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,\r
- /* 540 */ 1, 13, 22, 77, 13, 54, 13, 81, 20, 83,\r
- /* 550 */ 30, 20, 86, 58, 59, 60, 61, 62, 63, 64,\r
- /* 560 */ 65, 66, 67, 68, 69, 99, 100, 55, 102, 26,\r
- /* 570 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,\r
- /* 580 */ 41, 42, 43, 44, 1, 2, 47, 77, 13, 15,\r
- /* 590 */ 14, 81, 14, 83, 26, 20, 86, 58, 59, 60,\r
- /* 600 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 99,\r
- /* 610 */ 100, 88, 102, 13, 31, 32, 33, 34, 35, 36,\r
- /* 620 */ 37, 38, 39, 40, 41, 42, 43, 44, 1, 13,\r
- /* 630 */ 46, 13, 55, 23, 15, 47, 20, 53, 20, 15,\r
- /* 640 */ 13, 58, 59, 60, 61, 62, 63, 64, 65, 66,\r
- /* 650 */ 67, 68, 69, 29, 14, 13, 15, 20, 31, 32,\r
- /* 660 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,\r
- /* 670 */ 43, 44, 1, 13, 57, 77, 13, 16, 20, 81,\r
- /* 680 */ 20, 83, 18, 20, 86, 58, 59, 60, 61, 62,\r
- /* 690 */ 63, 64, 65, 66, 67, 68, 69, 99, 100, 24,\r
- /* 700 */ 102, 30, 31, 32, 33, 34, 35, 36, 37, 38,\r
- /* 710 */ 39, 40, 41, 42, 43, 44, 12, 53, 13, 15,\r
- /* 720 */ 16, 13, 15, 77, 8, 20, 14, 23, 12, 58,\r
- /* 730 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68,\r
- /* 740 */ 69, 1, 77, 96, 28, 10, 81, 2, 83, 84,\r
- /* 750 */ 45, 86, 82, 45, 89, 12, 13, 87, 15, 94,\r
- /* 760 */ 114, 16, 22, 104, 99, 100, 96, 102, 79, 103,\r
- /* 770 */ 27, 31, 32, 33, 34, 35, 36, 37, 38, 39,\r
- /* 780 */ 40, 41, 42, 43, 44, 1, 70, 71, 72, 13,\r
- /* 790 */ 103, 95, 46, 105, 20, 18, 20, 13, 58, 59,\r
- /* 800 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,\r
- /* 810 */ 14, 91, 103, 107, 20, 31, 32, 33, 34, 35,\r
- /* 820 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 1,\r
- /* 830 */ 13, 13, 13, 91, 103, 88, 110, 20, 20, 20,\r
- /* 840 */ 82, 13, 58, 59, 60, 61, 62, 63, 64, 65,\r
- /* 850 */ 66, 67, 68, 69, 96, 2, 89, 115, 115, 31,\r
- /* 860 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,\r
- /* 870 */ 42, 43, 44, 1, 101, 115, 77, 115, 115, 115,\r
- /* 880 */ 81, 108, 83, 115, 115, 86, 58, 59, 60, 61,\r
- /* 890 */ 62, 63, 64, 65, 66, 67, 68, 69, 99, 100,\r
- /* 900 */ 115, 102, 115, 31, 32, 33, 34, 35, 36, 37,\r
- /* 910 */ 38, 39, 40, 41, 42, 43, 44, 87, 115, 115,\r
- /* 920 */ 115, 115, 115, 115, 115, 115, 115, 97, 98, 115,\r
- /* 930 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67,\r
- /* 940 */ 68, 69, 82, 12, 115, 14, 15, 87, 17, 115,\r
- /* 950 */ 19, 12, 21, 14, 15, 115, 96, 97, 98, 28,\r
- /* 960 */ 29, 92, 92, 32, 115, 82, 115, 28, 29, 92,\r
- /* 970 */ 87, 32, 115, 115, 105, 105, 115, 46, 115, 96,\r
- /* 980 */ 49, 50, 105, 52, 115, 46, 55, 56, 49, 50,\r
- /* 990 */ 12, 52, 14, 15, 55, 56, 57, 82, 82, 115,\r
- /* 1000 */ 115, 70, 12, 87, 14, 15, 28, 29, 115, 70,\r
- /* 1010 */ 32, 96, 96, 97, 98, 82, 115, 82, 28, 29,\r
- /* 1020 */ 115, 115, 32, 115, 46, 110, 115, 49, 50, 96,\r
- /* 1030 */ 52, 96, 115, 55, 56, 12, 46, 14, 15, 49,\r
- /* 1040 */ 50, 92, 52, 110, 92, 55, 56, 12, 70, 14,\r
- /* 1050 */ 15, 28, 29, 92, 105, 32, 115, 105, 92, 115,\r
- /* 1060 */ 70, 115, 115, 28, 29, 115, 105, 32, 115, 46,\r
- /* 1070 */ 115, 105, 49, 50, 82, 52, 92, 115, 55, 56,\r
- /* 1080 */ 12, 46, 14, 15, 49, 50, 115, 52, 96, 105,\r
- /* 1090 */ 55, 56, 12, 70, 14, 15, 28, 29, 115, 115,\r
- /* 1100 */ 32, 82, 110, 115, 115, 70, 115, 82, 28, 29,\r
- /* 1110 */ 115, 115, 32, 115, 46, 96, 115, 49, 50, 115,\r
- /* 1120 */ 52, 96, 115, 55, 56, 12, 46, 14, 15, 49,\r
- /* 1130 */ 50, 115, 52, 115, 115, 55, 56, 12, 70, 14,\r
- /* 1140 */ 15, 28, 29, 115, 115, 32, 115, 115, 115, 115,\r
- /* 1150 */ 70, 115, 115, 28, 29, 115, 115, 32, 115, 46,\r
- /* 1160 */ 115, 115, 49, 50, 115, 52, 115, 115, 55, 56,\r
- /* 1170 */ 12, 46, 14, 15, 49, 50, 115, 52, 115, 115,\r
- /* 1180 */ 55, 115, 115, 70, 115, 115, 28, 29, 115, 115,\r
- /* 1190 */ 32, 115, 77, 115, 115, 70, 81, 115, 83, 84,\r
- /* 1200 */ 115, 86, 115, 115, 46, 115, 115, 49, 50, 94,\r
- /* 1210 */ 52, 115, 115, 55, 99, 100, 77, 102, 115, 115,\r
- /* 1220 */ 81, 115, 83, 84, 115, 86, 111, 112, 70, 115,\r
- /* 1230 */ 115, 115, 115, 94, 115, 115, 115, 115, 99, 100,\r
- /* 1240 */ 77, 102, 115, 115, 81, 115, 83, 84, 109, 86,\r
- /* 1250 */ 115, 115, 77, 115, 115, 115, 81, 94, 83, 84,\r
- /* 1260 */ 115, 86, 99, 100, 77, 102, 115, 115, 81, 94,\r
- /* 1270 */ 83, 84, 109, 86, 99, 100, 115, 102, 115, 115,\r
- /* 1280 */ 115, 94, 115, 115, 109, 115, 99, 100, 77, 102,\r
- /* 1290 */ 115, 115, 81, 115, 83, 84, 115, 86, 115, 112,\r
- /* 1300 */ 77, 115, 115, 115, 81, 94, 83, 84, 115, 86,\r
- /* 1310 */ 99, 100, 115, 102, 115, 115, 115, 94, 115, 115,\r
- /* 1320 */ 109, 115, 99, 100, 77, 102, 115, 115, 81, 115,\r
- /* 1330 */ 83, 84, 115, 86, 115, 115, 77, 115, 115, 115,\r
- /* 1340 */ 81, 94, 83, 84, 115, 86, 99, 100, 77, 102,\r
- /* 1350 */ 115, 115, 81, 94, 83, 84, 115, 86, 99, 100,\r
- /* 1360 */ 115, 102, 115, 115, 115, 94, 115, 115, 115, 115,\r
- /* 1370 */ 99, 100, 77, 102, 115, 115, 81, 115, 83, 84,\r
- /* 1380 */ 115, 86, 115, 115, 77, 115, 115, 115, 81, 94,\r
- /* 1390 */ 83, 84, 115, 86, 99, 100, 115, 102, 115, 115,\r
- /* 1400 */ 115, 94, 115, 115, 115, 115, 99, 100, 77, 102,\r
- /* 1410 */ 115, 115, 81, 115, 83, 84, 115, 86, 115, 115,\r
- /* 1420 */ 77, 115, 115, 115, 81, 94, 83, 84, 115, 86,\r
- /* 1430 */ 99, 100, 77, 102, 115, 115, 81, 94, 83, 84,\r
- /* 1440 */ 115, 86, 99, 100, 115, 102, 115, 115, 115, 94,\r
- /* 1450 */ 115, 115, 115, 115, 99, 100, 77, 102, 115, 115,\r
- /* 1460 */ 81, 115, 83, 84, 115, 86, 115, 115, 77, 115,\r
- /* 1470 */ 115, 115, 81, 94, 83, 84, 115, 86, 99, 100,\r
- /* 1480 */ 115, 102, 115, 115, 115, 94, 115, 115, 115, 115,\r
- /* 1490 */ 99, 100, 77, 102, 115, 115, 81, 115, 83, 84,\r
- /* 1500 */ 115, 86, 115, 115, 77, 115, 115, 115, 81, 94,\r
- /* 1510 */ 83, 84, 115, 86, 99, 100, 77, 102, 115, 115,\r
- /* 1520 */ 81, 94, 83, 84, 115, 86, 99, 100, 115, 102,\r
- /* 1530 */ 115, 115, 115, 94, 115, 115, 115, 115, 99, 100,\r
- /* 1540 */ 77, 102, 115, 115, 81, 115, 83, 84, 115, 86,\r
- /* 1550 */ 115, 115, 77, 115, 115, 115, 81, 94, 83, 84,\r
- /* 1560 */ 115, 86, 99, 100, 115, 102, 115, 115, 115, 94,\r
- /* 1570 */ 115, 115, 115, 115, 99, 100, 77, 102, 115, 115,\r
- /* 1580 */ 81, 115, 83, 84, 115, 86, 115, 115, 77, 115,\r
- /* 1590 */ 115, 115, 81, 94, 83, 84, 115, 86, 99, 100,\r
- /* 1600 */ 77, 102, 115, 115, 81, 94, 83, 84, 115, 86,\r
- /* 1610 */ 99, 100, 115, 102, 115, 115, 115, 94, 115, 115,\r
- /* 1620 */ 115, 115, 99, 100, 77, 102, 115, 115, 81, 115,\r
- /* 1630 */ 83, 84, 115, 86, 115, 115, 77, 115, 115, 115,\r
- /* 1640 */ 81, 94, 83, 84, 115, 86, 99, 100, 115, 102,\r
- /* 1650 */ 115, 115, 115, 94, 115, 115, 115, 115, 99, 100,\r
- /* 1660 */ 77, 102, 115, 115, 81, 115, 83, 84, 115, 86,\r
- /* 1670 */ 115, 115, 77, 115, 115, 115, 81, 94, 83, 84,\r
- /* 1680 */ 115, 86, 99, 100, 77, 102, 115, 115, 81, 94,\r
- /* 1690 */ 83, 84, 115, 86, 99, 100, 115, 102, 115, 115,\r
- /* 1700 */ 115, 94, 115, 115, 115, 115, 99, 100, 77, 102,\r
- /* 1710 */ 115, 115, 81, 115, 83, 84, 115, 86, 115, 115,\r
- /* 1720 */ 77, 115, 115, 115, 81, 94, 83, 84, 115, 86,\r
- /* 1730 */ 99, 100, 115, 102, 115, 115, 115, 94, 115, 115,\r
- /* 1740 */ 115, 82, 99, 100, 77, 102, 87, 115, 81, 115,\r
- /* 1750 */ 83, 115, 115, 86, 77, 96, 97, 98, 81, 115,\r
- /* 1760 */ 83, 94, 115, 86, 115, 115, 99, 100, 115, 102,\r
- /* 1770 */ 115, 94, 115, 115, 115, 115, 99, 100, 115, 102,\r
- /* 1780 */ 82, 115, 115, 115, 77, 87, 115, 115, 81, 115,\r
- /* 1790 */ 83, 115, 115, 86, 96, 97, 98, 115, 115, 115,\r
- /* 1800 */ 115, 94, 115, 115, 115, 115, 99, 100, 115, 102,\r
+ /* 40 */ 41, 42, 43, 44, 4, 5, 6, 16, 46, 9,\r
+ /* 50 */ 10, 11, 75, 76, 77, 78, 79, 103, 59, 60,\r
+ /* 60 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,\r
+ /* 70 */ 1, 78, 13, 1, 83, 82, 14, 84, 19, 88,\r
+ /* 80 */ 87, 83, 13, 52, 1, 13, 88, 96, 19, 17,\r
+ /* 90 */ 17, 19, 99, 100, 96, 102, 13, 90, 91, 14,\r
+ /* 100 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,\r
+ /* 110 */ 41, 42, 43, 44, 31, 32, 33, 34, 35, 36,\r
+ /* 120 */ 37, 38, 39, 40, 41, 42, 43, 44, 59, 60,\r
+ /* 130 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,\r
+ /* 140 */ 1, 30, 59, 60, 61, 62, 63, 64, 65, 66,\r
+ /* 150 */ 67, 68, 69, 70, 1, 2, 12, 15, 19, 15,\r
+ /* 160 */ 16, 12, 13, 24, 15, 104, 22, 106, 107, 58,\r
+ /* 170 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,\r
+ /* 180 */ 41, 42, 43, 44, 31, 32, 33, 34, 35, 36,\r
+ /* 190 */ 37, 38, 39, 40, 41, 42, 43, 44, 59, 60,\r
+ /* 200 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,\r
+ /* 210 */ 1, 15, 59, 60, 61, 62, 63, 64, 65, 66,\r
+ /* 220 */ 67, 68, 69, 70, 1, 29, 12, 13, 19, 15,\r
+ /* 230 */ 12, 106, 107, 15, 16, 103, 13, 105, 14, 15,\r
+ /* 240 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,\r
+ /* 250 */ 41, 42, 43, 44, 31, 32, 33, 34, 35, 36,\r
+ /* 260 */ 37, 38, 39, 40, 41, 42, 43, 44, 59, 60,\r
+ /* 270 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,\r
+ /* 280 */ 56, 15, 59, 60, 61, 62, 63, 64, 65, 66,\r
+ /* 290 */ 67, 68, 69, 70, 1, 78, 103, 84, 105, 82,\r
+ /* 300 */ 87, 84, 85, 86, 87, 13, 13, 12, 1, 14,\r
+ /* 310 */ 15, 19, 95, 88, 22, 102, 99, 100, 79, 102,\r
+ /* 320 */ 81, 55, 97, 98, 31, 32, 33, 34, 35, 36,\r
+ /* 330 */ 37, 38, 39, 40, 41, 42, 43, 44, 31, 32,\r
+ /* 340 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,\r
+ /* 350 */ 43, 44, 59, 60, 61, 62, 63, 64, 65, 66,\r
+ /* 360 */ 67, 68, 69, 70, 1, 58, 59, 60, 61, 62,\r
+ /* 370 */ 63, 64, 65, 66, 67, 68, 69, 70, 1, 13,\r
+ /* 380 */ 13, 13, 94, 13, 21, 19, 19, 19, 22, 19,\r
+ /* 390 */ 13, 106, 107, 105, 31, 32, 33, 34, 35, 36,\r
+ /* 400 */ 37, 38, 39, 40, 41, 42, 43, 44, 31, 32,\r
+ /* 410 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,\r
+ /* 420 */ 43, 44, 59, 60, 61, 62, 63, 64, 65, 66,\r
+ /* 430 */ 67, 68, 69, 70, 16, 17, 59, 60, 61, 62,\r
+ /* 440 */ 63, 64, 65, 66, 67, 68, 69, 70, 1, 78,\r
+ /* 450 */ 21, 1, 15, 82, 15, 84, 85, 86, 87, 30,\r
+ /* 460 */ 13, 12, 13, 13, 15, 17, 95, 17, 22, 19,\r
+ /* 470 */ 99, 100, 54, 102, 12, 47, 27, 15, 31, 32,\r
+ /* 480 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,\r
+ /* 490 */ 43, 44, 1, 26, 12, 14, 46, 15, 16, 12,\r
+ /* 500 */ 52, 27, 15, 78, 54, 57, 59, 60, 61, 62,\r
+ /* 510 */ 63, 64, 65, 66, 67, 68, 69, 70, 72, 45,\r
+ /* 520 */ 14, 15, 31, 32, 33, 34, 35, 36, 37, 38,\r
+ /* 530 */ 39, 40, 41, 42, 43, 44, 1, 55, 47, 114,\r
+ /* 540 */ 12, 12, 55, 15, 15, 12, 1, 14, 15, 78,\r
+ /* 550 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68,\r
+ /* 560 */ 69, 70, 29, 27, 19, 15, 31, 32, 33, 34,\r
+ /* 570 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,\r
+ /* 580 */ 1, 13, 46, 55, 113, 114, 12, 19, 12, 15,\r
+ /* 590 */ 54, 15, 13, 83, 59, 60, 61, 62, 63, 64,\r
+ /* 600 */ 65, 66, 67, 68, 69, 70, 96, 72, 105, 15,\r
+ /* 610 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,\r
+ /* 620 */ 41, 42, 43, 44, 1, 13, 13, 46, 13, 108,\r
+ /* 630 */ 13, 19, 19, 19, 19, 54, 19, 83, 59, 60,\r
+ /* 640 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,\r
+ /* 650 */ 96, 14, 19, 30, 31, 32, 33, 34, 35, 36,\r
+ /* 660 */ 37, 38, 39, 40, 41, 42, 43, 44, 1, 13,\r
+ /* 670 */ 13, 13, 13, 13, 13, 19, 19, 19, 19, 19,\r
+ /* 680 */ 19, 13, 59, 60, 61, 62, 63, 64, 65, 66,\r
+ /* 690 */ 67, 68, 69, 70, 45, 29, 14, 47, 31, 32,\r
+ /* 700 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,\r
+ /* 710 */ 43, 44, 1, 45, 47, 15, 13, 101, 47, 17,\r
+ /* 720 */ 22, 46, 2, 16, 108, 83, 59, 60, 61, 62,\r
+ /* 730 */ 63, 64, 65, 66, 67, 68, 69, 70, 96, 19,\r
+ /* 740 */ 52, 2, 31, 32, 33, 34, 35, 36, 37, 38,\r
+ /* 750 */ 39, 40, 41, 42, 43, 44, 54, 13, 46, 13,\r
+ /* 760 */ 15, 13, 48, 19, 15, 23, 13, 19, 96, 83,\r
+ /* 770 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68,\r
+ /* 780 */ 69, 70, 96, 12, 58, 14, 15, 56, 78, 18,\r
+ /* 790 */ 46, 20, 82, 45, 84, 85, 25, 87, 54, 28,\r
+ /* 800 */ 29, 12, 13, 32, 15, 95, 93, 101, 16, 99,\r
+ /* 810 */ 100, 29, 102, 83, 108, 19, 27, 46, 105, 109,\r
+ /* 820 */ 49, 50, 51, 52, 53, 93, 96, 56, 57, 58,\r
+ /* 830 */ 12, 56, 14, 15, 19, 83, 18, 105, 20, 83,\r
+ /* 840 */ 110, 8, 71, 25, 93, 12, 28, 29, 96, 13,\r
+ /* 850 */ 32, 18, 96, 20, 15, 19, 105, 26, 25, 83,\r
+ /* 860 */ 83, 28, 110, 103, 46, 88, 110, 49, 50, 51,\r
+ /* 870 */ 52, 53, 96, 96, 56, 57, 93, 12, 78, 14,\r
+ /* 880 */ 15, 45, 82, 18, 84, 20, 93, 87, 105, 71,\r
+ /* 890 */ 25, 93, 107, 28, 29, 95, 93, 32, 105, 99,\r
+ /* 900 */ 100, 93, 102, 105, 71, 72, 73, 83, 105, 92,\r
+ /* 910 */ 10, 46, 90, 105, 49, 50, 51, 52, 53, 16,\r
+ /* 920 */ 96, 56, 57, 2, 12, 104, 14, 15, 80, 26,\r
+ /* 930 */ 18, 93, 20, 19, 93, 8, 71, 25, 110, 12,\r
+ /* 940 */ 28, 29, 89, 105, 32, 18, 105, 20, 103, 46,\r
+ /* 950 */ 89, 89, 25, 103, 115, 28, 92, 54, 46, 89,\r
+ /* 960 */ 115, 49, 50, 51, 52, 53, 115, 115, 56, 57,\r
+ /* 970 */ 115, 12, 78, 14, 15, 115, 82, 18, 84, 20,\r
+ /* 980 */ 115, 87, 115, 71, 25, 115, 115, 28, 29, 95,\r
+ /* 990 */ 115, 32, 115, 99, 100, 115, 102, 115, 71, 72,\r
+ /* 1000 */ 73, 115, 115, 115, 115, 46, 115, 115, 49, 50,\r
+ /* 1010 */ 51, 52, 53, 115, 115, 56, 57, 115, 12, 78,\r
+ /* 1020 */ 14, 15, 115, 82, 18, 84, 20, 115, 87, 115,\r
+ /* 1030 */ 71, 25, 115, 115, 28, 29, 95, 115, 32, 115,\r
+ /* 1040 */ 99, 100, 115, 102, 115, 115, 115, 115, 115, 115,\r
+ /* 1050 */ 115, 115, 46, 115, 115, 49, 50, 51, 52, 53,\r
+ /* 1060 */ 115, 115, 56, 57, 115, 12, 78, 14, 15, 115,\r
+ /* 1070 */ 82, 18, 84, 20, 115, 87, 115, 71, 25, 115,\r
+ /* 1080 */ 115, 28, 29, 115, 115, 32, 115, 99, 100, 115,\r
+ /* 1090 */ 102, 115, 115, 115, 115, 115, 115, 115, 115, 46,\r
+ /* 1100 */ 115, 115, 49, 50, 51, 52, 53, 115, 115, 56,\r
+ /* 1110 */ 57, 115, 12, 78, 14, 15, 115, 82, 18, 84,\r
+ /* 1120 */ 20, 115, 87, 115, 71, 25, 115, 115, 28, 29,\r
+ /* 1130 */ 115, 115, 32, 115, 99, 100, 115, 102, 115, 115,\r
+ /* 1140 */ 115, 115, 115, 115, 115, 115, 46, 115, 115, 49,\r
+ /* 1150 */ 50, 51, 52, 53, 115, 115, 56, 57, 115, 12,\r
+ /* 1160 */ 78, 14, 15, 115, 82, 18, 84, 20, 115, 87,\r
+ /* 1170 */ 115, 71, 25, 115, 115, 28, 29, 115, 115, 32,\r
+ /* 1180 */ 115, 99, 100, 115, 102, 115, 115, 115, 115, 115,\r
+ /* 1190 */ 115, 115, 115, 46, 115, 115, 49, 50, 51, 52,\r
+ /* 1200 */ 53, 115, 115, 56, 57, 115, 12, 78, 14, 15,\r
+ /* 1210 */ 115, 82, 18, 84, 20, 115, 87, 115, 71, 25,\r
+ /* 1220 */ 115, 115, 28, 29, 115, 115, 32, 115, 99, 100,\r
+ /* 1230 */ 78, 102, 115, 115, 82, 115, 84, 115, 115, 87,\r
+ /* 1240 */ 46, 115, 115, 49, 50, 51, 52, 53, 115, 115,\r
+ /* 1250 */ 56, 99, 100, 12, 102, 14, 15, 115, 115, 18,\r
+ /* 1260 */ 115, 20, 115, 83, 115, 71, 25, 115, 88, 28,\r
+ /* 1270 */ 29, 115, 115, 32, 115, 115, 96, 97, 98, 78,\r
+ /* 1280 */ 115, 115, 115, 82, 115, 84, 85, 46, 87, 115,\r
+ /* 1290 */ 49, 50, 51, 52, 53, 115, 95, 56, 78, 115,\r
+ /* 1300 */ 99, 100, 82, 102, 84, 85, 115, 87, 115, 115,\r
+ /* 1310 */ 115, 115, 71, 112, 115, 95, 115, 115, 115, 99,\r
+ /* 1320 */ 100, 115, 102, 115, 115, 115, 115, 115, 115, 78,\r
+ /* 1330 */ 115, 111, 112, 82, 115, 84, 85, 86, 87, 115,\r
+ /* 1340 */ 115, 115, 115, 115, 115, 115, 95, 115, 78, 115,\r
+ /* 1350 */ 99, 100, 82, 102, 84, 85, 86, 87, 115, 115,\r
+ /* 1360 */ 115, 115, 115, 115, 115, 95, 115, 78, 115, 99,\r
+ /* 1370 */ 100, 82, 102, 84, 85, 86, 87, 115, 115, 115,\r
+ /* 1380 */ 115, 115, 115, 115, 95, 115, 78, 115, 99, 100,\r
+ /* 1390 */ 82, 102, 84, 85, 115, 87, 115, 115, 115, 115,\r
+ /* 1400 */ 115, 115, 115, 95, 115, 115, 115, 99, 100, 115,\r
+ /* 1410 */ 102, 115, 78, 115, 115, 115, 82, 109, 84, 85,\r
+ /* 1420 */ 115, 87, 115, 115, 90, 115, 115, 115, 115, 95,\r
+ /* 1430 */ 115, 78, 115, 99, 100, 82, 102, 84, 85, 115,\r
+ /* 1440 */ 87, 115, 115, 115, 115, 115, 115, 115, 95, 115,\r
+ /* 1450 */ 78, 115, 99, 100, 82, 102, 84, 85, 115, 87,\r
+ /* 1460 */ 115, 115, 109, 115, 115, 115, 115, 95, 115, 78,\r
+ /* 1470 */ 115, 99, 100, 82, 102, 84, 85, 115, 87, 115,\r
+ /* 1480 */ 115, 109, 115, 115, 115, 115, 95, 115, 115, 115,\r
+ /* 1490 */ 99, 100, 83, 102, 115, 78, 115, 88, 115, 82,\r
+ /* 1500 */ 115, 84, 85, 115, 87, 96, 97, 98, 115, 115,\r
+ /* 1510 */ 115, 115, 95, 115, 78, 115, 99, 100, 82, 102,\r
+ /* 1520 */ 84, 85, 115, 87, 115, 115, 115, 115, 115, 115,\r
+ /* 1530 */ 115, 95, 115, 78, 115, 99, 100, 82, 102, 84,\r
+ /* 1540 */ 85, 115, 87, 115, 115, 115, 115, 115, 115, 115,\r
+ /* 1550 */ 95, 115, 78, 115, 99, 100, 82, 102, 84, 85,\r
+ /* 1560 */ 115, 87, 115, 115, 115, 115, 115, 115, 115, 95,\r
+ /* 1570 */ 115, 115, 115, 99, 100, 83, 102, 115, 78, 115,\r
+ /* 1580 */ 88, 115, 82, 115, 84, 85, 115, 87, 96, 97,\r
+ /* 1590 */ 98, 115, 115, 115, 115, 95, 115, 78, 115, 99,\r
+ /* 1600 */ 100, 82, 102, 84, 85, 115, 87, 115, 115, 115,\r
+ /* 1610 */ 115, 115, 115, 115, 95, 115, 78, 115, 99, 100,\r
+ /* 1620 */ 82, 102, 84, 85, 115, 87, 115, 115, 115, 115,\r
+ /* 1630 */ 115, 115, 115, 95, 115, 78, 115, 99, 100, 82,\r
+ /* 1640 */ 102, 84, 85, 115, 87, 115, 115, 115, 115, 115,\r
+ /* 1650 */ 115, 115, 95, 115, 115, 115, 99, 100, 83, 102,\r
+ /* 1660 */ 115, 78, 115, 88, 115, 82, 115, 84, 85, 115,\r
+ /* 1670 */ 87, 96, 97, 98, 115, 115, 115, 115, 95, 115,\r
+ /* 1680 */ 78, 115, 99, 100, 82, 102, 84, 85, 115, 87,\r
+ /* 1690 */ 115, 115, 115, 115, 115, 115, 115, 95, 115, 78,\r
+ /* 1700 */ 115, 99, 100, 82, 102, 84, 85, 115, 87, 115,\r
+ /* 1710 */ 115, 115, 115, 115, 115, 115, 95, 115, 78, 115,\r
+ /* 1720 */ 99, 100, 82, 102, 84, 85, 115, 87, 115, 115,\r
+ /* 1730 */ 115, 115, 115, 115, 115, 95, 115, 115, 115, 99,\r
+ /* 1740 */ 100, 115, 102, 115, 78, 115, 115, 115, 82, 115,\r
+ /* 1750 */ 84, 85, 115, 87, 115, 115, 115, 115, 115, 115,\r
+ /* 1760 */ 115, 95, 115, 78, 115, 99, 100, 82, 102, 84,\r
+ /* 1770 */ 85, 115, 87, 115, 115, 115, 115, 115, 115, 115,\r
+ /* 1780 */ 95, 115, 78, 115, 99, 100, 82, 102, 84, 85,\r
+ /* 1790 */ 115, 87, 115, 115, 115, 115, 115, 115, 115, 95,\r
+ /* 1800 */ 115, 78, 115, 99, 100, 82, 102, 84, 85, 115,\r
+ /* 1810 */ 87, 115, 115, 115, 115, 115, 115, 115, 95, 115,\r
+ /* 1820 */ 115, 115, 99, 100, 115, 102, 115, 78, 115, 115,\r
+ /* 1830 */ 115, 82, 115, 84, 85, 115, 87, 115, 115, 115,\r
+ /* 1840 */ 115, 115, 115, 115, 95, 115, 78, 115, 99, 100,\r
+ /* 1850 */ 82, 102, 84, 85, 115, 87, 115, 115, 115, 115,\r
+ /* 1860 */ 115, 115, 115, 95, 115, 78, 115, 99, 100, 82,\r
+ /* 1870 */ 102, 84, 85, 115, 87, 115, 115, 115, 115, 115,\r
+ /* 1880 */ 115, 115, 95, 115, 78, 115, 99, 100, 82, 102,\r
+ /* 1890 */ 84, 85, 115, 87, 115, 115, 115, 115, 115, 115,\r
+ /* 1900 */ 115, 95, 115, 115, 115, 99, 100, 115, 102, 115,\r
+ /* 1910 */ 78, 115, 115, 115, 82, 115, 84, 85, 115, 87,\r
+ /* 1920 */ 115, 115, 115, 115, 115, 115, 115, 95, 115, 78,\r
+ /* 1930 */ 115, 99, 100, 82, 102, 84, 85, 115, 87, 115,\r
+ /* 1940 */ 115, 115, 115, 115, 115, 115, 95, 115, 78, 115,\r
+ /* 1950 */ 99, 100, 82, 102, 84, 85, 115, 87, 115, 115,\r
+ /* 1960 */ 115, 115, 115, 115, 115, 95, 115, 78, 115, 99,\r
+ /* 1970 */ 100, 82, 102, 84, 85, 115, 87, 115, 115, 115,\r
+ /* 1980 */ 115, 115, 115, 115, 95, 115, 115, 115, 99, 100,\r
+ /* 1990 */ 115, 102, 115, 78, 115, 115, 115, 82, 115, 84,\r
+ /* 2000 */ 85, 115, 87, 115, 115, 115, 115, 115, 115, 115,\r
+ /* 2010 */ 95, 115, 78, 115, 99, 100, 82, 102, 84, 115,\r
+ /* 2020 */ 115, 87, 115, 115, 115, 115, 115, 115, 115, 115,\r
+ /* 2030 */ 115, 115, 115, 99, 100, 115, 102,\r
);\r
- const YY_SHIFT_USE_DFLT = -29;\r
- const YY_SHIFT_MAX = 223;\r
+ const YY_SHIFT_USE_DFLT = -38;\r
+ const YY_SHIFT_MAX = 224;\r
static public $yy_shift_ofst = array(\r
- /* 0 */ 43, 1068, 931, 931, 1113, 978, 990, 1068, 990, 978,\r
- /* 10 */ 978, 1080, 978, 939, 978, 978, 978, 978, 978, 978,\r
- /* 20 */ 978, 978, 978, 978, 978, 978, 978, 978, 978, 978,\r
- /* 30 */ 978, 978, 978, 978, 978, 978, 978, 978, 978, 1023,\r
- /* 40 */ 1023, 1035, 1125, 1158, 1125, 1125, 1125, 1125, 1125, -1,\r
- /* 50 */ 137, 68, 319, 319, 172, 407, 250, 181, 363, 451,\r
- /* 60 */ 828, 784, 671, 740, 627, 583, 495, 539, 872, 872,\r
- /* 70 */ 872, 872, 872, 872, 872, 872, 872, 872, 872, 872,\r
- /* 80 */ 872, 872, 872, 872, 43, 716, 71, 253, 285, 221,\r
- /* 90 */ 415, 415, 415, 348, 11, 225, 704, 139, 216, 352,\r
- /* 100 */ 705, 311, 284, 354, 664, 442, 289, 289, 289, 289,\r
- /* 110 */ 354, 289, 264, 289, 289, 289, 777, 796, 658, 658,\r
- /* 120 */ 774, 658, 777, 743, 320, 125, 399, 400, -9, 214,\r
- /* 130 */ 575, 484, 531, 113, 443, 105, 77, 170, 819, 105,\r
- /* 140 */ 286, 528, 818, 618, 105, 105, 616, 105, 660, 817,\r
- /* 150 */ 776, 663, 746, 735, 796, 853, 777, 777, 777, 794,\r
- /* 160 */ 794, 777, -29, -29, -29, -29, -29, -29, -29, 211,\r
- /* 170 */ 70, 252, 404, 29, 147, 584, 0, 584, 520, 358,\r
- /* 180 */ -28, 209, 708, 491, 624, 745, 543, 642, 640, 675,\r
- /* 190 */ 588, 574, 568, 577, 712, 512, 83, 509, 617, 610,\r
- /* 200 */ 619, 707, 355, 292, 173, 53, 96, 294, 496, 473,\r
- /* 210 */ 419, 479, 332, 67, 274, 641, 533, 460, 576, 600,\r
- /* 220 */ 578, 661, 637, 187,\r
+ /* 0 */ 1, 959, 912, 865, 959, 912, 818, 818, 865, 1147,\r
+ /* 10 */ 1100, 865, 865, 771, 865, 865, 865, 865, 865, 865,\r
+ /* 20 */ 865, 865, 865, 865, 865, 865, 865, 865, 865, 865,\r
+ /* 30 */ 865, 865, 865, 865, 865, 865, 865, 865, 865, 1006,\r
+ /* 40 */ 1053, 1053, 1194, 1194, 1194, 1194, 1241, 1194, 1194, -1,\r
+ /* 50 */ 139, 69, 209, 209, 293, 153, 83, 223, 307, 623,\r
+ /* 60 */ 667, 535, 579, 491, 447, 363, 377, 711, 711, 711,\r
+ /* 70 */ 711, 711, 711, 711, 711, 711, 711, 711, 711, 711,\r
+ /* 80 */ 711, 711, 711, 1, 927, 450, 72, 224, 448, 720,\r
+ /* 90 */ 545, 720, 720, 833, 40, 482, 144, 487, 366, 418,\r
+ /* 100 */ 836, 292, 506, 574, 462, 702, 462, 462, 529, 462,\r
+ /* 110 */ 462, 462, 576, 462, 506, 529, 462, 462, 614, 614,\r
+ /* 120 */ 73, 614, 73, 481, 633, 449, 789, 218, 295, 214,\r
+ /* 130 */ 528, 149, 568, 613, 370, 4, -37, 2, -37, 368,\r
+ /* 140 */ 367, 59, 612, 661, -37, 617, -37, 615, 656, 657,\r
+ /* 150 */ 660, 659, 658, -37, 914, 675, 73, 73, 900, 481,\r
+ /* 160 */ 921, 73, 914, -38, -38, -38, -38, -38, -38, -30,\r
+ /* 170 */ 533, 744, 903, 748, 536, 266, 581, 474, 581, 196,\r
+ /* 180 */ 31, 668, 9, 429, 111, 446, 831, 13, 85, 142,\r
+ /* 190 */ 467, 439, 437, 428, 62, 637, 839, 682, 726, 753,\r
+ /* 200 */ 749, 731, 815, 775, 782, 796, 745, 746, 671, 700,\r
+ /* 210 */ 650, 675, 707, 714, 739, 688, 742, 712, 703, 698,\r
+ /* 220 */ 792, 666, 649, 550, 594,\r
);\r
- const YY_REDUCE_USE_DFLT = -94;\r
+ const YY_REDUCE_USE_DFLT = -77;\r
const YY_REDUCE_MAX = 168;\r
static public $yy_reduce_ofst = array(\r
- /* 0 */ 44, 1115, -7, 244, 175, 1163, 64, 1187, -76, 1175,\r
- /* 10 */ 1139, 665, 1211, 1391, 1379, 1415, 1427, 1439, 1355, 1343,\r
- /* 20 */ 1259, 1247, 1271, 1295, 1331, 1307, 1463, 1475, 1583, 1607,\r
- /* 30 */ 1631, 1643, 1595, 1559, 1499, 1223, 1511, 1523, 1547, 1677,\r
- /* 40 */ 1707, 1667, 799, 510, 290, 598, 378, 108, 466, 1698,\r
- /* 50 */ 916, 860, 860, 1659, 240, 830, 830, 830, 830, 830,\r
- /* 60 */ 830, 830, 830, 830, 830, 830, 830, 830, 830, 830,\r
- /* 70 */ 830, 830, 830, 830, 830, 830, 830, 830, 830, 830,\r
- /* 80 */ 830, 830, 830, 830, 37, 385, 883, -2, -93, -58,\r
- /* 90 */ 915, 933, 992, 670, 131, 646, 162, 288, 288, 758,\r
- /* 100 */ 935, 758, 330, 961, 330, 869, 60, 870, 952, 949,\r
- /* 110 */ 869, 877, 773, 869, 984, 966, 394, 413, 1025, 1019,\r
- /* 120 */ 425, 57, -53, 688, 688, 696, 688, 688, 688, 688,\r
- /* 130 */ 647, 647, 647, 709, 647, 659, 647, 647, 647, 659,\r
- /* 140 */ 647, 647, 647, 647, 659, 659, 647, 659, 647, 647,\r
- /* 150 */ 647, 647, 687, 689, 767, 726, 706, 706, 706, 720,\r
- /* 160 */ 742, 706, 747, 731, 523, 666, 376, 372, 370,\r
+ /* 0 */ -23, 1220, 217, 1372, 1201, 1270, 1251, 371, 710, 1289,\r
+ /* 10 */ 1334, 1308, 1353, 1557, 1538, 1583, 1602, 1685, 1666, 1519,\r
+ /* 20 */ 1640, 1621, 1704, 1417, 1391, 1436, 1474, 1723, 1500, 1455,\r
+ /* 30 */ 1889, 1915, 1832, 1870, 1787, 1768, 1806, 1851, 1749, 800,\r
+ /* 40 */ 894, 941, 1035, 988, 1152, -7, 1934, 1129, 1082, 1180,\r
+ /* 50 */ 1409, 1492, 1492, 1575, 225, 225, 225, 225, 225, 225,\r
+ /* 60 */ 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,\r
+ /* 70 */ 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,\r
+ /* 80 */ 225, 225, 225, -76, 471, 777, -9, 213, 61, 730,\r
+ /* 90 */ -2, 756, 752, 425, 239, 193, 288, 193, 642, 285,\r
+ /* 100 */ 686, 642, 616, 803, 713, 285, 132, 732, 798, 793,\r
+ /* 110 */ 751, 783, 732, 808, 706, 732, 838, 841, 824, 776,\r
+ /* 120 */ 125, 510, 285, 7, 554, 503, 503, 503, 521, 503,\r
+ /* 130 */ 503, 503, 672, 672, 672, 672, 821, -46, 821, 672,\r
+ /* 140 */ 672, 672, 672, 672, 821, 672, 821, 672, 672, 672,\r
+ /* 150 */ 672, 672, 672, 821, 817, 760, 785, 785, 848, 822,\r
+ /* 160 */ 828, 785, 864, 853, 845, 870, 861, 850, 862,\r
);\r
static public $yyExpectedTokens = array(\r
- /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 12, 28, ),\r
- /* 1 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 2 */ array(12, 14, 15, 17, 19, 21, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 3 */ array(12, 14, 15, 17, 19, 21, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 4 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 5 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 6 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 7 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 8 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 9 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 10 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 11 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 12 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 13 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 57, 70, ),\r
- /* 14 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 15 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 16 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 17 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 18 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 19 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 20 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 21 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 22 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 23 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 24 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 25 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 26 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 27 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 28 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 29 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 30 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 31 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 32 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 33 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 34 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 35 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 36 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 37 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 38 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 39 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 40 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 41 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ),\r
- /* 42 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ),\r
- /* 43 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ),\r
- /* 44 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ),\r
- /* 45 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ),\r
- /* 46 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ),\r
- /* 47 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ),\r
- /* 48 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ),\r
- /* 49 */ array(1, 13, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 50 */ array(1, 20, 25, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 51 */ array(1, 13, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 52 */ array(1, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 53 */ array(1, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 54 */ array(12, 14, 15, 55, ),\r
- /* 55 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 56 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 57 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 58 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 59 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, ),\r
- /* 60 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 61 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 62 */ array(1, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 63 */ array(1, 22, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 64 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 65 */ array(1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 66 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 67 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 68 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 69 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 70 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 71 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 72 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 73 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 74 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 75 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 76 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 77 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 78 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 79 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 80 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 81 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 82 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 83 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ),\r
- /* 84 */ array(3, 4, 5, 6, 7, 8, 9, 12, 28, ),\r
- /* 85 */ array(8, 12, 28, 70, 71, 72, ),\r
- /* 86 */ array(1, 13, 18, 20, 46, 53, ),\r
- /* 87 */ array(1, 13, 18, 20, ),\r
- /* 88 */ array(18, 51, 56, ),\r
- /* 89 */ array(14, 15, 55, ),\r
- /* 90 */ array(2, 20, ),\r
- /* 91 */ array(2, 20, ),\r
- /* 92 */ array(2, 20, ),\r
- /* 93 */ array(1, 20, ),\r
+ /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 12, 18, 20, 25, 28, ),\r
+ /* 1 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 2 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 3 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 4 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 5 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 6 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 7 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 8 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 9 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 10 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 11 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 12 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 13 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 58, 71, ),\r
+ /* 14 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 15 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 16 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 17 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 18 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 19 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 20 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 21 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 22 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 23 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 24 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 25 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 26 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 27 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 28 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 29 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 30 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 31 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 32 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 33 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 34 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 35 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 36 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 37 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 38 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 39 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 40 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 41 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 57, 71, ),\r
+ /* 42 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ),\r
+ /* 43 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ),\r
+ /* 44 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ),\r
+ /* 45 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ),\r
+ /* 46 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ),\r
+ /* 47 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ),\r
+ /* 48 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 51, 52, 53, 56, 71, ),\r
+ /* 49 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 50 */ array(1, 19, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 51 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 52 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 53 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 54 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 55 */ array(1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 56 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 57 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 58 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 59 */ array(1, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 60 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 61 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, ),\r
+ /* 62 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 63 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 64 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 65 */ array(1, 21, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 66 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 67 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 68 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 69 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 70 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 71 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 72 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 73 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 74 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 75 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 76 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 77 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 78 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 79 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 80 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 81 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 82 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, ),\r
+ /* 83 */ array(3, 4, 5, 6, 7, 8, 9, 12, 18, 20, 25, 28, ),\r
+ /* 84 */ array(8, 12, 18, 20, 25, 28, 71, 72, 73, ),\r
+ /* 85 */ array(1, 13, 17, 19, 46, 54, ),\r
+ /* 86 */ array(1, 13, 17, 19, ),\r
+ /* 87 */ array(14, 15, 56, ),\r
+ /* 88 */ array(17, 52, 57, ),\r
+ /* 89 */ array(2, 19, ),\r
+ /* 90 */ array(1, 19, ),\r
+ /* 91 */ array(2, 19, ),\r
+ /* 92 */ array(2, 19, ),\r
+ /* 93 */ array(8, 12, 18, 20, 25, 28, 71, 72, 73, ),\r
/* 94 */ array(4, 5, 6, 9, 10, 11, ),\r
- /* 95 */ array(8, 12, 28, 70, 71, 72, ),\r
- /* 96 */ array(12, 15, 16, 23, ),\r
- /* 97 */ array(12, 15, 16, 54, ),\r
- /* 98 */ array(12, 15, 54, ),\r
- /* 99 */ array(13, 20, 23, ),\r
- /* 100 */ array(13, 20, 45, ),\r
- /* 101 */ array(13, 20, 23, ),\r
- /* 102 */ array(16, 18, 53, ),\r
+ /* 95 */ array(12, 15, 16, 55, ),\r
+ /* 96 */ array(12, 15, 16, 22, ),\r
+ /* 97 */ array(12, 15, 55, ),\r
+ /* 98 */ array(13, 19, 22, ),\r
+ /* 99 */ array(16, 17, 54, ),\r
+ /* 100 */ array(13, 19, 45, ),\r
+ /* 101 */ array(13, 19, 22, ),\r
+ /* 102 */ array(14, 15, ),\r
/* 103 */ array(12, 15, ),\r
- /* 104 */ array(18, 53, ),\r
- /* 105 */ array(12, 15, ),\r
+ /* 104 */ array(12, 15, ),\r
+ /* 105 */ array(17, 54, ),\r
/* 106 */ array(12, 15, ),\r
/* 107 */ array(12, 15, ),\r
/* 108 */ array(12, 15, ),\r
/* 109 */ array(12, 15, ),\r
/* 110 */ array(12, 15, ),\r
/* 111 */ array(12, 15, ),\r
- /* 112 */ array(14, 15, ),\r
+ /* 112 */ array(12, 15, ),\r
/* 113 */ array(12, 15, ),\r
- /* 114 */ array(12, 15, ),\r
+ /* 114 */ array(14, 15, ),\r
/* 115 */ array(12, 15, ),\r
- /* 116 */ array(18, ),\r
- /* 117 */ array(14, ),\r
- /* 118 */ array(20, ),\r
- /* 119 */ array(20, ),\r
- /* 120 */ array(20, ),\r
- /* 121 */ array(20, ),\r
- /* 122 */ array(18, ),\r
- /* 123 */ array(12, 13, 15, 27, ),\r
- /* 124 */ array(12, 13, 15, 27, ),\r
- /* 125 */ array(15, 17, 19, 21, ),\r
- /* 126 */ array(12, 15, 54, ),\r
- /* 127 */ array(12, 13, 15, ),\r
- /* 128 */ array(12, 13, 15, ),\r
- /* 129 */ array(12, 15, 16, ),\r
- /* 130 */ array(13, 20, ),\r
- /* 131 */ array(13, 20, ),\r
- /* 132 */ array(13, 20, ),\r
- /* 133 */ array(12, 46, ),\r
- /* 134 */ array(13, 20, ),\r
- /* 135 */ array(51, 56, ),\r
- /* 136 */ array(13, 20, ),\r
- /* 137 */ array(13, 20, ),\r
- /* 138 */ array(13, 20, ),\r
- /* 139 */ array(51, 56, ),\r
- /* 140 */ array(13, 20, ),\r
- /* 141 */ array(13, 20, ),\r
- /* 142 */ array(13, 20, ),\r
- /* 143 */ array(13, 20, ),\r
- /* 144 */ array(51, 56, ),\r
- /* 145 */ array(51, 56, ),\r
- /* 146 */ array(13, 20, ),\r
- /* 147 */ array(51, 56, ),\r
- /* 148 */ array(13, 20, ),\r
- /* 149 */ array(13, 20, ),\r
- /* 150 */ array(13, 20, ),\r
- /* 151 */ array(13, 20, ),\r
- /* 152 */ array(46, ),\r
- /* 153 */ array(10, ),\r
- /* 154 */ array(14, ),\r
- /* 155 */ array(2, ),\r
- /* 156 */ array(18, ),\r
- /* 157 */ array(18, ),\r
- /* 158 */ array(18, ),\r
- /* 159 */ array(20, ),\r
- /* 160 */ array(20, ),\r
- /* 161 */ array(18, ),\r
- /* 162 */ array(),\r
+ /* 116 */ array(12, 15, ),\r
+ /* 117 */ array(12, 15, ),\r
+ /* 118 */ array(19, ),\r
+ /* 119 */ array(19, ),\r
+ /* 120 */ array(17, ),\r
+ /* 121 */ array(19, ),\r
+ /* 122 */ array(17, ),\r
+ /* 123 */ array(14, ),\r
+ /* 124 */ array(19, ),\r
+ /* 125 */ array(12, 13, 15, 27, ),\r
+ /* 126 */ array(12, 13, 15, 27, ),\r
+ /* 127 */ array(12, 15, 16, ),\r
+ /* 128 */ array(12, 14, 15, ),\r
+ /* 129 */ array(12, 13, 15, ),\r
+ /* 130 */ array(12, 15, 55, ),\r
+ /* 131 */ array(12, 13, 15, ),\r
+ /* 132 */ array(13, 19, ),\r
+ /* 133 */ array(13, 19, ),\r
+ /* 134 */ array(13, 19, ),\r
+ /* 135 */ array(13, 19, ),\r
+ /* 136 */ array(52, 57, ),\r
+ /* 137 */ array(12, 46, ),\r
+ /* 138 */ array(52, 57, ),\r
+ /* 139 */ array(13, 19, ),\r
+ /* 140 */ array(13, 19, ),\r
+ /* 141 */ array(13, 19, ),\r
+ /* 142 */ array(13, 19, ),\r
+ /* 143 */ array(13, 19, ),\r
+ /* 144 */ array(52, 57, ),\r
+ /* 145 */ array(13, 19, ),\r
+ /* 146 */ array(52, 57, ),\r
+ /* 147 */ array(13, 19, ),\r
+ /* 148 */ array(13, 19, ),\r
+ /* 149 */ array(13, 19, ),\r
+ /* 150 */ array(13, 19, ),\r
+ /* 151 */ array(13, 19, ),\r
+ /* 152 */ array(13, 19, ),\r
+ /* 153 */ array(52, 57, ),\r
+ /* 154 */ array(19, ),\r
+ /* 155 */ array(46, ),\r
+ /* 156 */ array(17, ),\r
+ /* 157 */ array(17, ),\r
+ /* 158 */ array(10, ),\r
+ /* 159 */ array(14, ),\r
+ /* 160 */ array(2, ),\r
+ /* 161 */ array(17, ),\r
+ /* 162 */ array(19, ),\r
/* 163 */ array(),\r
/* 164 */ array(),\r
/* 165 */ array(),\r
/* 166 */ array(),\r
/* 167 */ array(),\r
/* 168 */ array(),\r
- /* 169 */ array(46, 51, 53, 57, ),\r
- /* 170 */ array(16, 26, 46, 53, ),\r
- /* 171 */ array(13, 20, 46, 53, ),\r
- /* 172 */ array(12, 14, 15, 29, ),\r
- /* 173 */ array(27, 46, 53, ),\r
- /* 174 */ array(13, 20, 45, ),\r
- /* 175 */ array(46, 53, ),\r
- /* 176 */ array(27, 45, ),\r
- /* 177 */ array(46, 53, ),\r
- /* 178 */ array(22, 30, ),\r
- /* 179 */ array(16, 51, ),\r
- /* 180 */ array(30, 57, ),\r
- /* 181 */ array(23, 71, ),\r
- /* 182 */ array(13, 45, ),\r
- /* 183 */ array(15, 54, ),\r
- /* 184 */ array(15, 29, ),\r
- /* 185 */ array(2, 16, ),\r
+ /* 169 */ array(46, 52, 54, 58, ),\r
+ /* 170 */ array(12, 14, 15, 29, ),\r
+ /* 171 */ array(13, 19, 46, 54, ),\r
+ /* 172 */ array(16, 26, 46, 54, ),\r
+ /* 173 */ array(13, 19, 45, ),\r
+ /* 174 */ array(27, 46, 54, ),\r
+ /* 175 */ array(15, 55, ),\r
+ /* 176 */ array(46, 54, ),\r
+ /* 177 */ array(27, 45, ),\r
+ /* 178 */ array(46, 54, ),\r
+ /* 179 */ array(15, 29, ),\r
+ /* 180 */ array(16, 52, ),\r
+ /* 181 */ array(13, 45, ),\r
+ /* 182 */ array(2, 16, ),\r
+ /* 183 */ array(21, 30, ),\r
+ /* 184 */ array(30, 58, ),\r
+ /* 185 */ array(22, 72, ),\r
/* 186 */ array(26, ),\r
- /* 187 */ array(13, ),\r
+ /* 187 */ array(14, ),\r
/* 188 */ array(14, ),\r
- /* 189 */ array(24, ),\r
- /* 190 */ array(47, ),\r
+ /* 189 */ array(15, ),\r
+ /* 190 */ array(26, ),\r
/* 191 */ array(15, ),\r
- /* 192 */ array(26, ),\r
- /* 193 */ array(55, ),\r
+ /* 192 */ array(15, ),\r
+ /* 193 */ array(47, ),\r
/* 194 */ array(14, ),\r
- /* 195 */ array(55, ),\r
+ /* 195 */ array(14, ),\r
/* 196 */ array(15, ),\r
/* 197 */ array(14, ),\r
- /* 198 */ array(57, ),\r
- /* 199 */ array(23, ),\r
+ /* 198 */ array(58, ),\r
+ /* 199 */ array(13, ),\r
/* 200 */ array(15, ),\r
- /* 201 */ array(15, ),\r
- /* 202 */ array(15, ),\r
- /* 203 */ array(15, ),\r
- /* 204 */ array(15, ),\r
- /* 205 */ array(20, ),\r
- /* 206 */ array(47, ),\r
- /* 207 */ array(46, ),\r
- /* 208 */ array(29, ),\r
- /* 209 */ array(51, ),\r
- /* 210 */ array(15, ),\r
- /* 211 */ array(2, ),\r
- /* 212 */ array(13, ),\r
- /* 213 */ array(16, ),\r
- /* 214 */ array(48, ),\r
- /* 215 */ array(15, ),\r
- /* 216 */ array(13, ),\r
- /* 217 */ array(45, ),\r
- /* 218 */ array(14, ),\r
- /* 219 */ array(13, ),\r
- /* 220 */ array(14, ),\r
- /* 221 */ array(16, ),\r
- /* 222 */ array(20, ),\r
- /* 223 */ array(47, ),\r
- /* 224 */ array(),\r
+ /* 201 */ array(56, ),\r
+ /* 202 */ array(19, ),\r
+ /* 203 */ array(56, ),\r
+ /* 204 */ array(29, ),\r
+ /* 205 */ array(19, ),\r
+ /* 206 */ array(15, ),\r
+ /* 207 */ array(13, ),\r
+ /* 208 */ array(47, ),\r
+ /* 209 */ array(15, ),\r
+ /* 210 */ array(47, ),\r
+ /* 211 */ array(46, ),\r
+ /* 212 */ array(16, ),\r
+ /* 213 */ array(48, ),\r
+ /* 214 */ array(2, ),\r
+ /* 215 */ array(52, ),\r
+ /* 216 */ array(23, ),\r
+ /* 217 */ array(46, ),\r
+ /* 218 */ array(13, ),\r
+ /* 219 */ array(22, ),\r
+ /* 220 */ array(16, ),\r
+ /* 221 */ array(29, ),\r
+ /* 222 */ array(45, ),\r
+ /* 223 */ array(15, ),\r
+ /* 224 */ array(15, ),\r
/* 225 */ array(),\r
/* 226 */ array(),\r
/* 227 */ array(),\r
/* 359 */ array(),\r
);\r
static public $yy_default = array(\r
- /* 0 */ 546, 529, 546, 546, 546, 500, 546, 546, 546, 500,\r
- /* 10 */ 500, 546, 500, 546, 546, 546, 546, 546, 546, 546,\r
- /* 20 */ 546, 546, 546, 546, 546, 546, 546, 546, 546, 546,\r
- /* 30 */ 546, 546, 546, 546, 546, 546, 546, 546, 546, 546,\r
- /* 40 */ 546, 546, 546, 546, 546, 546, 546, 546, 546, 546,\r
- /* 50 */ 418, 546, 418, 418, 546, 546, 546, 546, 546, 546,\r
- /* 60 */ 546, 546, 499, 546, 546, 546, 546, 546, 427, 451,\r
- /* 70 */ 440, 532, 448, 443, 447, 531, 438, 400, 435, 444,\r
- /* 80 */ 530, 424, 439, 420, 360, 546, 459, 546, 508, 546,\r
- /* 90 */ 418, 418, 418, 418, 546, 546, 546, 473, 473, 452,\r
- /* 100 */ 428, 452, 466, 546, 466, 546, 546, 546, 546, 546,\r
- /* 110 */ 546, 546, 546, 546, 546, 546, 503, 546, 418, 418,\r
- /* 120 */ 418, 418, 504, 546, 546, 546, 474, 546, 546, 546,\r
- /* 130 */ 546, 546, 546, 473, 546, 492, 546, 546, 546, 491,\r
- /* 140 */ 546, 546, 546, 546, 493, 494, 546, 471, 546, 546,\r
- /* 150 */ 546, 546, 473, 374, 546, 434, 509, 506, 487, 545,\r
- /* 160 */ 545, 505, 511, 473, 511, 473, 473, 511, 511, 459,\r
- /* 170 */ 423, 459, 546, 459, 428, 459, 428, 449, 546, 457,\r
- /* 180 */ 546, 452, 428, 546, 546, 485, 546, 546, 546, 425,\r
- /* 190 */ 546, 546, 546, 546, 546, 546, 546, 546, 546, 452,\r
- /* 200 */ 546, 546, 546, 546, 546, 546, 546, 507, 546, 457,\r
- /* 210 */ 546, 485, 546, 546, 461, 546, 546, 428, 546, 546,\r
- /* 220 */ 546, 423, 546, 546, 477, 476, 361, 486, 495, 422,\r
- /* 230 */ 461, 415, 539, 542, 537, 538, 534, 535, 543, 536,\r
- /* 240 */ 497, 450, 482, 480, 481, 479, 533, 403, 544, 426,\r
- /* 250 */ 401, 498, 399, 411, 410, 409, 402, 478, 496, 512,\r
- /* 260 */ 513, 412, 385, 429, 464, 467, 472, 475, 458, 455,\r
- /* 270 */ 510, 456, 453, 454, 484, 485, 490, 483, 468, 469,\r
- /* 280 */ 465, 463, 430, 460, 431, 462, 417, 414, 368, 369,\r
- /* 290 */ 370, 371, 367, 366, 362, 363, 364, 365, 372, 373,\r
- /* 300 */ 381, 416, 408, 413, 380, 379, 375, 376, 377, 378,\r
- /* 310 */ 470, 432, 388, 387, 389, 390, 488, 386, 384, 526,\r
- /* 320 */ 528, 527, 541, 489, 391, 405, 406, 407, 397, 404,\r
- /* 330 */ 392, 393, 394, 396, 395, 433, 525, 442, 445, 446,\r
- /* 340 */ 501, 441, 437, 382, 540, 383, 436, 502, 514, 521,\r
- /* 350 */ 522, 523, 524, 520, 519, 515, 516, 517, 518, 398,\r
+ /* 0 */ 544, 527, 544, 500, 544, 544, 544, 544, 500, 544,\r
+ /* 10 */ 544, 500, 500, 544, 544, 544, 544, 544, 544, 544,\r
+ /* 20 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544,\r
+ /* 30 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544,\r
+ /* 40 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544,\r
+ /* 50 */ 414, 544, 414, 414, 544, 544, 544, 544, 544, 499,\r
+ /* 60 */ 544, 544, 544, 544, 544, 544, 544, 399, 444, 528,\r
+ /* 70 */ 420, 416, 435, 443, 436, 529, 423, 431, 447, 439,\r
+ /* 80 */ 440, 434, 530, 360, 544, 458, 544, 544, 506, 414,\r
+ /* 90 */ 414, 414, 414, 544, 544, 473, 544, 473, 448, 466,\r
+ /* 100 */ 424, 448, 544, 544, 544, 466, 473, 544, 544, 544,\r
+ /* 110 */ 544, 544, 544, 544, 544, 544, 544, 544, 414, 414,\r
+ /* 120 */ 503, 414, 466, 544, 414, 544, 544, 544, 544, 544,\r
+ /* 130 */ 474, 544, 544, 544, 544, 544, 490, 473, 493, 544,\r
+ /* 140 */ 544, 544, 544, 544, 492, 544, 491, 544, 544, 544,\r
+ /* 150 */ 544, 544, 544, 471, 543, 473, 507, 504, 374, 544,\r
+ /* 160 */ 430, 487, 543, 509, 473, 509, 509, 473, 509, 458,\r
+ /* 170 */ 544, 458, 419, 424, 458, 544, 445, 424, 458, 544,\r
+ /* 180 */ 454, 424, 485, 544, 544, 448, 544, 544, 544, 544,\r
+ /* 190 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544,\r
+ /* 200 */ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544,\r
+ /* 210 */ 544, 485, 419, 460, 485, 454, 421, 505, 544, 448,\r
+ /* 220 */ 544, 456, 424, 544, 544, 481, 470, 482, 401, 402,\r
+ /* 230 */ 368, 426, 480, 479, 367, 366, 381, 483, 363, 362,\r
+ /* 240 */ 497, 361, 418, 476, 380, 397, 365, 494, 364, 469,\r
+ /* 250 */ 460, 378, 486, 400, 542, 411, 442, 427, 373, 407,\r
+ /* 260 */ 406, 477, 375, 377, 422, 372, 369, 495, 428, 478,\r
+ /* 270 */ 457, 376, 446, 370, 511, 371, 510, 496, 441, 379,\r
+ /* 280 */ 540, 437, 382, 538, 413, 508, 450, 449, 452, 410,\r
+ /* 290 */ 383, 386, 467, 387, 385, 409, 539, 425, 384, 438,\r
+ /* 300 */ 451, 517, 518, 519, 516, 515, 512, 513, 514, 520,\r
+ /* 310 */ 521, 501, 489, 453, 468, 465, 522, 523, 429, 408,\r
+ /* 320 */ 388, 535, 537, 502, 536, 463, 531, 532, 533, 541,\r
+ /* 330 */ 534, 396, 432, 412, 525, 526, 455, 433, 524, 394,\r
+ /* 340 */ 461, 389, 390, 488, 404, 472, 485, 484, 405, 403,\r
+ /* 350 */ 464, 462, 395, 398, 475, 393, 391, 392, 459, 498,\r
);\r
const YYNOCODE = 116;\r
const YYSTACKDEPTH = 100;\r
const YYNSTATE = 360;\r
- const YYNRULE = 186;\r
- const YYERRORSYMBOL = 73;\r
+ const YYNRULE = 184;\r
+ const YYERRORSYMBOL = 74;\r
const YYERRSYMDT = 'yy0';\r
const YYFALLBACK = 0;\r
static public $yyFallback = array(\r
'PHPSTARTTAG', 'PHPENDTAG', 'FAKEPHPSTARTTAG', 'XMLTAG', \r
'OTHER', 'LITERALSTART', 'LITERALEND', 'LITERAL', \r
'LDEL', 'RDEL', 'DOLLAR', 'ID', \r
- 'EQUAL', 'FOREACH', 'PTR', 'IF', \r
- 'SPACE', 'FOR', 'SEMICOLON', 'INCDEC', \r
- 'TO', 'STEP', 'AS', 'APTR', \r
+ 'EQUAL', 'PTR', 'LDELIF', 'SPACE', \r
+ 'LDELFOR', 'SEMICOLON', 'INCDEC', 'TO', \r
+ 'STEP', 'LDELFOREACH', 'AS', 'APTR', \r
'LDELSLASH', 'INTEGER', 'COMMA', 'MATH', \r
'UNIMATH', 'ANDSYM', 'ISIN', 'ISDIVBY', \r
'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', \r
'ISNOTEVENBY', 'ISODD', 'ISNOTODD', 'ISODDBY', \r
'ISNOTODDBY', 'INSTANCEOF', 'OPENP', 'CLOSEP', \r
- 'QMARK', 'NOT', 'TYPECAST', 'DOT', \r
- 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT', 'HATCH', \r
- 'OPENB', 'CLOSEB', 'EQUALS', 'NOTEQUALS', \r
- 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', \r
- 'IDENTITY', 'NONEIDENTITY', 'MOD', 'LAND', \r
- 'LOR', 'LXOR', 'QUOTE', 'BACKTICK', \r
- 'DOLLARID', 'error', 'start', 'template', \r
- 'template_element', 'smartytag', 'literal', 'literal_elements',\r
- 'literal_element', 'value', 'attributes', 'variable', \r
- 'expr', 'ternary', 'varindexed', 'modifier', \r
- 'modparameters', 'statement', 'statements', 'optspace', \r
- 'varvar', 'foraction', 'array', 'specialclose',\r
+ 'QMARK', 'NOT', 'TYPECAST', 'HEX', \r
+ 'DOT', 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT', \r
+ 'HATCH', 'OPENB', 'CLOSEB', 'EQUALS', \r
+ 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL',\r
+ 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', 'MOD', \r
+ 'LAND', 'LOR', 'LXOR', 'QUOTE', \r
+ 'BACKTICK', 'DOLLARID', 'error', 'start', \r
+ 'template', 'template_element', 'smartytag', 'literal', \r
+ 'literal_elements', 'literal_element', 'value', 'attributes', \r
+ 'variable', 'expr', 'ternary', 'varindexed', \r
+ 'modifier', 'modparameters', 'statement', 'statements', \r
+ 'optspace', 'varvar', 'foraction', 'array', \r
'attribute', 'ifcond', 'lop', 'function', \r
'doublequoted_with_quotes', 'static_class_access', 'object', 'arrayindex', \r
'indexdef', 'varvarele', 'objectchain', 'objectelement',\r
/* 29 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",\r
/* 30 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL",\r
/* 31 */ "smartytag ::= LDEL ID attributes RDEL",\r
- /* 32 */ "smartytag ::= LDEL FOREACH attributes RDEL",\r
- /* 33 */ "smartytag ::= LDEL ID RDEL",\r
- /* 34 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",\r
- /* 35 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL",\r
- /* 36 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL",\r
- /* 37 */ "smartytag ::= LDEL IF SPACE expr RDEL",\r
- /* 38 */ "smartytag ::= LDEL IF SPACE statement RDEL",\r
- /* 39 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL",\r
- /* 40 */ "foraction ::= EQUAL expr",\r
- /* 41 */ "foraction ::= INCDEC",\r
- /* 42 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL",\r
- /* 43 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL",\r
- /* 44 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL",\r
- /* 45 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL",\r
- /* 46 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL",\r
- /* 47 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL",\r
+ /* 32 */ "smartytag ::= LDEL ID RDEL",\r
+ /* 33 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",\r
+ /* 34 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL",\r
+ /* 35 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL",\r
+ /* 36 */ "smartytag ::= LDELIF SPACE expr RDEL",\r
+ /* 37 */ "smartytag ::= LDELIF SPACE statement RDEL",\r
+ /* 38 */ "smartytag ::= LDELFOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL",\r
+ /* 39 */ "foraction ::= EQUAL expr",\r
+ /* 40 */ "foraction ::= INCDEC",\r
+ /* 41 */ "smartytag ::= LDELFOR SPACE statement TO expr attributes RDEL",\r
+ /* 42 */ "smartytag ::= LDELFOR SPACE statement TO expr STEP expr RDEL",\r
+ /* 43 */ "smartytag ::= LDELFOREACH attributes RDEL",\r
+ /* 44 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar RDEL",\r
+ /* 45 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL",\r
+ /* 46 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar RDEL",\r
+ /* 47 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL",\r
/* 48 */ "smartytag ::= LDELSLASH ID RDEL",\r
- /* 49 */ "smartytag ::= LDELSLASH specialclose RDEL",\r
- /* 50 */ "specialclose ::= IF",\r
- /* 51 */ "specialclose ::= FOR",\r
- /* 52 */ "specialclose ::= FOREACH",\r
- /* 53 */ "smartytag ::= LDELSLASH ID attributes RDEL",\r
- /* 54 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL",\r
- /* 55 */ "smartytag ::= LDELSLASH ID PTR ID RDEL",\r
- /* 56 */ "attributes ::= attributes attribute",\r
- /* 57 */ "attributes ::= attribute",\r
- /* 58 */ "attributes ::=",\r
- /* 59 */ "attribute ::= SPACE ID EQUAL ID",\r
- /* 60 */ "attribute ::= SPACE ID EQUAL expr",\r
- /* 61 */ "attribute ::= SPACE ID EQUAL value",\r
- /* 62 */ "attribute ::= SPACE ID EQUAL ternary",\r
- /* 63 */ "attribute ::= SPACE ID",\r
- /* 64 */ "attribute ::= SPACE INTEGER EQUAL expr",\r
- /* 65 */ "statements ::= statement",\r
- /* 66 */ "statements ::= statements COMMA statement",\r
- /* 67 */ "statement ::= DOLLAR varvar EQUAL expr",\r
- /* 68 */ "expr ::= value",\r
- /* 69 */ "expr ::= DOLLAR ID COLON ID",\r
- /* 70 */ "expr ::= expr MATH value",\r
- /* 71 */ "expr ::= expr UNIMATH value",\r
- /* 72 */ "expr ::= expr ANDSYM value",\r
- /* 73 */ "expr ::= array",\r
- /* 74 */ "expr ::= expr modifier modparameters",\r
- /* 75 */ "expr ::= expr ifcond expr",\r
- /* 76 */ "expr ::= expr ISIN array",\r
- /* 77 */ "expr ::= expr ISIN value",\r
- /* 78 */ "expr ::= expr lop expr",\r
- /* 79 */ "expr ::= expr ISDIVBY expr",\r
- /* 80 */ "expr ::= expr ISNOTDIVBY expr",\r
- /* 81 */ "expr ::= expr ISEVEN",\r
- /* 82 */ "expr ::= expr ISNOTEVEN",\r
- /* 83 */ "expr ::= expr ISEVENBY expr",\r
- /* 84 */ "expr ::= expr ISNOTEVENBY expr",\r
- /* 85 */ "expr ::= expr ISODD",\r
- /* 86 */ "expr ::= expr ISNOTODD",\r
- /* 87 */ "expr ::= expr ISODDBY expr",\r
- /* 88 */ "expr ::= expr ISNOTODDBY expr",\r
- /* 89 */ "expr ::= value INSTANCEOF ID",\r
- /* 90 */ "expr ::= value INSTANCEOF value",\r
- /* 91 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr",\r
- /* 92 */ "value ::= variable",\r
- /* 93 */ "value ::= UNIMATH value",\r
- /* 94 */ "value ::= NOT value",\r
- /* 95 */ "value ::= TYPECAST value",\r
- /* 96 */ "value ::= variable INCDEC",\r
- /* 97 */ "value ::= INTEGER",\r
- /* 98 */ "value ::= INTEGER DOT INTEGER",\r
- /* 99 */ "value ::= ID",\r
- /* 100 */ "value ::= function",\r
- /* 101 */ "value ::= OPENP expr CLOSEP",\r
- /* 102 */ "value ::= SINGLEQUOTESTRING",\r
- /* 103 */ "value ::= doublequoted_with_quotes",\r
- /* 104 */ "value ::= ID DOUBLECOLON static_class_access",\r
+ /* 49 */ "smartytag ::= LDELSLASH ID attributes RDEL",\r
+ /* 50 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL",\r
+ /* 51 */ "smartytag ::= LDELSLASH ID PTR ID RDEL",\r
+ /* 52 */ "attributes ::= attributes attribute",\r
+ /* 53 */ "attributes ::= attribute",\r
+ /* 54 */ "attributes ::=",\r
+ /* 55 */ "attribute ::= SPACE ID EQUAL ID",\r
+ /* 56 */ "attribute ::= SPACE ID EQUAL expr",\r
+ /* 57 */ "attribute ::= SPACE ID EQUAL value",\r
+ /* 58 */ "attribute ::= SPACE ID EQUAL ternary",\r
+ /* 59 */ "attribute ::= SPACE ID",\r
+ /* 60 */ "attribute ::= SPACE INTEGER EQUAL expr",\r
+ /* 61 */ "statements ::= statement",\r
+ /* 62 */ "statements ::= statements COMMA statement",\r
+ /* 63 */ "statement ::= DOLLAR varvar EQUAL expr",\r
+ /* 64 */ "expr ::= value",\r
+ /* 65 */ "expr ::= DOLLAR ID COLON ID",\r
+ /* 66 */ "expr ::= expr MATH value",\r
+ /* 67 */ "expr ::= expr UNIMATH value",\r
+ /* 68 */ "expr ::= expr ANDSYM value",\r
+ /* 69 */ "expr ::= array",\r
+ /* 70 */ "expr ::= expr modifier modparameters",\r
+ /* 71 */ "expr ::= expr ifcond expr",\r
+ /* 72 */ "expr ::= expr ISIN array",\r
+ /* 73 */ "expr ::= expr ISIN value",\r
+ /* 74 */ "expr ::= expr lop expr",\r
+ /* 75 */ "expr ::= expr ISDIVBY expr",\r
+ /* 76 */ "expr ::= expr ISNOTDIVBY expr",\r
+ /* 77 */ "expr ::= expr ISEVEN",\r
+ /* 78 */ "expr ::= expr ISNOTEVEN",\r
+ /* 79 */ "expr ::= expr ISEVENBY expr",\r
+ /* 80 */ "expr ::= expr ISNOTEVENBY expr",\r
+ /* 81 */ "expr ::= expr ISODD",\r
+ /* 82 */ "expr ::= expr ISNOTODD",\r
+ /* 83 */ "expr ::= expr ISODDBY expr",\r
+ /* 84 */ "expr ::= expr ISNOTODDBY expr",\r
+ /* 85 */ "expr ::= value INSTANCEOF ID",\r
+ /* 86 */ "expr ::= value INSTANCEOF value",\r
+ /* 87 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr",\r
+ /* 88 */ "value ::= variable",\r
+ /* 89 */ "value ::= UNIMATH value",\r
+ /* 90 */ "value ::= NOT value",\r
+ /* 91 */ "value ::= TYPECAST value",\r
+ /* 92 */ "value ::= variable INCDEC",\r
+ /* 93 */ "value ::= HEX",\r
+ /* 94 */ "value ::= INTEGER",\r
+ /* 95 */ "value ::= INTEGER DOT INTEGER",\r
+ /* 96 */ "value ::= INTEGER DOT",\r
+ /* 97 */ "value ::= DOT INTEGER",\r
+ /* 98 */ "value ::= ID",\r
+ /* 99 */ "value ::= function",\r
+ /* 100 */ "value ::= OPENP expr CLOSEP",\r
+ /* 101 */ "value ::= SINGLEQUOTESTRING",\r
+ /* 102 */ "value ::= doublequoted_with_quotes",\r
+ /* 103 */ "value ::= ID DOUBLECOLON static_class_access",\r
+ /* 104 */ "value ::= varindexed DOUBLECOLON static_class_access",\r
/* 105 */ "value ::= smartytag",\r
/* 106 */ "variable ::= varindexed",\r
/* 107 */ "variable ::= DOLLAR varvar AT ID",\r
/* 125 */ "varvarele ::= ID",\r
/* 126 */ "varvarele ::= LDEL expr RDEL",\r
/* 127 */ "object ::= varindexed objectchain",\r
- /* 128 */ "object ::= varindexed DOUBLECOLON ID",\r
- /* 129 */ "objectchain ::= objectelement",\r
- /* 130 */ "objectchain ::= objectchain objectelement",\r
- /* 131 */ "objectelement ::= PTR ID arrayindex",\r
- /* 132 */ "objectelement ::= PTR variable arrayindex",\r
- /* 133 */ "objectelement ::= PTR LDEL expr RDEL arrayindex",\r
- /* 134 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex",\r
- /* 135 */ "objectelement ::= PTR method",\r
- /* 136 */ "function ::= ID OPENP params CLOSEP",\r
- /* 137 */ "method ::= ID OPENP params CLOSEP",\r
+ /* 128 */ "objectchain ::= objectelement",\r
+ /* 129 */ "objectchain ::= objectchain objectelement",\r
+ /* 130 */ "objectelement ::= PTR ID arrayindex",\r
+ /* 131 */ "objectelement ::= PTR DOLLAR varvar arrayindex",\r
+ /* 132 */ "objectelement ::= PTR LDEL expr RDEL arrayindex",\r
+ /* 133 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex",\r
+ /* 134 */ "objectelement ::= PTR method",\r
+ /* 135 */ "function ::= ID OPENP params CLOSEP",\r
+ /* 136 */ "method ::= ID OPENP params CLOSEP",\r
+ /* 137 */ "method ::= DOLLAR ID OPENP params CLOSEP",\r
/* 138 */ "params ::= expr COMMA params",\r
/* 139 */ "params ::= expr",\r
/* 140 */ "params ::=",\r
/* 141 */ "modifier ::= VERT AT ID",\r
/* 142 */ "modifier ::= VERT ID",\r
/* 143 */ "static_class_access ::= method",\r
- /* 144 */ "static_class_access ::= DOLLAR ID OPENP params CLOSEP",\r
- /* 145 */ "static_class_access ::= method objectchain",\r
- /* 146 */ "static_class_access ::= DOLLAR ID OPENP params CLOSEP objectchain",\r
- /* 147 */ "static_class_access ::= ID",\r
- /* 148 */ "static_class_access ::= DOLLAR ID arrayindex",\r
- /* 149 */ "static_class_access ::= DOLLAR ID arrayindex objectchain",\r
- /* 150 */ "modparameters ::= modparameters modparameter",\r
- /* 151 */ "modparameters ::=",\r
- /* 152 */ "modparameter ::= COLON value",\r
- /* 153 */ "modparameter ::= COLON array",\r
- /* 154 */ "ifcond ::= EQUALS",\r
- /* 155 */ "ifcond ::= NOTEQUALS",\r
- /* 156 */ "ifcond ::= GREATERTHAN",\r
- /* 157 */ "ifcond ::= LESSTHAN",\r
- /* 158 */ "ifcond ::= GREATEREQUAL",\r
- /* 159 */ "ifcond ::= LESSEQUAL",\r
- /* 160 */ "ifcond ::= IDENTITY",\r
- /* 161 */ "ifcond ::= NONEIDENTITY",\r
- /* 162 */ "ifcond ::= MOD",\r
- /* 163 */ "lop ::= LAND",\r
- /* 164 */ "lop ::= LOR",\r
- /* 165 */ "lop ::= LXOR",\r
- /* 166 */ "array ::= OPENB arrayelements CLOSEB",\r
- /* 167 */ "arrayelements ::= arrayelement",\r
- /* 168 */ "arrayelements ::= arrayelements COMMA arrayelement",\r
- /* 169 */ "arrayelements ::=",\r
- /* 170 */ "arrayelement ::= value APTR expr",\r
- /* 171 */ "arrayelement ::= ID APTR expr",\r
- /* 172 */ "arrayelement ::= expr",\r
- /* 173 */ "doublequoted_with_quotes ::= QUOTE QUOTE",\r
- /* 174 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE",\r
- /* 175 */ "doublequoted ::= doublequoted doublequotedcontent",\r
- /* 176 */ "doublequoted ::= doublequotedcontent",\r
- /* 177 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",\r
- /* 178 */ "doublequotedcontent ::= BACKTICK expr BACKTICK",\r
- /* 179 */ "doublequotedcontent ::= DOLLARID",\r
- /* 180 */ "doublequotedcontent ::= LDEL variable RDEL",\r
- /* 181 */ "doublequotedcontent ::= LDEL expr RDEL",\r
- /* 182 */ "doublequotedcontent ::= smartytag",\r
- /* 183 */ "doublequotedcontent ::= OTHER",\r
- /* 184 */ "optspace ::= SPACE",\r
- /* 185 */ "optspace ::=",\r
+ /* 144 */ "static_class_access ::= method objectchain",\r
+ /* 145 */ "static_class_access ::= ID",\r
+ /* 146 */ "static_class_access ::= DOLLAR ID arrayindex",\r
+ /* 147 */ "static_class_access ::= DOLLAR ID arrayindex objectchain",\r
+ /* 148 */ "modparameters ::= modparameters modparameter",\r
+ /* 149 */ "modparameters ::=",\r
+ /* 150 */ "modparameter ::= COLON value",\r
+ /* 151 */ "modparameter ::= COLON array",\r
+ /* 152 */ "ifcond ::= EQUALS",\r
+ /* 153 */ "ifcond ::= NOTEQUALS",\r
+ /* 154 */ "ifcond ::= GREATERTHAN",\r
+ /* 155 */ "ifcond ::= LESSTHAN",\r
+ /* 156 */ "ifcond ::= GREATEREQUAL",\r
+ /* 157 */ "ifcond ::= LESSEQUAL",\r
+ /* 158 */ "ifcond ::= IDENTITY",\r
+ /* 159 */ "ifcond ::= NONEIDENTITY",\r
+ /* 160 */ "ifcond ::= MOD",\r
+ /* 161 */ "lop ::= LAND",\r
+ /* 162 */ "lop ::= LOR",\r
+ /* 163 */ "lop ::= LXOR",\r
+ /* 164 */ "array ::= OPENB arrayelements CLOSEB",\r
+ /* 165 */ "arrayelements ::= arrayelement",\r
+ /* 166 */ "arrayelements ::= arrayelements COMMA arrayelement",\r
+ /* 167 */ "arrayelements ::=",\r
+ /* 168 */ "arrayelement ::= value APTR expr",\r
+ /* 169 */ "arrayelement ::= ID APTR expr",\r
+ /* 170 */ "arrayelement ::= expr",\r
+ /* 171 */ "doublequoted_with_quotes ::= QUOTE QUOTE",\r
+ /* 172 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE",\r
+ /* 173 */ "doublequoted ::= doublequoted doublequotedcontent",\r
+ /* 174 */ "doublequoted ::= doublequotedcontent",\r
+ /* 175 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",\r
+ /* 176 */ "doublequotedcontent ::= BACKTICK expr BACKTICK",\r
+ /* 177 */ "doublequotedcontent ::= DOLLARID",\r
+ /* 178 */ "doublequotedcontent ::= LDEL variable RDEL",\r
+ /* 179 */ "doublequotedcontent ::= LDEL expr RDEL",\r
+ /* 180 */ "doublequotedcontent ::= smartytag",\r
+ /* 181 */ "doublequotedcontent ::= OTHER",\r
+ /* 182 */ "optspace ::= SPACE",\r
+ /* 183 */ "optspace ::=",\r
);\r
\r
function tokenName($tokenType)\r
\r
function __destruct()\r
{\r
- while ($this->yyidx >= 0) {\r
+ while ($this->yystack !== Array()) {\r
$this->yy_pop_parser_stack();\r
}\r
if (is_resource(self::$yyTraceFILE)) {\r
$this->yystack[$this->yyidx]->stateno,\r
self::$yyRuleInfo[$yyruleno]['lhs']);\r
if (isset(self::$yyExpectedTokens[$nextstate])) {\r
- $expected += self::$yyExpectedTokens[$nextstate];\r
+ $expected = array_merge($expected, self::$yyExpectedTokens[$nextstate]);\r
if (in_array($token,\r
self::$yyExpectedTokens[$nextstate], true)) {\r
$this->yyidx = $yyidx;\r
}\r
break;\r
} while (true);\r
+ $this->yyidx = $yyidx;\r
+ $this->yystack = $stack;\r
return array_unique($expected);\r
}\r
\r
while ($this->yyidx >= 0) {\r
$this->yy_pop_parser_stack();\r
}\r
+#line 80 "smarty_internal_templateparser.y"\r
+\r
+ $this->internalError = true;\r
+ $this->compiler->trigger_template_error("Stack overflow in template parser");\r
+#line 1579 "smarty_internal_templateparser.php"\r
return;\r
}\r
$yytos = new TP_yyStackEntry;\r
}\r
\r
static public $yyRuleInfo = array(\r
- array( 'lhs' => 74, 'rhs' => 1 ),\r
array( 'lhs' => 75, 'rhs' => 1 ),\r
- array( 'lhs' => 75, 'rhs' => 2 ),\r
- array( 'lhs' => 76, 'rhs' => 1 ),\r
- array( 'lhs' => 76, 'rhs' => 1 ),\r
- array( 'lhs' => 76, 'rhs' => 1 ),\r
- array( 'lhs' => 76, 'rhs' => 1 ),\r
- array( 'lhs' => 76, 'rhs' => 1 ),\r
- array( 'lhs' => 76, 'rhs' => 1 ),\r
- array( 'lhs' => 76, 'rhs' => 1 ),\r
array( 'lhs' => 76, 'rhs' => 1 ),\r
- array( 'lhs' => 78, 'rhs' => 2 ),\r
- array( 'lhs' => 78, 'rhs' => 3 ),\r
+ array( 'lhs' => 76, 'rhs' => 2 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
+ array( 'lhs' => 77, 'rhs' => 1 ),\r
array( 'lhs' => 79, 'rhs' => 2 ),\r
- array( 'lhs' => 79, 'rhs' => 0 ),\r
- array( 'lhs' => 80, 'rhs' => 1 ),\r
- array( 'lhs' => 80, 'rhs' => 1 ),\r
- array( 'lhs' => 80, 'rhs' => 1 ),\r
- array( 'lhs' => 80, 'rhs' => 1 ),\r
- array( 'lhs' => 80, 'rhs' => 1 ),\r
- array( 'lhs' => 77, 'rhs' => 3 ),\r
- array( 'lhs' => 77, 'rhs' => 4 ),\r
- array( 'lhs' => 77, 'rhs' => 4 ),\r
- array( 'lhs' => 77, 'rhs' => 4 ),\r
- array( 'lhs' => 77, 'rhs' => 4 ),\r
- array( 'lhs' => 77, 'rhs' => 6 ),\r
- array( 'lhs' => 77, 'rhs' => 6 ),\r
- array( 'lhs' => 77, 'rhs' => 7 ),\r
- array( 'lhs' => 77, 'rhs' => 7 ),\r
- array( 'lhs' => 77, 'rhs' => 6 ),\r
- array( 'lhs' => 77, 'rhs' => 6 ),\r
- array( 'lhs' => 77, 'rhs' => 4 ),\r
- array( 'lhs' => 77, 'rhs' => 4 ),\r
- array( 'lhs' => 77, 'rhs' => 3 ),\r
- array( 'lhs' => 77, 'rhs' => 6 ),\r
- array( 'lhs' => 77, 'rhs' => 6 ),\r
- array( 'lhs' => 77, 'rhs' => 8 ),\r
- array( 'lhs' => 77, 'rhs' => 5 ),\r
- array( 'lhs' => 77, 'rhs' => 5 ),\r
- array( 'lhs' => 77, 'rhs' => 13 ),\r
- array( 'lhs' => 93, 'rhs' => 2 ),\r
- array( 'lhs' => 93, 'rhs' => 1 ),\r
- array( 'lhs' => 77, 'rhs' => 8 ),\r
- array( 'lhs' => 77, 'rhs' => 9 ),\r
- array( 'lhs' => 77, 'rhs' => 8 ),\r
- array( 'lhs' => 77, 'rhs' => 11 ),\r
- array( 'lhs' => 77, 'rhs' => 8 ),\r
- array( 'lhs' => 77, 'rhs' => 11 ),\r
- array( 'lhs' => 77, 'rhs' => 3 ),\r
- array( 'lhs' => 77, 'rhs' => 3 ),\r
- array( 'lhs' => 95, 'rhs' => 1 ),\r
- array( 'lhs' => 95, 'rhs' => 1 ),\r
- array( 'lhs' => 95, 'rhs' => 1 ),\r
- array( 'lhs' => 77, 'rhs' => 4 ),\r
- array( 'lhs' => 77, 'rhs' => 6 ),\r
- array( 'lhs' => 77, 'rhs' => 5 ),\r
- array( 'lhs' => 82, 'rhs' => 2 ),\r
- array( 'lhs' => 82, 'rhs' => 1 ),\r
- array( 'lhs' => 82, 'rhs' => 0 ),\r
+ array( 'lhs' => 79, 'rhs' => 3 ),\r
+ array( 'lhs' => 80, 'rhs' => 2 ),\r
+ array( 'lhs' => 80, 'rhs' => 0 ),\r
+ array( 'lhs' => 81, 'rhs' => 1 ),\r
+ array( 'lhs' => 81, 'rhs' => 1 ),\r
+ array( 'lhs' => 81, 'rhs' => 1 ),\r
+ array( 'lhs' => 81, 'rhs' => 1 ),\r
+ array( 'lhs' => 81, 'rhs' => 1 ),\r
+ array( 'lhs' => 78, 'rhs' => 3 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 6 ),\r
+ array( 'lhs' => 78, 'rhs' => 6 ),\r
+ array( 'lhs' => 78, 'rhs' => 7 ),\r
+ array( 'lhs' => 78, 'rhs' => 7 ),\r
+ array( 'lhs' => 78, 'rhs' => 6 ),\r
+ array( 'lhs' => 78, 'rhs' => 6 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 3 ),\r
+ array( 'lhs' => 78, 'rhs' => 6 ),\r
+ array( 'lhs' => 78, 'rhs' => 6 ),\r
+ array( 'lhs' => 78, 'rhs' => 8 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 12 ),\r
+ array( 'lhs' => 94, 'rhs' => 2 ),\r
+ array( 'lhs' => 94, 'rhs' => 1 ),\r
+ array( 'lhs' => 78, 'rhs' => 7 ),\r
+ array( 'lhs' => 78, 'rhs' => 8 ),\r
+ array( 'lhs' => 78, 'rhs' => 3 ),\r
+ array( 'lhs' => 78, 'rhs' => 7 ),\r
+ array( 'lhs' => 78, 'rhs' => 10 ),\r
+ array( 'lhs' => 78, 'rhs' => 7 ),\r
+ array( 'lhs' => 78, 'rhs' => 10 ),\r
+ array( 'lhs' => 78, 'rhs' => 3 ),\r
+ array( 'lhs' => 78, 'rhs' => 4 ),\r
+ array( 'lhs' => 78, 'rhs' => 6 ),\r
+ array( 'lhs' => 78, 'rhs' => 5 ),\r
+ array( 'lhs' => 83, 'rhs' => 2 ),\r
+ array( 'lhs' => 83, 'rhs' => 1 ),\r
+ array( 'lhs' => 83, 'rhs' => 0 ),\r
array( 'lhs' => 96, 'rhs' => 4 ),\r
array( 'lhs' => 96, 'rhs' => 4 ),\r
array( 'lhs' => 96, 'rhs' => 4 ),\r
array( 'lhs' => 96, 'rhs' => 4 ),\r
array( 'lhs' => 96, 'rhs' => 2 ),\r
array( 'lhs' => 96, 'rhs' => 4 ),\r
- array( 'lhs' => 90, 'rhs' => 1 ),\r
- array( 'lhs' => 90, 'rhs' => 3 ),\r
- array( 'lhs' => 89, 'rhs' => 4 ),\r
+ array( 'lhs' => 91, 'rhs' => 1 ),\r
+ array( 'lhs' => 91, 'rhs' => 3 ),\r
+ array( 'lhs' => 90, 'rhs' => 4 ),\r
+ array( 'lhs' => 85, 'rhs' => 1 ),\r
+ array( 'lhs' => 85, 'rhs' => 4 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 1 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 2 ),\r
+ array( 'lhs' => 85, 'rhs' => 2 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 2 ),\r
+ array( 'lhs' => 85, 'rhs' => 2 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 85, 'rhs' => 3 ),\r
+ array( 'lhs' => 86, 'rhs' => 7 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
+ array( 'lhs' => 82, 'rhs' => 2 ),\r
+ array( 'lhs' => 82, 'rhs' => 2 ),\r
+ array( 'lhs' => 82, 'rhs' => 2 ),\r
+ array( 'lhs' => 82, 'rhs' => 2 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
+ array( 'lhs' => 82, 'rhs' => 3 ),\r
+ array( 'lhs' => 82, 'rhs' => 2 ),\r
+ array( 'lhs' => 82, 'rhs' => 2 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
+ array( 'lhs' => 82, 'rhs' => 3 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
+ array( 'lhs' => 82, 'rhs' => 3 ),\r
+ array( 'lhs' => 82, 'rhs' => 3 ),\r
+ array( 'lhs' => 82, 'rhs' => 1 ),\r
array( 'lhs' => 84, 'rhs' => 1 ),\r
array( 'lhs' => 84, 'rhs' => 4 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
array( 'lhs' => 84, 'rhs' => 1 ),\r
array( 'lhs' => 84, 'rhs' => 3 ),\r
array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 2 ),\r
- array( 'lhs' => 84, 'rhs' => 2 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 2 ),\r
- array( 'lhs' => 84, 'rhs' => 2 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 84, 'rhs' => 3 ),\r
- array( 'lhs' => 85, 'rhs' => 7 ),\r
- array( 'lhs' => 81, 'rhs' => 1 ),\r
- array( 'lhs' => 81, 'rhs' => 2 ),\r
- array( 'lhs' => 81, 'rhs' => 2 ),\r
- array( 'lhs' => 81, 'rhs' => 2 ),\r
- array( 'lhs' => 81, 'rhs' => 2 ),\r
- array( 'lhs' => 81, 'rhs' => 1 ),\r
- array( 'lhs' => 81, 'rhs' => 3 ),\r
- array( 'lhs' => 81, 'rhs' => 1 ),\r
- array( 'lhs' => 81, 'rhs' => 1 ),\r
- array( 'lhs' => 81, 'rhs' => 3 ),\r
- array( 'lhs' => 81, 'rhs' => 1 ),\r
- array( 'lhs' => 81, 'rhs' => 1 ),\r
- array( 'lhs' => 81, 'rhs' => 3 ),\r
- array( 'lhs' => 81, 'rhs' => 1 ),\r
- array( 'lhs' => 83, 'rhs' => 1 ),\r
- array( 'lhs' => 83, 'rhs' => 4 ),\r
- array( 'lhs' => 83, 'rhs' => 1 ),\r
- array( 'lhs' => 83, 'rhs' => 3 ),\r
- array( 'lhs' => 83, 'rhs' => 3 ),\r
- array( 'lhs' => 86, 'rhs' => 3 ),\r
+ array( 'lhs' => 87, 'rhs' => 3 ),\r
array( 'lhs' => 103, 'rhs' => 2 ),\r
array( 'lhs' => 103, 'rhs' => 0 ),\r
array( 'lhs' => 104, 'rhs' => 3 ),\r
array( 'lhs' => 104, 'rhs' => 5 ),\r
array( 'lhs' => 104, 'rhs' => 3 ),\r
array( 'lhs' => 104, 'rhs' => 2 ),\r
- array( 'lhs' => 92, 'rhs' => 1 ),\r
- array( 'lhs' => 92, 'rhs' => 2 ),\r
+ array( 'lhs' => 93, 'rhs' => 1 ),\r
+ array( 'lhs' => 93, 'rhs' => 2 ),\r
array( 'lhs' => 105, 'rhs' => 1 ),\r
array( 'lhs' => 105, 'rhs' => 3 ),\r
array( 'lhs' => 102, 'rhs' => 2 ),\r
- array( 'lhs' => 102, 'rhs' => 3 ),\r
array( 'lhs' => 106, 'rhs' => 1 ),\r
array( 'lhs' => 106, 'rhs' => 2 ),\r
array( 'lhs' => 107, 'rhs' => 3 ),\r
- array( 'lhs' => 107, 'rhs' => 3 ),\r
+ array( 'lhs' => 107, 'rhs' => 4 ),\r
array( 'lhs' => 107, 'rhs' => 5 ),\r
array( 'lhs' => 107, 'rhs' => 6 ),\r
array( 'lhs' => 107, 'rhs' => 2 ),\r
array( 'lhs' => 99, 'rhs' => 4 ),\r
array( 'lhs' => 108, 'rhs' => 4 ),\r
+ array( 'lhs' => 108, 'rhs' => 5 ),\r
array( 'lhs' => 109, 'rhs' => 3 ),\r
array( 'lhs' => 109, 'rhs' => 1 ),\r
array( 'lhs' => 109, 'rhs' => 0 ),\r
- array( 'lhs' => 87, 'rhs' => 3 ),\r
- array( 'lhs' => 87, 'rhs' => 2 ),\r
+ array( 'lhs' => 88, 'rhs' => 3 ),\r
+ array( 'lhs' => 88, 'rhs' => 2 ),\r
array( 'lhs' => 101, 'rhs' => 1 ),\r
- array( 'lhs' => 101, 'rhs' => 5 ),\r
array( 'lhs' => 101, 'rhs' => 2 ),\r
- array( 'lhs' => 101, 'rhs' => 6 ),\r
array( 'lhs' => 101, 'rhs' => 1 ),\r
array( 'lhs' => 101, 'rhs' => 3 ),\r
array( 'lhs' => 101, 'rhs' => 4 ),\r
- array( 'lhs' => 88, 'rhs' => 2 ),\r
- array( 'lhs' => 88, 'rhs' => 0 ),\r
+ array( 'lhs' => 89, 'rhs' => 2 ),\r
+ array( 'lhs' => 89, 'rhs' => 0 ),\r
array( 'lhs' => 110, 'rhs' => 2 ),\r
array( 'lhs' => 110, 'rhs' => 2 ),\r
array( 'lhs' => 97, 'rhs' => 1 ),\r
array( 'lhs' => 98, 'rhs' => 1 ),\r
array( 'lhs' => 98, 'rhs' => 1 ),\r
array( 'lhs' => 98, 'rhs' => 1 ),\r
- array( 'lhs' => 94, 'rhs' => 3 ),\r
+ array( 'lhs' => 95, 'rhs' => 3 ),\r
array( 'lhs' => 111, 'rhs' => 1 ),\r
array( 'lhs' => 111, 'rhs' => 3 ),\r
array( 'lhs' => 111, 'rhs' => 0 ),\r
array( 'lhs' => 114, 'rhs' => 3 ),\r
array( 'lhs' => 114, 'rhs' => 1 ),\r
array( 'lhs' => 114, 'rhs' => 1 ),\r
- array( 'lhs' => 91, 'rhs' => 1 ),\r
- array( 'lhs' => 91, 'rhs' => 0 ),\r
+ array( 'lhs' => 92, 'rhs' => 1 ),\r
+ array( 'lhs' => 92, 'rhs' => 0 ),\r
);\r
\r
static public $yyReduceMap = array(\r
5 => 0,\r
15 => 0,\r
16 => 0,\r
- 50 => 0,\r
- 51 => 0,\r
- 52 => 0,\r
- 68 => 0,\r
- 92 => 0,\r
- 97 => 0,\r
- 100 => 0,\r
+ 64 => 0,\r
+ 88 => 0,\r
+ 93 => 0,\r
+ 94 => 0,\r
+ 99 => 0,\r
+ 101 => 0,\r
102 => 0,\r
- 103 => 0,\r
108 => 0,\r
143 => 0,\r
- 167 => 0,\r
+ 165 => 0,\r
1 => 1,\r
2 => 2,\r
3 => 3,\r
14 => 11,\r
12 => 12,\r
13 => 13,\r
- 93 => 13,\r
- 95 => 13,\r
- 96 => 13,\r
- 145 => 13,\r
+ 89 => 13,\r
+ 91 => 13,\r
+ 92 => 13,\r
+ 144 => 13,\r
17 => 17,\r
18 => 17,\r
19 => 19,\r
29 => 29,\r
30 => 29,\r
31 => 31,\r
- 32 => 31,\r
+ 32 => 32,\r
33 => 33,\r
34 => 34,\r
35 => 35,\r
36 => 36,\r
- 37 => 37,\r
- 38 => 37,\r
+ 37 => 36,\r
+ 38 => 38,\r
39 => 39,\r
40 => 40,\r
+ 53 => 40,\r
+ 139 => 40,\r
+ 145 => 40,\r
+ 170 => 40,\r
41 => 41,\r
- 57 => 41,\r
- 139 => 41,\r
- 147 => 41,\r
- 172 => 41,\r
42 => 42,\r
43 => 43,\r
44 => 44,\r
46 => 46,\r
47 => 47,\r
48 => 48,\r
- 49 => 48,\r
- 53 => 53,\r
+ 49 => 49,\r
+ 50 => 50,\r
+ 51 => 51,\r
+ 52 => 52,\r
54 => 54,\r
55 => 55,\r
56 => 56,\r
- 58 => 58,\r
+ 57 => 56,\r
+ 58 => 56,\r
59 => 59,\r
60 => 60,\r
- 61 => 60,\r
- 62 => 60,\r
- 64 => 60,\r
+ 61 => 61,\r
+ 62 => 62,\r
63 => 63,\r
65 => 65,\r
66 => 66,\r
- 67 => 67,\r
+ 67 => 66,\r
+ 68 => 66,\r
69 => 69,\r
+ 123 => 69,\r
+ 182 => 69,\r
70 => 70,\r
- 71 => 70,\r
- 72 => 70,\r
+ 71 => 71,\r
+ 74 => 71,\r
+ 85 => 71,\r
+ 72 => 72,\r
73 => 73,\r
- 123 => 73,\r
- 184 => 73,\r
- 74 => 74,\r
75 => 75,\r
- 78 => 75,\r
- 89 => 75,\r
76 => 76,\r
77 => 77,\r
+ 82 => 77,\r
+ 78 => 78,\r
+ 81 => 78,\r
79 => 79,\r
+ 84 => 79,\r
80 => 80,\r
- 81 => 81,\r
- 86 => 81,\r
- 82 => 82,\r
- 85 => 82,\r
- 83 => 83,\r
- 88 => 83,\r
- 84 => 84,\r
- 87 => 84,\r
+ 83 => 80,\r
+ 86 => 86,\r
+ 87 => 87,\r
90 => 90,\r
- 91 => 91,\r
- 94 => 94,\r
+ 95 => 95,\r
+ 96 => 96,\r
+ 97 => 97,\r
98 => 98,\r
- 99 => 99,\r
- 101 => 101,\r
+ 100 => 100,\r
+ 103 => 103,\r
104 => 104,\r
105 => 105,\r
106 => 106,\r
111 => 111,\r
112 => 112,\r
113 => 113,\r
- 151 => 113,\r
+ 149 => 113,\r
114 => 114,\r
115 => 115,\r
116 => 116,\r
119 => 119,\r
120 => 120,\r
122 => 122,\r
- 185 => 122,\r
+ 183 => 122,\r
124 => 124,\r
125 => 125,\r
126 => 126,\r
140 => 140,\r
141 => 141,\r
142 => 141,\r
- 144 => 144,\r
146 => 146,\r
+ 147 => 147,\r
148 => 148,\r
- 149 => 149,\r
150 => 150,\r
+ 151 => 150,\r
152 => 152,\r
- 153 => 152,\r
+ 153 => 153,\r
154 => 154,\r
155 => 155,\r
156 => 156,\r
162 => 162,\r
163 => 163,\r
164 => 164,\r
- 165 => 165,\r
166 => 166,\r
+ 167 => 167,\r
168 => 168,\r
169 => 169,\r
- 170 => 170,\r
171 => 171,\r
+ 172 => 172,\r
173 => 173,\r
174 => 174,\r
175 => 175,\r
- 176 => 176,\r
+ 176 => 175,\r
+ 178 => 175,\r
177 => 177,\r
- 178 => 177,\r
- 180 => 177,\r
179 => 179,\r
+ 180 => 180,\r
181 => 181,\r
- 182 => 182,\r
- 183 => 183,\r
);\r
-#line 85 "smarty_internal_templateparser.y"\r
- function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
-#line 1925 "smarty_internal_templateparser.php"\r
#line 91 "smarty_internal_templateparser.y"\r
+ function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
+#line 1974 "smarty_internal_templateparser.php"\r
+#line 97 "smarty_internal_templateparser.y"\r
function yy_r1(){if ($this->template->extract_code == false) {\r
$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;\r
} else {\r
$this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor;\r
} \r
}\r
-#line 1934 "smarty_internal_templateparser.php"\r
-#line 99 "smarty_internal_templateparser.y"\r
+#line 1983 "smarty_internal_templateparser.php"\r
+#line 105 "smarty_internal_templateparser.y"\r
function yy_r2(){if ($this->template->extract_code == false) {\r
$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;\r
} else {\r
$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;\r
} \r
}\r
-#line 1944 "smarty_internal_templateparser.php"\r
-#line 112 "smarty_internal_templateparser.y"\r
+#line 1993 "smarty_internal_templateparser.php"\r
+#line 118 "smarty_internal_templateparser.y"\r
function yy_r3(){\r
if ($this->compiler->has_code) {\r
$tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array();\r
$this->compiler->has_variable_string = false;\r
$this->block_nesting_level = count($this->compiler->_tag_stack);\r
}\r
-#line 1956 "smarty_internal_templateparser.php"\r
-#line 124 "smarty_internal_templateparser.y"\r
- function yy_r4(){ $this->_retvalue = ''; }\r
-#line 1959 "smarty_internal_templateparser.php"\r
+#line 2005 "smarty_internal_templateparser.php"\r
#line 130 "smarty_internal_templateparser.y"\r
+ function yy_r4(){ $this->_retvalue = ''; }\r
+#line 2008 "smarty_internal_templateparser.php"\r
+#line 136 "smarty_internal_templateparser.y"\r
function yy_r6(){\r
if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {\r
$this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor);\r
$this->_retvalue = '';\r
}\r
}\r
-#line 1972 "smarty_internal_templateparser.php"\r
-#line 142 "smarty_internal_templateparser.y"\r
+#line 2021 "smarty_internal_templateparser.php"\r
+#line 148 "smarty_internal_templateparser.y"\r
function yy_r7(){if ($this->is_xml) {\r
$this->compiler->tag_nocache = true; \r
$this->is_xml = true; \r
$this->_retvalue = '';\r
}\r
}\r
-#line 1988 "smarty_internal_templateparser.php"\r
-#line 157 "smarty_internal_templateparser.y"\r
+#line 2037 "smarty_internal_templateparser.php"\r
+#line 163 "smarty_internal_templateparser.y"\r
function yy_r8(){if ($this->lex->strip) {\r
$this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); \r
} else {\r
$this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); \r
}\r
}\r
-#line 1996 "smarty_internal_templateparser.php"\r
-#line 165 "smarty_internal_templateparser.y"\r
+#line 2045 "smarty_internal_templateparser.php"\r
+#line 171 "smarty_internal_templateparser.y"\r
function yy_r9(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = $this->compiler->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true); }\r
-#line 1999 "smarty_internal_templateparser.php"\r
-#line 168 "smarty_internal_templateparser.y"\r
+#line 2048 "smarty_internal_templateparser.php"\r
+#line 174 "smarty_internal_templateparser.y"\r
function yy_r10(){if ($this->lex->strip) {\r
$this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); \r
} else {\r
$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; \r
}\r
}\r
-#line 2007 "smarty_internal_templateparser.php"\r
-#line 176 "smarty_internal_templateparser.y"\r
+#line 2056 "smarty_internal_templateparser.php"\r
+#line 182 "smarty_internal_templateparser.y"\r
function yy_r11(){ $this->_retvalue = ''; }\r
-#line 2010 "smarty_internal_templateparser.php"\r
-#line 177 "smarty_internal_templateparser.y"\r
+#line 2059 "smarty_internal_templateparser.php"\r
+#line 183 "smarty_internal_templateparser.y"\r
function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }\r
-#line 2013 "smarty_internal_templateparser.php"\r
-#line 179 "smarty_internal_templateparser.y"\r
+#line 2062 "smarty_internal_templateparser.php"\r
+#line 185 "smarty_internal_templateparser.y"\r
function yy_r13(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2016 "smarty_internal_templateparser.php"\r
-#line 184 "smarty_internal_templateparser.y"\r
+#line 2065 "smarty_internal_templateparser.php"\r
+#line 190 "smarty_internal_templateparser.y"\r
function yy_r17(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2019 "smarty_internal_templateparser.php"\r
-#line 186 "smarty_internal_templateparser.y"\r
+#line 2068 "smarty_internal_templateparser.php"\r
+#line 192 "smarty_internal_templateparser.y"\r
function yy_r19(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2022 "smarty_internal_templateparser.php"\r
-#line 194 "smarty_internal_templateparser.y"\r
+#line 2071 "smarty_internal_templateparser.php"\r
+#line 200 "smarty_internal_templateparser.y"\r
function yy_r20(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2025 "smarty_internal_templateparser.php"\r
-#line 195 "smarty_internal_templateparser.y"\r
+#line 2074 "smarty_internal_templateparser.php"\r
+#line 201 "smarty_internal_templateparser.y"\r
function yy_r21(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2028 "smarty_internal_templateparser.php"\r
-#line 206 "smarty_internal_templateparser.y"\r
+#line 2077 "smarty_internal_templateparser.php"\r
+#line 212 "smarty_internal_templateparser.y"\r
function yy_r25(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); }\r
-#line 2031 "smarty_internal_templateparser.php"\r
-#line 208 "smarty_internal_templateparser.y"\r
+#line 2080 "smarty_internal_templateparser.php"\r
+#line 214 "smarty_internal_templateparser.y"\r
function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2034 "smarty_internal_templateparser.php"\r
-#line 210 "smarty_internal_templateparser.y"\r
+#line 2083 "smarty_internal_templateparser.php"\r
+#line 216 "smarty_internal_templateparser.y"\r
function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2037 "smarty_internal_templateparser.php"\r
-#line 213 "smarty_internal_templateparser.y"\r
- function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }\r
-#line 2040 "smarty_internal_templateparser.php"\r
-#line 215 "smarty_internal_templateparser.y"\r
- function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); }\r
-#line 2043 "smarty_internal_templateparser.php"\r
-#line 217 "smarty_internal_templateparser.y"\r
- function yy_r34(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2046 "smarty_internal_templateparser.php"\r
+#line 2086 "smarty_internal_templateparser.php"\r
#line 219 "smarty_internal_templateparser.y"\r
- function yy_r35(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';\r
+ function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }\r
+#line 2089 "smarty_internal_templateparser.php"\r
+#line 220 "smarty_internal_templateparser.y"\r
+ function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); }\r
+#line 2092 "smarty_internal_templateparser.php"\r
+#line 222 "smarty_internal_templateparser.y"\r
+ function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2095 "smarty_internal_templateparser.php"\r
+#line 224 "smarty_internal_templateparser.y"\r
+ function yy_r34(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';\r
$this->_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>';\r
}\r
-#line 2051 "smarty_internal_templateparser.php"\r
-#line 223 "smarty_internal_templateparser.y"\r
- function yy_r36(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'<?php echo ';\r
+#line 2100 "smarty_internal_templateparser.php"\r
+#line 228 "smarty_internal_templateparser.y"\r
+ function yy_r35(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'<?php echo ';\r
$this->_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>';\r
}\r
-#line 2056 "smarty_internal_templateparser.php"\r
-#line 227 "smarty_internal_templateparser.y"\r
- function yy_r37(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2059 "smarty_internal_templateparser.php"\r
-#line 230 "smarty_internal_templateparser.y"\r
- function yy_r39(){\r
- $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2063 "smarty_internal_templateparser.php"\r
-#line 233 "smarty_internal_templateparser.y"\r
- function yy_r40(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2066 "smarty_internal_templateparser.php"\r
-#line 234 "smarty_internal_templateparser.y"\r
- function yy_r41(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2069 "smarty_internal_templateparser.php"\r
+#line 2105 "smarty_internal_templateparser.php"\r
+#line 232 "smarty_internal_templateparser.y"\r
+ function yy_r36(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2108 "smarty_internal_templateparser.php"\r
#line 235 "smarty_internal_templateparser.y"\r
- function yy_r42(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2072 "smarty_internal_templateparser.php"\r
-#line 236 "smarty_internal_templateparser.y"\r
- function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -7]->minor,array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2075 "smarty_internal_templateparser.php"\r
+ function yy_r38(){\r
+ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2112 "smarty_internal_templateparser.php"\r
#line 238 "smarty_internal_templateparser.y"\r
- function yy_r44(){\r
- $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2079 "smarty_internal_templateparser.php"\r
+ function yy_r39(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2115 "smarty_internal_templateparser.php"\r
+#line 239 "smarty_internal_templateparser.y"\r
+ function yy_r40(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2118 "smarty_internal_templateparser.php"\r
#line 240 "smarty_internal_templateparser.y"\r
+ function yy_r41(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2121 "smarty_internal_templateparser.php"\r
+#line 241 "smarty_internal_templateparser.y"\r
+ function yy_r42(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2124 "smarty_internal_templateparser.php"\r
+#line 243 "smarty_internal_templateparser.y"\r
+ function yy_r43(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); }\r
+#line 2127 "smarty_internal_templateparser.php"\r
+#line 245 "smarty_internal_templateparser.y"\r
+ function yy_r44(){\r
+ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2131 "smarty_internal_templateparser.php"\r
+#line 247 "smarty_internal_templateparser.y"\r
function yy_r45(){\r
- $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }\r
-#line 2083 "smarty_internal_templateparser.php"\r
-#line 242 "smarty_internal_templateparser.y"\r
+ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }\r
+#line 2135 "smarty_internal_templateparser.php"\r
+#line 249 "smarty_internal_templateparser.y"\r
function yy_r46(){ \r
- $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2087 "smarty_internal_templateparser.php"\r
-#line 244 "smarty_internal_templateparser.y"\r
+ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2139 "smarty_internal_templateparser.php"\r
+#line 251 "smarty_internal_templateparser.y"\r
function yy_r47(){ \r
- $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }\r
-#line 2091 "smarty_internal_templateparser.php"\r
-#line 248 "smarty_internal_templateparser.y"\r
+ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }\r
+#line 2143 "smarty_internal_templateparser.php"\r
+#line 255 "smarty_internal_templateparser.y"\r
function yy_r48(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); }\r
-#line 2094 "smarty_internal_templateparser.php"\r
-#line 253 "smarty_internal_templateparser.y"\r
- function yy_r53(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); }\r
-#line 2097 "smarty_internal_templateparser.php"\r
-#line 254 "smarty_internal_templateparser.y"\r
- function yy_r54(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';\r
+#line 2146 "smarty_internal_templateparser.php"\r
+#line 256 "smarty_internal_templateparser.y"\r
+ function yy_r49(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); }\r
+#line 2149 "smarty_internal_templateparser.php"\r
+#line 257 "smarty_internal_templateparser.y"\r
+ function yy_r50(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';\r
$this->_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>';\r
}\r
-#line 2102 "smarty_internal_templateparser.php"\r
-#line 258 "smarty_internal_templateparser.y"\r
- function yy_r55(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
-#line 2105 "smarty_internal_templateparser.php"\r
-#line 265 "smarty_internal_templateparser.y"\r
- function yy_r56(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2108 "smarty_internal_templateparser.php"\r
-#line 269 "smarty_internal_templateparser.y"\r
- function yy_r58(){ $this->_retvalue = array(); }\r
-#line 2111 "smarty_internal_templateparser.php"\r
+#line 2154 "smarty_internal_templateparser.php"\r
+#line 261 "smarty_internal_templateparser.y"\r
+ function yy_r51(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }\r
+#line 2157 "smarty_internal_templateparser.php"\r
+#line 268 "smarty_internal_templateparser.y"\r
+ function yy_r52(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[key($this->yystack[$this->yyidx + 0]->minor)] = $this->yystack[$this->yyidx + 0]->minor[key($this->yystack[$this->yyidx + 0]->minor)]; }\r
+#line 2160 "smarty_internal_templateparser.php"\r
#line 272 "smarty_internal_templateparser.y"\r
- function yy_r59(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {\r
+ function yy_r54(){ $this->_retvalue = array(); }\r
+#line 2163 "smarty_internal_templateparser.php"\r
+#line 275 "smarty_internal_templateparser.y"\r
+ function yy_r55(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {\r
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true');\r
} elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {\r
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'false');\r
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null');\r
} else\r
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); }\r
-#line 2121 "smarty_internal_templateparser.php"\r
-#line 280 "smarty_internal_templateparser.y"\r
- function yy_r60(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2124 "smarty_internal_templateparser.php"\r
+#line 2173 "smarty_internal_templateparser.php"\r
#line 283 "smarty_internal_templateparser.y"\r
- function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); }\r
-#line 2127 "smarty_internal_templateparser.php"\r
-#line 290 "smarty_internal_templateparser.y"\r
- function yy_r65(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2130 "smarty_internal_templateparser.php"\r
-#line 291 "smarty_internal_templateparser.y"\r
- function yy_r66(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }\r
-#line 2133 "smarty_internal_templateparser.php"\r
+ function yy_r56(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }\r
+#line 2176 "smarty_internal_templateparser.php"\r
+#line 286 "smarty_internal_templateparser.y"\r
+ function yy_r59(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); }\r
+#line 2179 "smarty_internal_templateparser.php"\r
+#line 287 "smarty_internal_templateparser.y"\r
+ function yy_r60(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }\r
+#line 2182 "smarty_internal_templateparser.php"\r
#line 293 "smarty_internal_templateparser.y"\r
- function yy_r67(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2136 "smarty_internal_templateparser.php"\r
-#line 302 "smarty_internal_templateparser.y"\r
- function yy_r69(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }\r
-#line 2139 "smarty_internal_templateparser.php"\r
-#line 304 "smarty_internal_templateparser.y"\r
- function yy_r70(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2142 "smarty_internal_templateparser.php"\r
-#line 310 "smarty_internal_templateparser.y"\r
- function yy_r73(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2145 "smarty_internal_templateparser.php"\r
+ function yy_r61(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }\r
+#line 2185 "smarty_internal_templateparser.php"\r
+#line 294 "smarty_internal_templateparser.y"\r
+ function yy_r62(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }\r
+#line 2188 "smarty_internal_templateparser.php"\r
+#line 296 "smarty_internal_templateparser.y"\r
+ function yy_r63(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }\r
+#line 2191 "smarty_internal_templateparser.php"\r
+#line 305 "smarty_internal_templateparser.y"\r
+ function yy_r65(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }\r
+#line 2194 "smarty_internal_templateparser.php"\r
+#line 307 "smarty_internal_templateparser.y"\r
+ function yy_r66(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2197 "smarty_internal_templateparser.php"\r
#line 313 "smarty_internal_templateparser.y"\r
- function yy_r74(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); }\r
-#line 2148 "smarty_internal_templateparser.php"\r
-#line 317 "smarty_internal_templateparser.y"\r
- function yy_r75(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2151 "smarty_internal_templateparser.php"\r
-#line 318 "smarty_internal_templateparser.y"\r
- function yy_r76(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
-#line 2154 "smarty_internal_templateparser.php"\r
-#line 319 "smarty_internal_templateparser.y"\r
- function yy_r77(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
-#line 2157 "smarty_internal_templateparser.php"\r
+ function yy_r69(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2200 "smarty_internal_templateparser.php"\r
+#line 316 "smarty_internal_templateparser.y"\r
+ function yy_r70(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); }\r
+#line 2203 "smarty_internal_templateparser.php"\r
+#line 320 "smarty_internal_templateparser.y"\r
+ function yy_r71(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2206 "smarty_internal_templateparser.php"\r
#line 321 "smarty_internal_templateparser.y"\r
- function yy_r79(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
-#line 2160 "smarty_internal_templateparser.php"\r
+ function yy_r72(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
+#line 2209 "smarty_internal_templateparser.php"\r
#line 322 "smarty_internal_templateparser.y"\r
- function yy_r80(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
-#line 2163 "smarty_internal_templateparser.php"\r
-#line 323 "smarty_internal_templateparser.y"\r
- function yy_r81(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }\r
-#line 2166 "smarty_internal_templateparser.php"\r
+ function yy_r73(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
+#line 2212 "smarty_internal_templateparser.php"\r
#line 324 "smarty_internal_templateparser.y"\r
- function yy_r82(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }\r
-#line 2169 "smarty_internal_templateparser.php"\r
+ function yy_r75(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
+#line 2215 "smarty_internal_templateparser.php"\r
#line 325 "smarty_internal_templateparser.y"\r
- function yy_r83(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
-#line 2172 "smarty_internal_templateparser.php"\r
+ function yy_r76(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
+#line 2218 "smarty_internal_templateparser.php"\r
#line 326 "smarty_internal_templateparser.y"\r
- function yy_r84(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
-#line 2175 "smarty_internal_templateparser.php"\r
-#line 332 "smarty_internal_templateparser.y"\r
- function yy_r90(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; }\r
-#line 2178 "smarty_internal_templateparser.php"\r
-#line 338 "smarty_internal_templateparser.y"\r
- function yy_r91(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2181 "smarty_internal_templateparser.php"\r
-#line 345 "smarty_internal_templateparser.y"\r
- function yy_r94(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2184 "smarty_internal_templateparser.php"\r
-#line 350 "smarty_internal_templateparser.y"\r
- function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2187 "smarty_internal_templateparser.php"\r
-#line 352 "smarty_internal_templateparser.y"\r
- function yy_r99(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {\r
+ function yy_r77(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }\r
+#line 2221 "smarty_internal_templateparser.php"\r
+#line 327 "smarty_internal_templateparser.y"\r
+ function yy_r78(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }\r
+#line 2224 "smarty_internal_templateparser.php"\r
+#line 328 "smarty_internal_templateparser.y"\r
+ function yy_r79(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
+#line 2227 "smarty_internal_templateparser.php"\r
+#line 329 "smarty_internal_templateparser.y"\r
+ function yy_r80(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }\r
+#line 2230 "smarty_internal_templateparser.php"\r
+#line 335 "smarty_internal_templateparser.y"\r
+ function yy_r86(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; }\r
+#line 2233 "smarty_internal_templateparser.php"\r
+#line 341 "smarty_internal_templateparser.y"\r
+ function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2236 "smarty_internal_templateparser.php"\r
+#line 348 "smarty_internal_templateparser.y"\r
+ function yy_r90(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2239 "smarty_internal_templateparser.php"\r
+#line 354 "smarty_internal_templateparser.y"\r
+ function yy_r95(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2242 "smarty_internal_templateparser.php"\r
+#line 355 "smarty_internal_templateparser.y"\r
+ function yy_r96(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; }\r
+#line 2245 "smarty_internal_templateparser.php"\r
+#line 356 "smarty_internal_templateparser.y"\r
+ function yy_r97(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2248 "smarty_internal_templateparser.php"\r
+#line 358 "smarty_internal_templateparser.y"\r
+ function yy_r98(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {\r
$this->_retvalue = 'true';\r
} elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {\r
$this->_retvalue = 'false';\r
$this->_retvalue = 'null';\r
} else\r
$this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; }\r
-#line 2197 "smarty_internal_templateparser.php"\r
-#line 363 "smarty_internal_templateparser.y"\r
- function yy_r101(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }\r
-#line 2200 "smarty_internal_templateparser.php"\r
+#line 2258 "smarty_internal_templateparser.php"\r
#line 369 "smarty_internal_templateparser.y"\r
- function yy_r104(){if (!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) {\r
+ function yy_r100(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }\r
+#line 2261 "smarty_internal_templateparser.php"\r
+#line 375 "smarty_internal_templateparser.y"\r
+ function yy_r103(){if (!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) {\r
$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; \r
} }\r
-#line 2205 "smarty_internal_templateparser.php"\r
-#line 373 "smarty_internal_templateparser.y"\r
+#line 2266 "smarty_internal_templateparser.php"\r
+#line 378 "smarty_internal_templateparser.y"\r
+ function yy_r104(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else {\r
+ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} }\r
+#line 2270 "smarty_internal_templateparser.php"\r
+#line 381 "smarty_internal_templateparser.y"\r
function yy_r105(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; }\r
-#line 2208 "smarty_internal_templateparser.php"\r
-#line 382 "smarty_internal_templateparser.y"\r
+#line 2273 "smarty_internal_templateparser.php"\r
+#line 390 "smarty_internal_templateparser.y"\r
function yy_r106(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);\r
} else {\r
if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + 0]->minor['var']])) {\r
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];\r
}\r
$this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} }\r
-#line 2218 "smarty_internal_templateparser.php"\r
-#line 391 "smarty_internal_templateparser.y"\r
+#line 2283 "smarty_internal_templateparser.php"\r
+#line 399 "smarty_internal_templateparser.y"\r
function yy_r107(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) {\r
$this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor;\r
} else {\r
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor;\r
}\r
$this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; }\r
-#line 2226 "smarty_internal_templateparser.php"\r
-#line 400 "smarty_internal_templateparser.y"\r
+#line 2291 "smarty_internal_templateparser.php"\r
+#line 408 "smarty_internal_templateparser.y"\r
function yy_r109(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; }\r
-#line 2229 "smarty_internal_templateparser.php"\r
-#line 401 "smarty_internal_templateparser.y"\r
+#line 2294 "smarty_internal_templateparser.php"\r
+#line 409 "smarty_internal_templateparser.y"\r
function yy_r110(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; }\r
-#line 2232 "smarty_internal_templateparser.php"\r
-#line 404 "smarty_internal_templateparser.y"\r
+#line 2297 "smarty_internal_templateparser.php"\r
+#line 412 "smarty_internal_templateparser.y"\r
function yy_r111(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2235 "smarty_internal_templateparser.php"\r
-#line 410 "smarty_internal_templateparser.y"\r
+#line 2300 "smarty_internal_templateparser.php"\r
+#line 418 "smarty_internal_templateparser.y"\r
function yy_r112(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2238 "smarty_internal_templateparser.php"\r
-#line 412 "smarty_internal_templateparser.y"\r
+#line 2303 "smarty_internal_templateparser.php"\r
+#line 420 "smarty_internal_templateparser.y"\r
function yy_r113(){return; }\r
-#line 2241 "smarty_internal_templateparser.php"\r
-#line 416 "smarty_internal_templateparser.y"\r
+#line 2306 "smarty_internal_templateparser.php"\r
+#line 424 "smarty_internal_templateparser.y"\r
function yy_r114(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; }\r
-#line 2244 "smarty_internal_templateparser.php"\r
-#line 417 "smarty_internal_templateparser.y"\r
+#line 2309 "smarty_internal_templateparser.php"\r
+#line 425 "smarty_internal_templateparser.y"\r
function yy_r115(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; }\r
-#line 2247 "smarty_internal_templateparser.php"\r
-#line 418 "smarty_internal_templateparser.y"\r
+#line 2312 "smarty_internal_templateparser.php"\r
+#line 426 "smarty_internal_templateparser.y"\r
function yy_r116(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; }\r
-#line 2250 "smarty_internal_templateparser.php"\r
-#line 419 "smarty_internal_templateparser.y"\r
+#line 2315 "smarty_internal_templateparser.php"\r
+#line 427 "smarty_internal_templateparser.y"\r
function yy_r117(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; }\r
-#line 2253 "smarty_internal_templateparser.php"\r
-#line 420 "smarty_internal_templateparser.y"\r
+#line 2318 "smarty_internal_templateparser.php"\r
+#line 428 "smarty_internal_templateparser.y"\r
function yy_r118(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; }\r
-#line 2256 "smarty_internal_templateparser.php"\r
-#line 422 "smarty_internal_templateparser.y"\r
+#line 2321 "smarty_internal_templateparser.php"\r
+#line 430 "smarty_internal_templateparser.y"\r
function yy_r119(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; }\r
-#line 2259 "smarty_internal_templateparser.php"\r
-#line 423 "smarty_internal_templateparser.y"\r
+#line 2324 "smarty_internal_templateparser.php"\r
+#line 431 "smarty_internal_templateparser.y"\r
function yy_r120(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; }\r
-#line 2262 "smarty_internal_templateparser.php"\r
-#line 427 "smarty_internal_templateparser.y"\r
- function yy_r122(){$this->_retvalue = ''; }\r
-#line 2265 "smarty_internal_templateparser.php"\r
+#line 2327 "smarty_internal_templateparser.php"\r
#line 435 "smarty_internal_templateparser.y"\r
+ function yy_r122(){$this->_retvalue = ''; }\r
+#line 2330 "smarty_internal_templateparser.php"\r
+#line 443 "smarty_internal_templateparser.y"\r
function yy_r124(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2268 "smarty_internal_templateparser.php"\r
-#line 437 "smarty_internal_templateparser.y"\r
+#line 2333 "smarty_internal_templateparser.php"\r
+#line 445 "smarty_internal_templateparser.y"\r
function yy_r125(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }\r
-#line 2271 "smarty_internal_templateparser.php"\r
-#line 439 "smarty_internal_templateparser.y"\r
+#line 2336 "smarty_internal_templateparser.php"\r
+#line 447 "smarty_internal_templateparser.y"\r
function yy_r126(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; }\r
-#line 2274 "smarty_internal_templateparser.php"\r
-#line 444 "smarty_internal_templateparser.y"\r
+#line 2339 "smarty_internal_templateparser.php"\r
+#line 452 "smarty_internal_templateparser.y"\r
function yy_r127(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else {\r
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} }\r
-#line 2278 "smarty_internal_templateparser.php"\r
-#line 446 "smarty_internal_templateparser.y"\r
- function yy_r128(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else {\r
- $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} }\r
-#line 2282 "smarty_internal_templateparser.php"\r
-#line 449 "smarty_internal_templateparser.y"\r
- function yy_r129(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2285 "smarty_internal_templateparser.php"\r
-#line 451 "smarty_internal_templateparser.y"\r
- function yy_r130(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2288 "smarty_internal_templateparser.php"\r
-#line 453 "smarty_internal_templateparser.y"\r
- function yy_r131(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2291 "smarty_internal_templateparser.php"\r
-#line 454 "smarty_internal_templateparser.y"\r
- function yy_r132(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }\r
-#line 2294 "smarty_internal_templateparser.php"\r
+#line 2343 "smarty_internal_templateparser.php"\r
#line 455 "smarty_internal_templateparser.y"\r
- function yy_r133(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }\r
-#line 2297 "smarty_internal_templateparser.php"\r
-#line 456 "smarty_internal_templateparser.y"\r
- function yy_r134(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }\r
-#line 2300 "smarty_internal_templateparser.php"\r
-#line 458 "smarty_internal_templateparser.y"\r
- function yy_r135(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2303 "smarty_internal_templateparser.php"\r
+ function yy_r128(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2346 "smarty_internal_templateparser.php"\r
+#line 457 "smarty_internal_templateparser.y"\r
+ function yy_r129(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2349 "smarty_internal_templateparser.php"\r
+#line 459 "smarty_internal_templateparser.y"\r
+ function yy_r130(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2352 "smarty_internal_templateparser.php"\r
+#line 460 "smarty_internal_templateparser.y"\r
+ function yy_r131(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; }\r
+#line 2355 "smarty_internal_templateparser.php"\r
+#line 461 "smarty_internal_templateparser.y"\r
+ function yy_r132(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }\r
+#line 2358 "smarty_internal_templateparser.php"\r
+#line 462 "smarty_internal_templateparser.y"\r
+ function yy_r133(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }\r
+#line 2361 "smarty_internal_templateparser.php"\r
#line 464 "smarty_internal_templateparser.y"\r
- function yy_r136(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {\r
+ function yy_r134(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2364 "smarty_internal_templateparser.php"\r
+#line 470 "smarty_internal_templateparser.y"\r
+ function yy_r135(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {\r
if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) {\r
$this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")";\r
} else {\r
$this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");\r
}\r
} }\r
-#line 2312 "smarty_internal_templateparser.php"\r
-#line 475 "smarty_internal_templateparser.y"\r
- function yy_r137(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; }\r
-#line 2315 "smarty_internal_templateparser.php"\r
-#line 479 "smarty_internal_templateparser.y"\r
+#line 2373 "smarty_internal_templateparser.php"\r
+#line 481 "smarty_internal_templateparser.y"\r
+ function yy_r136(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; }\r
+#line 2376 "smarty_internal_templateparser.php"\r
+#line 482 "smarty_internal_templateparser.y"\r
+ function yy_r137(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; }\r
+#line 2379 "smarty_internal_templateparser.php"\r
+#line 486 "smarty_internal_templateparser.y"\r
function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2318 "smarty_internal_templateparser.php"\r
-#line 483 "smarty_internal_templateparser.y"\r
+#line 2382 "smarty_internal_templateparser.php"\r
+#line 490 "smarty_internal_templateparser.y"\r
function yy_r140(){ return; }\r
-#line 2321 "smarty_internal_templateparser.php"\r
-#line 488 "smarty_internal_templateparser.y"\r
+#line 2385 "smarty_internal_templateparser.php"\r
+#line 495 "smarty_internal_templateparser.y"\r
function yy_r141(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2324 "smarty_internal_templateparser.php"\r
-#line 493 "smarty_internal_templateparser.y"\r
- function yy_r144(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; }\r
-#line 2327 "smarty_internal_templateparser.php"\r
-#line 496 "smarty_internal_templateparser.y"\r
- function yy_r146(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2330 "smarty_internal_templateparser.php"\r
-#line 500 "smarty_internal_templateparser.y"\r
- function yy_r148(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2333 "smarty_internal_templateparser.php"\r
-#line 502 "smarty_internal_templateparser.y"\r
- function yy_r149(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2336 "smarty_internal_templateparser.php"\r
-#line 513 "smarty_internal_templateparser.y"\r
- function yy_r150(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2339 "smarty_internal_templateparser.php"\r
-#line 517 "smarty_internal_templateparser.y"\r
- function yy_r152(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2342 "smarty_internal_templateparser.php"\r
-#line 521 "smarty_internal_templateparser.y"\r
- function yy_r154(){$this->_retvalue = '=='; }\r
-#line 2345 "smarty_internal_templateparser.php"\r
+#line 2388 "smarty_internal_templateparser.php"\r
+#line 505 "smarty_internal_templateparser.y"\r
+ function yy_r146(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2391 "smarty_internal_templateparser.php"\r
+#line 507 "smarty_internal_templateparser.y"\r
+ function yy_r147(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2394 "smarty_internal_templateparser.php"\r
+#line 518 "smarty_internal_templateparser.y"\r
+ function yy_r148(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2397 "smarty_internal_templateparser.php"\r
#line 522 "smarty_internal_templateparser.y"\r
- function yy_r155(){$this->_retvalue = '!='; }\r
-#line 2348 "smarty_internal_templateparser.php"\r
-#line 523 "smarty_internal_templateparser.y"\r
- function yy_r156(){$this->_retvalue = '>'; }\r
-#line 2351 "smarty_internal_templateparser.php"\r
-#line 524 "smarty_internal_templateparser.y"\r
- function yy_r157(){$this->_retvalue = '<'; }\r
-#line 2354 "smarty_internal_templateparser.php"\r
-#line 525 "smarty_internal_templateparser.y"\r
- function yy_r158(){$this->_retvalue = '>='; }\r
-#line 2357 "smarty_internal_templateparser.php"\r
+ function yy_r150(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2400 "smarty_internal_templateparser.php"\r
#line 526 "smarty_internal_templateparser.y"\r
- function yy_r159(){$this->_retvalue = '<='; }\r
-#line 2360 "smarty_internal_templateparser.php"\r
+ function yy_r152(){$this->_retvalue = '=='; }\r
+#line 2403 "smarty_internal_templateparser.php"\r
#line 527 "smarty_internal_templateparser.y"\r
- function yy_r160(){$this->_retvalue = '==='; }\r
-#line 2363 "smarty_internal_templateparser.php"\r
+ function yy_r153(){$this->_retvalue = '!='; }\r
+#line 2406 "smarty_internal_templateparser.php"\r
#line 528 "smarty_internal_templateparser.y"\r
- function yy_r161(){$this->_retvalue = '!=='; }\r
-#line 2366 "smarty_internal_templateparser.php"\r
+ function yy_r154(){$this->_retvalue = '>'; }\r
+#line 2409 "smarty_internal_templateparser.php"\r
#line 529 "smarty_internal_templateparser.y"\r
- function yy_r162(){$this->_retvalue = '%'; }\r
-#line 2369 "smarty_internal_templateparser.php"\r
+ function yy_r155(){$this->_retvalue = '<'; }\r
+#line 2412 "smarty_internal_templateparser.php"\r
+#line 530 "smarty_internal_templateparser.y"\r
+ function yy_r156(){$this->_retvalue = '>='; }\r
+#line 2415 "smarty_internal_templateparser.php"\r
#line 531 "smarty_internal_templateparser.y"\r
- function yy_r163(){$this->_retvalue = '&&'; }\r
-#line 2372 "smarty_internal_templateparser.php"\r
+ function yy_r157(){$this->_retvalue = '<='; }\r
+#line 2418 "smarty_internal_templateparser.php"\r
#line 532 "smarty_internal_templateparser.y"\r
- function yy_r164(){$this->_retvalue = '||'; }\r
-#line 2375 "smarty_internal_templateparser.php"\r
+ function yy_r158(){$this->_retvalue = '==='; }\r
+#line 2421 "smarty_internal_templateparser.php"\r
#line 533 "smarty_internal_templateparser.y"\r
- function yy_r165(){$this->_retvalue = ' XOR '; }\r
-#line 2378 "smarty_internal_templateparser.php"\r
+ function yy_r159(){$this->_retvalue = '!=='; }\r
+#line 2424 "smarty_internal_templateparser.php"\r
+#line 534 "smarty_internal_templateparser.y"\r
+ function yy_r160(){$this->_retvalue = '%'; }\r
+#line 2427 "smarty_internal_templateparser.php"\r
+#line 536 "smarty_internal_templateparser.y"\r
+ function yy_r161(){$this->_retvalue = '&&'; }\r
+#line 2430 "smarty_internal_templateparser.php"\r
+#line 537 "smarty_internal_templateparser.y"\r
+ function yy_r162(){$this->_retvalue = '||'; }\r
+#line 2433 "smarty_internal_templateparser.php"\r
#line 538 "smarty_internal_templateparser.y"\r
- function yy_r166(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }\r
-#line 2381 "smarty_internal_templateparser.php"\r
-#line 540 "smarty_internal_templateparser.y"\r
- function yy_r168(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2384 "smarty_internal_templateparser.php"\r
-#line 541 "smarty_internal_templateparser.y"\r
- function yy_r169(){ return; }\r
-#line 2387 "smarty_internal_templateparser.php"\r
-#line 542 "smarty_internal_templateparser.y"\r
- function yy_r170(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2390 "smarty_internal_templateparser.php"\r
+ function yy_r163(){$this->_retvalue = ' XOR '; }\r
+#line 2436 "smarty_internal_templateparser.php"\r
#line 543 "smarty_internal_templateparser.y"\r
- function yy_r171(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }\r
-#line 2393 "smarty_internal_templateparser.php"\r
-#line 550 "smarty_internal_templateparser.y"\r
- function yy_r173(){ $this->_retvalue = "''"; }\r
-#line 2396 "smarty_internal_templateparser.php"\r
-#line 551 "smarty_internal_templateparser.y"\r
- function yy_r174(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); }\r
-#line 2399 "smarty_internal_templateparser.php"\r
-#line 553 "smarty_internal_templateparser.y"\r
- function yy_r175(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }\r
-#line 2402 "smarty_internal_templateparser.php"\r
-#line 554 "smarty_internal_templateparser.y"\r
- function yy_r176(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2405 "smarty_internal_templateparser.php"\r
+ function yy_r164(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }\r
+#line 2439 "smarty_internal_templateparser.php"\r
+#line 545 "smarty_internal_templateparser.y"\r
+ function yy_r166(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2442 "smarty_internal_templateparser.php"\r
+#line 546 "smarty_internal_templateparser.y"\r
+ function yy_r167(){ return; }\r
+#line 2445 "smarty_internal_templateparser.php"\r
+#line 547 "smarty_internal_templateparser.y"\r
+ function yy_r168(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2448 "smarty_internal_templateparser.php"\r
+#line 548 "smarty_internal_templateparser.y"\r
+ function yy_r169(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }\r
+#line 2451 "smarty_internal_templateparser.php"\r
+#line 555 "smarty_internal_templateparser.y"\r
+ function yy_r171(){ $this->_retvalue = "''"; }\r
+#line 2454 "smarty_internal_templateparser.php"\r
#line 556 "smarty_internal_templateparser.y"\r
- function yy_r177(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); }\r
-#line 2408 "smarty_internal_templateparser.php"\r
+ function yy_r172(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); }\r
+#line 2457 "smarty_internal_templateparser.php"\r
#line 558 "smarty_internal_templateparser.y"\r
- function yy_r179(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) {\r
+ function yy_r173(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }\r
+#line 2460 "smarty_internal_templateparser.php"\r
+#line 559 "smarty_internal_templateparser.y"\r
+ function yy_r174(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); }\r
+#line 2463 "smarty_internal_templateparser.php"\r
+#line 561 "smarty_internal_templateparser.y"\r
+ function yy_r175(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); }\r
+#line 2466 "smarty_internal_templateparser.php"\r
+#line 563 "smarty_internal_templateparser.y"\r
+ function yy_r177(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) {\r
$this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value');\r
} else {\r
$this->_retvalue = new _smarty_code($this, '$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value');\r
}\r
$this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache;\r
}\r
-#line 2417 "smarty_internal_templateparser.php"\r
-#line 566 "smarty_internal_templateparser.y"\r
- function yy_r181(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); }\r
-#line 2420 "smarty_internal_templateparser.php"\r
-#line 567 "smarty_internal_templateparser.y"\r
- function yy_r182(){\r
+#line 2475 "smarty_internal_templateparser.php"\r
+#line 571 "smarty_internal_templateparser.y"\r
+ function yy_r179(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); }\r
+#line 2478 "smarty_internal_templateparser.php"\r
+#line 572 "smarty_internal_templateparser.y"\r
+ function yy_r180(){\r
$this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);\r
}\r
-#line 2425 "smarty_internal_templateparser.php"\r
-#line 570 "smarty_internal_templateparser.y"\r
- function yy_r183(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); }\r
-#line 2428 "smarty_internal_templateparser.php"\r
+#line 2483 "smarty_internal_templateparser.php"\r
+#line 575 "smarty_internal_templateparser.y"\r
+ function yy_r181(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); }\r
+#line 2486 "smarty_internal_templateparser.php"\r
\r
private $_retvalue;\r
\r
$this->internalError = true;\r
$this->yymajor = $yymajor;\r
$this->compiler->trigger_template_error();\r
-#line 2491 "smarty_internal_templateparser.php"\r
+#line 2549 "smarty_internal_templateparser.php"\r
}\r
\r
function yy_accept()\r
$this->internalError = false;\r
$this->retvalue = $this->_retvalue;\r
//echo $this->retvalue."\n\n";\r
-#line 2509 "smarty_internal_templateparser.php"\r
+#line 2567 "smarty_internal_templateparser.php"\r
}\r
\r
function doParse($yymajor, $yytokenvalue)\r