SongZihuan 5 سال پیش
والد
کامیت
481a3c8c0c
11فایلهای تغییر یافته به همراه440 افزوده شده و 10803 حذف شده
  1. 1 3756
      debug.log
  2. BIN
      gwarf
  3. 26 1
      paser/lexical.c
  4. 2 1
      paser/paser.c
  5. 3 1
      paser/paser.h
  6. 142 15
      paser/syntax.c
  7. 3 1
      paser/token.h
  8. 8 0
      paser/tokenstream.c
  9. 93 5124
      status.log
  10. 78 1904
      token.log
  11. 84 0
      tokenINFO.log

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 3756
debug.log



+ 26 - 1
paser/lexical.c

@@ -7,6 +7,7 @@ void match_double(char, word_paser *);
 void match_text(char, word_paser *, char *);
 void match_text_s(char, word_paser *, char *);
 void match_var(char p, word_paser *paser);
+void match_str(char p, word_paser *paser);
 
 int is_in(int);
 extern void paser_error(char *);
@@ -132,6 +133,7 @@ int paser(int *index){
         match_text(p, global_paser[NOLOCAL_PASER], "nolocal");
         match_text(p, global_paser[DEFAULT_PASER], "default");
         match_text(p, global_paser[RETURN_PASER], "return");
+        match_str(p, global_paser[STR_PASER]);
 
         *index = check_list(global_paser, p);  // 检查解析结果
 
@@ -292,6 +294,29 @@ void match_double(char p, word_paser *paser){  // 匹配一个double
     UNUSE_SET;
 }
 
+void match_str(char p, word_paser *paser){  // 匹配一个var字符串
+    if(USE){
+        GET_LEN(paser);
+        if(paser->status == START){  // start模式先匹配'或者"
+            if(p == '\''){
+                paser->status = 1;
+            }
+            else{
+                paser->status = NOTMATCH;
+            }
+        }
+        else{
+            if(p != '\''){
+                paser->text = (char *)realloc(paser->text, sizeof(char) * (len + 1));
+                paser->text[len] = p;
+            }
+            else{
+                paser->status = END;
+            }
+        }
+    }
+    UNUSE_SET;
+}
 
 void match_var(char p, word_paser *paser){  // 匹配一个var
     if(USE){
@@ -308,7 +333,7 @@ void match_var(char p, word_paser *paser){  // 匹配一个var
         }
         else{
             if(p == '_' || (p <= 'z' && p >= 'a') || (p <= '9' && p >= '0')){
-                paser->text = (char *)realloc(paser->text, sizeof(char) * (strlen(paser->text) + 1));
+                paser->text = (char *)realloc(paser->text, sizeof(char) * (len + 1));
                 paser->text[len] = p;
             }
             else{

+ 2 - 1
paser/paser.c

@@ -9,7 +9,7 @@
 #include "syntax.c"
 
 // int paser_status = 1;
-p_status paser_status = {.is_parameter = false, .is_func=false};
+p_status paser_status = {.is_parameter = false, .is_func=false, .is_list=false, .is_dict=false};
 
 void do_exit(void);
 void setup();
@@ -28,6 +28,7 @@ void setup(char *file){
     debug = fopen("./debug.log", "w");  // 设置debug的位置
     status_log = fopen("./status.log", "w");  // 设置debug的位置
     token_log = fopen("./token.log", "w");  // 设置debug的位置
+    token_info = fopen("./tokenINFO.log", "w");  // 设置debug的位置
     global_token_node = make_token_node();
 }
 

+ 3 - 1
paser/paser.h

@@ -2,13 +2,15 @@
 #define MEM_INCLUDE
 
 struct word_paser **global_paser;  // 解析器,记录状态和text
-FILE *debug = NULL, *status_log = NULL, *token_log = NULL;
+FILE *debug = NULL, *status_log = NULL, *token_log = NULL, *token_info = NULL;
 FILE *file_p = NULL;
 
 typedef struct p_status
 {
     bool is_parameter;  // parameter模式不匹配 = 
     bool is_func;  // func模式不匹配 ()
+    bool is_list;  // 不匹配参数的POW和name_value
+    bool is_dict;  // 不匹配参数的MUL和非only_value选项以及用:取代=
 } p_status;
 
 

+ 142 - 15
paser/syntax.c

@@ -33,6 +33,7 @@ void ctrl_(p_status *status, token_node *list);
 void var_ctrl_(p_status *status, token_node *list);
 void return_(p_status *status, token_node *list);
 void formal_parameter(p_status *status, token_node *list);
+void list_(p_status *status, token_node *list);
 
 void paser_error(char *text);
 
@@ -162,6 +163,7 @@ void command(p_status *status, token_node *list){  // 多项式
             back_one_token(list, new_token);  // 往回[不匹配类型]
             return;
         }
+        fprintf(token_info, "[tag 7]\n");
         get_stop_token();
         push_statement(statement_base, new_token);
     }
@@ -456,9 +458,15 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
         if(comma.type == COMMA_PASER){
             get_pop_token(status, list, before);
             if(before.type == MUL_PASER){
+                if(status->is_dict){
+                    paser_error("dict shouldn't get '*'");
+                }
                 mode = put_args;
             }
             else if(before.type == POW_PASER){
+                if(status->is_list){
+                    paser_error("list shouldn't get '*'");
+                }
                 mode = put_kwargs;
             }
             else{
@@ -477,7 +485,10 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
             new_token = left;
             parameter *tmp = NULL;
             get_pop_token(status, list, eq);
-            if(eq.type == EQ_PASER){  // name_value模式
+            if(eq.type == (status->is_dict ? COLON_PASER : EQ_PASER)){  // name_value模式
+                if(status->is_list){
+                    paser_error("list shouldn't get '='");
+                }
                 get_right_token(status, list, top_exp, value_token);
                 if(value_token.type != NON_top_exp){
                     paser_error("Don't get a top_exp");
@@ -488,6 +499,9 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
                 tmp->u.value = value_token.data.statement_value;
             }
             else{
+                if(status->is_dict){
+                    paser_error("dict should get ':'");
+                }
                 back_again(list,eq);  // 回退[如果使用back_one_token则会导致add_node在EQ的后面]
                 tmp = append_parameter_value(next.data.statement_value, new_token.data.parameter_list);
                 tmp->type = mode;
@@ -519,9 +533,15 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
         new_token.data.parameter_list = make_parameter_value(next.data.statement_value);
         new_token.data.parameter_list->u.var = new_token.data.parameter_list->u.value;
         if(left.type == POW_PASER){
+            if(status->is_list){
+                paser_error("list shouldn't get '**'");
+            }
             new_token.data.parameter_list->type = put_kwargs;
         }
         else{
+            if(status->is_dict){
+                paser_error("dict shouldn't get '*'");
+            }
             new_token.data.parameter_list->type = put_args;
         }
         add_node(list, new_token);
@@ -543,19 +563,23 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
 
         parameter *tmp = NULL;
         get_pop_token(status, list, eq);
-        if(eq.type == EQ_PASER){  // name_value模式
+        if(eq.type == (status->is_dict ? COLON_PASER : EQ_PASER)){  // name_value模式
+            if(status->is_list){
+                paser_error("list shouldn't get '='");
+            }
             get_right_token(status, list, top_exp, value_token);
             if(value_token.type != NON_top_exp){
                 paser_error("Don't get a top_exp");
                 return;
             }
-            puts("DEFAULT");
-            printf("next.data.statement_value.type = %d\n", next.data.statement_value->type);
             new_token.data.parameter_list = make_parameter_name(next.data.statement_value);
             new_token.data.parameter_list->u.value = value_token.data.statement_value;
             new_token.data.parameter_list->type = name_value;
         }
         else{
+            if(status->is_dict){
+                paser_error("dict should get ':'");
+            }
             back_again(list,eq);  // 回退[如果使用back_one_token则会导致add_node在EQ的后面]
             new_token.data.parameter_list = make_parameter_value(next.data.statement_value);
             new_token.data.parameter_list->u.var = new_token.data.parameter_list->u.value;
@@ -1682,6 +1706,7 @@ void call_down(p_status *status, token_node *list){  // 因试分解
     parameter *p_list;
 
     left = pop_node(list);  // 先弹出一个token   检查token的类型:区分是模式1,还是模式2/3
+    fprintf(token_info, "[debug][tag 4]\n");
     if(left.type == NON_call_down){
         fprintf(status_log, "[info][grammar]  (call_down)reduce right\n");
         get_pop_token(status, list, lb_t);
@@ -1711,9 +1736,11 @@ void call_down(p_status *status, token_node *list){  // 因试分解
         }
         else{  // 递归跳出
             // 回退,也就是让下一次pop的时候读取到的是left而不是symbol
+            fprintf(token_info, "[debug][tag 5]\n");
             fprintf(status_log, "[info][grammar]  (call_back_)out\n");
             back_one_token(list, left);
             back_again(list, lb_t);
+            fprintf(token_info, "[debug][tag 6]\n");
             return;
         }
     }
@@ -1721,12 +1748,14 @@ void call_down(p_status *status, token_node *list){  // 因试分解
         fprintf(status_log, "[info][grammar]  (call_down)back one token to (element)\n");
         back_one_token(list, left);
         get_base_token(status, list, element, new_token);
+        fprintf(token_info, "[debug][tag 2]\n");
         if(new_token.type != NON_element){
             back_one_token(list, new_token);  // 往回[不匹配类型]
             return;
         }
         new_token.type = NON_call_down;
         add_node(list, new_token);
+        fprintf(token_info, "[debug][tag 3]\n");
         return call_down(status, list);  // 回调自己
     }
 }
@@ -1767,27 +1796,74 @@ void element(p_status *status, token_node *list){  // 数字归约
         return;
     }
     else if(gett.type == LI_PASER){  // [1]a或[1]列表或[1,2,3,4]列表
-        back_one_token(list, gett);
         token exp_token, rb, tmp_var;
         get_right_token(status, list, top_exp, exp_token);
-        if(exp_token.type != NON_top_exp){
+        if(exp_token.type == RI_PASER){  //可以认定为空list
+            back_one_token(list, gett);
+            back_again(list, exp_token);
+            get_base_token(status,list,list_,new_token);  // 不需要safe_get_token
+            if(new_token.type != NON_list){
+                paser_error("Don't get a list_");
+            }
+            goto back;
+        }
+        else if(exp_token.type != NON_top_exp){
             paser_error("Don't get 'top_exp'");            
         }
+        
+        fprintf(token_info, "[tag 1.2]\n");
         get_pop_token(status, list ,rb);
-        if(rb.type != RI_PASER){  // 匹配失败  TODO:: 检查是不是[1,2,3,4]的列表类型
-            paser_error("Don't get ']'");
+        if(rb.type == RI_PASER){  // 匹配失败  TODO:: 检查是不是[1,2,3,4]的列表类型
+            get_pop_token(status, list ,tmp_var);
+            if(tmp_var.type == VAR_PASER){  // a
+                back_one_token(list, tmp_var);
+                get_base_token(status, list, var_token, new_token);
+                if(new_token.type != NON_base_var){
+                    paser_error("Don't get var");
+                }
+                new_token.data.statement_value->code.base_var.from = exp_token.data.statement_value;
+                goto back;
+            }
+            else{
+                // back again连用的时候要倒过来使用
+                /* 原因:
+                先back_one_token的时候,token流变成
+                <之前的> - <A> - <NULL[seek/index]>
+                先back_again的时候,token流变成
+                <之前的> - <A> - <B[seek]> - <NULL[index]>
+                再back_again的时候,token流变成
+                <之前的> - <A> - <C[seek]> - <B> - <NULL[index]>
+
+                其实还有一种解决方法:
+                连用三次back_one_token
+                然后再用两次back_token手动回退
+                */
+                back_one_token(list, gett);
+                back_again(list, tmp_var);
+                back_again(list, rb);
+                back_again(list, exp_token);
+                get_base_token(status,list,list_,new_token);  // 不需要safe_get_token
+                if(new_token.type != NON_list){
+                    paser_error("Don't get a list_");
+                }
+                goto back;
+            }
         }
-        get_pop_token(status, list ,tmp_var);
-        if(tmp_var.type == VAR_PASER){  // a
-            back_one_token(list, tmp_var);
-            get_base_token(status, list, var_token, new_token);
-            if(new_token.type != NON_base_var){
-                paser_error("Don't get var");
+        else{
+            back_one_token(list, gett);
+            back_again(list, rb);
+            back_again(list, exp_token);
+            get_base_token(status,list,list_,new_token);  // 不需要safe_get_token
+            if(new_token.type != NON_list){
+                paser_error("Don't get a list_");
             }
-            new_token.data.statement_value->code.base_var.from = exp_token.data.statement_value;
+            goto back;
         }
+
+        back:
         new_token.type = NON_element;
         add_node(list, new_token);
+        fprintf(token_info, "[debug][tag 1]\n");
         return;
     }
     else{
@@ -1804,6 +1880,57 @@ void element(p_status *status, token_node *list){  // 数字归约
 
     }
 }
+
+/*
+list_ : LI formal_parameter RI
+*/
+void list_(p_status *status, token_node *list){  // 数字归约
+    fprintf(status_log, "[info][grammar]  mode status: list_\n");
+    token gett, list_core, ri_t, new_token;
+    parameter *base = NULL;
+
+    gett = pop_node(list);  // 取得一个token
+    if(gett.type == LI_PASER){  // var类型
+        status->is_list = true;
+        get_right_token(status,list,formal_parameter,list_core);
+        status->is_list = false;
+        if(list_core.type == RI_PASER){  // 空列表
+            base = NULL;
+            goto make_list;
+        }
+        else if(list_core.type == NON_parameter){
+            base = list_core.data.parameter_list;
+        }
+        else{
+            paser_error("Don't get formal_parameter");
+        }
+
+        get_pop_token(status,list,ri_t);
+        if(ri_t.type != RI_PASER){
+            paser_error("Don't get ']'");
+        }
+
+        make_list:
+        new_token.type = NON_list;
+
+        statement *code_tmp =  make_statement();
+        code_tmp->type = base_list;
+        code_tmp->code.base_list.value = base;
+        
+        new_token.data.statement_value = code_tmp;
+        new_token.data_type = statement_value;
+
+        fprintf(status_log, "[info][grammar]  (var_token)out\n");
+        add_node(list, new_token);  // 压入节点
+        return;
+    }
+    else{  // 不是期望值
+        fprintf(status_log, "[info][grammar]  (var_token)back one token\n");
+        back_one_token(list, gett);
+        return;
+    }
+}
+
 /*
 var_token : VAR
 */

+ 3 - 1
paser/token.h

@@ -3,7 +3,7 @@
 
 #include "../inter/interpreter.h"
 
-#define MAX_PASER_SIZE 54
+#define MAX_PASER_SIZE 55
 #define INT_PASER 0
 #define DOUBLE_PASER 1
 #define ENTER_PASER 2
@@ -58,6 +58,7 @@
 #define NOLOCAL_PASER 51
 #define DEFAULT_PASER 52
 #define RETURN_PASER 53
+#define STR_PASER 54
 
 // 获取并返回一个token
 #define get_pop_token(status,list,new_token) \
@@ -201,6 +202,7 @@ typedef enum token_type
     NON_ctrl = -35,
     NON_var_ctrl = -36,
     NON_return = -37,
+    NON_list = -38,
 } token_type;
 
 typedef union token_data

+ 8 - 0
paser/tokenstream.c

@@ -70,11 +70,13 @@ void print_node(token_node *list, char *from){  // 把FILO输出到 status_log
     static int count = 0;
     fprintf(token_log, "[debug][token : [%3d]]  token list[from %30s] :: ", count, from);
     fprintf(status_log, "[debug][token : [%3d]]\n", count);
+    fprintf(token_info, "[info][token : [%3d]] :: ", count);
     count += 1;
     int max = list->max_size;  // 迭代次数
     for(int i = 0; i < max; i += 1){
         if(i < list->max_index){  // 在范围内
             fprintf(token_log, "<token : %d ", list->token_list[i].type);
+            fprintf(token_info, "<token : %3d ", list->token_list[i].type);
             if(i == list->seek){  // seek指针所在位置
                 fprintf(token_log, "[seek] ");
             }
@@ -105,17 +107,23 @@ void print_node(token_node *list, char *from){  // 把FILO输出到 status_log
                 break;
             }
             fprintf(token_log, "num = %d>", i);
+            fprintf(token_info, "num = %3d>", i);
         }
         else if(i == list->max_index && i == list->seek){
             fprintf(token_log, "<NULL [index/seek] num = %d>", i);
+            fprintf(token_info, "<NULL        num = %3d>", i);
         }
         else if(i == list->max_index){
             fprintf(token_log, "<NULL [index] num = %d>", i);
+            fprintf(token_info, "<NULL        num = %3d>", i);
         }
         else{
             fprintf(token_log, "<NULL num = %d>", i);
+            fprintf(token_info, "<NULL        num = %3d>", i);
         }
         fprintf(token_log, " - ");
+        fprintf(token_info, " - ", i);
     }
     fprintf(token_log, " ||- END\n");
+    fprintf(token_info, " ||- END\n");
 }

+ 93 - 5124
status.log

@@ -1,6 +1,6 @@
-[info][lexical]  get value = 'def' len = 3 from 40
-[info]token type = 40
-[debug][grammar]  get token type : 40; data type : 1
+[info][lexical]  get value = '22' len = 2 from 54
+[info]token type = 54
+[debug][grammar]  get token type : 54; data type : 1
 [debug][grammar]  add a token[seek : 0, index : 0, size : 1]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [  0]]
@@ -15,5265 +15,234 @@
 [info][grammar]  mode status: command
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [  4]]
-[info][grammar]  (command)back one token to (def_)
+[info][grammar]  (command)back one token to (top_exp)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [  5]]
-[info][grammar]  mode status: def_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [  6]]
-[info][lexical]  get value = ' ' len = 1 from 3
-[info][lexical]  get value = 'a' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [  7]]
-[debug][token : [  8]]
 [info][grammar]  mode status: top_exp
 [info][grammar]  mode status: eq_number
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [  9]]
+[debug][token : [  6]]
 [info][grammar]  (bool_or)back one token to (bool_and)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 10]]
+[debug][token : [  7]]
 [info][grammar]  mode status: call_back_
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 11]]
+[debug][token : [  8]]
 [info][grammar]  (call_back_)back one token to (bool_or)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 12]]
+[debug][token : [  9]]
 [info][grammar]  mode status: bool_or
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 13]]
+[debug][token : [ 10]]
 [info][grammar]  (bool_or)back one token to (bool_and)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 14]]
+[debug][token : [ 11]]
 [info][grammar]  mode status: bool_and
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 15]]
+[debug][token : [ 12]]
 [info][grammar]  (bool_and)back one token to (compare)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 16]]
+[debug][token : [ 13]]
 [info][grammar]  mode status: negative
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 17]]
+[debug][token : [ 14]]
 [info][grammar]  (negative)back one token to (compare)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 18]]
+[debug][token : [ 15]]
 [info][grammar]  mode status: polynomial
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 19]]
+[debug][token : [ 16]]
 [info][grammar]  (polynomial)back one token to (factor)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 20]]
+[debug][token : [ 17]]
 [info][grammar]  mode status: bit_or
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 21]]
+[debug][token : [ 18]]
 [info][grammar]  (bit_or)back one token to (bit_and)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 22]]
+[debug][token : [ 19]]
 [info][grammar]  mode status: bit_or
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 23]]
+[debug][token : [ 20]]
 [info][grammar]  (bit_or)back one token to (bit_and)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 24]]
+[debug][token : [ 21]]
 [info][grammar]  mode status: bit_and
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 25]]
+[debug][token : [ 22]]
 [info][grammar]  (bit_move)back one token to (factor)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 26]]
+[debug][token : [ 23]]
 [info][grammar]  mode status: factor
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 27]]
+[debug][token : [ 24]]
 [info][grammar]  (bit_move)back one token to (factor)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 28]]
+[debug][token : [ 25]]
 [info][grammar]  mode status: polynomial
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 29]]
+[debug][token : [ 26]]
 [info][grammar]  (polynomial)back one token to (factor)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 30]]
+[debug][token : [ 27]]
 [info][grammar]  mode status: factor
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 31]]
+[debug][token : [ 28]]
 [info][grammar]  (factor)back one token to (element)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 32]]
+[debug][token : [ 29]]
 [info][grammar]  mode status: negative
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 33]]
+[debug][token : [ 30]]
 [info][grammar]  (negative)back one token to (bit_not)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 34]]
+[debug][token : [ 31]]
 [info][grammar]  mode status: bit_not
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 35]]
+[debug][token : [ 32]]
 [info][grammar]  (bit_not)back one token to (power)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 36]]
+[debug][token : [ 33]]
 [info][grammar]  mode status: power
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 37]]
+[debug][token : [ 34]]
 [info][grammar]  (power)back one token to (element)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 38]]
+[debug][token : [ 35]]
 [info][grammar]  mode status: call_down
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 39]]
+[debug][token : [ 36]]
 [info][grammar]  (call_down)back one token to (element)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 40]]
+[debug][token : [ 37]]
 [info][grammar]  mode status: element
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 41]]
+[debug][token : [ 38]]
+[info][grammar]  (element)back one token to (number)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 42]]
-[info][grammar]  mode status: var_token
+[debug][token : [ 39]]
+[info][grammar]  mode status: number
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 43]]
-[info][grammar]  (var_token)out
+[debug][token : [ 40]]
+[info][grammar]  (number)back one token
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 44]]
+[debug][token : [ 41]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 45]]
+[debug][token : [ 42]]
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 46]]
+[debug][token : [ 43]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 47]]
+[debug][token : [ 44]]
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 48]]
-[info][grammar]  mode status: call_down
+[debug][token : [ 45]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 49]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = '(' len = 1 from 8
-[info]token type = 8
-[debug][grammar]  get token type : 8; data type : 1
+[debug][token : [ 46]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 47]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [ 48]]
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 49]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 50]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 51]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 52]]
-[info][grammar]  (call_back_)out
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 53]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 2]
-[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 54]]
-[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 55]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 56]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 57]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 58]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 59]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 60]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 61]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 62]]
-[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 63]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 64]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 65]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 66]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 67]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 68]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 69]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 70]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 71]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 72]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 73]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 74]]
-[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 75]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 76]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 77]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 78]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 79]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 80]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 81]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [ 82]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [ 83]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [ 84]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [ 85]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [ 86]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [ 87]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 88]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 89]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [ 90]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [ 91]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [ 92]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [ 93]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [ 94]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [ 95]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 96]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 97]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [ 98]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [ 99]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [100]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [101]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [102]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [103]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [104]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [105]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [106]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [107]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [108]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [109]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [110]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [111]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [112]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [113]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [114]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [115]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [116]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [117]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [118]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [119]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [120]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [121]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [122]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [123]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [124]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [125]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [126]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [127]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [128]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [129]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [130]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [131]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [132]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [133]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [134]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [135]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [136]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [137]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [138]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [139]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [140]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [141]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [142]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [143]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [144]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [145]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [146]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [147]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [148]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [149]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [150]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [151]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [152]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [153]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [154]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [155]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [156]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [157]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [158]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [159]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [160]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [161]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [162]]
-[info][lexical]  get value = 'q' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [163]]
-[debug][token : [164]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [165]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [166]]
-[info][grammar]  mode status: formal_parameter
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [167]]
-[info][grammar]  (formal_parameter)back one token to (top_exp)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [168]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [169]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [170]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [171]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [172]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [173]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [174]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [175]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [176]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [177]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [178]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [179]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [180]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [181]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [182]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [183]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [184]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [185]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [186]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [187]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [188]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [189]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [190]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [191]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [192]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [193]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [194]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [195]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [196]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [197]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [198]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [199]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [200]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [201]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [202]]
-[info][grammar]  mode status: var_token
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [203]]
-[info][grammar]  (var_token)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [204]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [205]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [206]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [207]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [208]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [209]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = ',' len = 1 from 41
-[info]token type = 41
-[debug][grammar]  get token type : 41; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [210]]
-[debug][token : [211]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [212]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [213]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [214]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [215]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [216]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [217]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [218]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [219]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [220]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [221]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [222]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [223]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [224]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [225]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [226]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [227]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [228]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [229]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [230]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [231]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [232]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [233]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [234]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [235]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [236]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [237]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [238]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [239]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [240]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [241]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [242]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [243]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [244]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [245]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [246]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [247]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [248]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [249]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [250]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [251]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [252]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [253]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [254]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [255]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [256]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [257]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [258]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [259]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [260]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [261]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [262]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [263]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [264]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [265]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [266]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [267]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [268]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [269]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [270]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [271]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [272]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [273]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [274]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [275]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [276]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [277]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [278]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [279]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [280]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [281]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [282]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [283]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [284]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [285]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [286]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [287]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [288]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [289]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [290]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [291]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [292]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [293]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [294]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [295]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [296]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [297]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [298]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [299]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [300]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [301]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [302]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [303]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [304]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [305]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [306]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [307]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [308]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [309]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [310]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [311]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [312]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [313]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [314]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [315]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [316]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [317]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [318]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [319]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [320]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [321]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [322]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [323]]
-[debug][grammar]  back a token[seek : 0, index : 1]
-[debug][token : [324]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [325]]
-[info][grammar]  mode status: formal_parameter
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [326]]
-[info][grammar]  (formal_parameter)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [327]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [328]]
-[info][lexical]  get value = 'z' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [329]]
-[debug][token : [330]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [331]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [332]]
-[debug][grammar]  back a token[seek : 0, index : 1]
-[debug][token : [333]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [334]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [335]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [336]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [337]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [338]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [339]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [340]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [341]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [342]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [343]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [344]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [345]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [346]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [347]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [348]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [349]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [350]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [351]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [352]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [353]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [354]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [355]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [356]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [357]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [358]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [359]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [360]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [361]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [362]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [363]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [364]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [365]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [366]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [367]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [368]]
-[info][grammar]  mode status: var_token
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [369]]
-[info][grammar]  (var_token)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [370]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [371]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [372]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [373]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [374]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [375]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = '=' len = 1 from 39
-[info]token type = 39
-[debug][grammar]  get token type : 39; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [376]]
-[debug][token : [377]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [378]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [379]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [380]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [381]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [382]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [383]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [384]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [385]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [386]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [387]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [388]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [389]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [390]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [391]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [392]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [393]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [394]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [395]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [396]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [397]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [398]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [399]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [400]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [401]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [402]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [403]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [404]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [405]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [406]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [407]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [408]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [409]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [410]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [411]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [412]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [413]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [414]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [415]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [416]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [417]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [418]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [419]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [420]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [421]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [422]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [423]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [424]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [425]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [426]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [427]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [428]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [429]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [430]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [431]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [432]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [433]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [434]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [435]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [436]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [437]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [438]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [439]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [440]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [441]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [442]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [443]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [444]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [445]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [446]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [447]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [448]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [449]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [450]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [451]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [452]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [453]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [454]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [455]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [456]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [457]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [458]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [459]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [460]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [461]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [462]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [463]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [464]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [465]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [466]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [467]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [468]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [469]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [470]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [471]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [472]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [473]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [474]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [475]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [476]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [477]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [478]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [479]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [480]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [481]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [482]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [483]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [484]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [485]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [486]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [487]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [488]]
-[info][lexical]  get value = '5' len = 1 from 0
-[info]token type = 0
-[debug][grammar]  get token type : 0; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [489]]
-[debug][token : [490]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [491]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [492]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [493]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [494]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [495]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [496]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [497]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [498]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [499]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [500]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [501]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [502]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [503]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [504]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [505]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [506]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [507]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [508]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [509]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [510]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [511]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [512]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [513]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [514]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [515]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [516]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [517]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [518]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [519]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [520]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [521]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [522]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [523]]
-[info][grammar]  (element)back one token to (number)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [524]]
-[info][grammar]  mode status: number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [525]]
-[info][grammar]  (number)get int number: 5
-[info][grammar]  (number)add one token
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [526]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [527]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [528]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [529]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [530]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [531]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = ')' len = 1 from 9
-[info]token type = 9
-[debug][grammar]  get token type : 9; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [532]]
-[debug][token : [533]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [534]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [535]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [536]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [537]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [538]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [539]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [540]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [541]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [542]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [543]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [544]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [545]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [546]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [547]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [548]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [549]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [550]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [551]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [552]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [553]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [554]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [555]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [556]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [557]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [558]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [559]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [560]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [561]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [562]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [563]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [564]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [565]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [566]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [567]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [568]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [569]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [570]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [571]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [572]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [573]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [574]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [575]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [576]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [577]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [578]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [579]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [580]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [581]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [582]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [583]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [584]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [585]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [586]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [587]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [588]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [589]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [590]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [591]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [592]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [593]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [594]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [595]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [596]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [597]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [598]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [599]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [600]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [601]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [602]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [603]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [604]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [605]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [606]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [607]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [608]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [609]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [610]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [611]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [612]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [613]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [614]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [615]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [616]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [617]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [618]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [619]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [620]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [621]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [622]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [623]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [624]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [625]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [626]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [627]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [628]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [629]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [630]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [631]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [632]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [633]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [634]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [635]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [636]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [637]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [638]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [639]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [640]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [641]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [642]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [643]]
-[info][grammar]  mode status: formal_parameter
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [644]]
-[info][grammar]  (formal_parameter)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [645]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [646]]
-[info][grammar]  (formal_parameter)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [647]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [648]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [649]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [650]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [651]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [652]]
-[info][lexical]  get value = '{' len = 1 from 11
-[info]token type = 11
-[debug][grammar]  get token type : 11; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [653]]
-[debug][token : [654]]
-[info][grammar]  mode status: block_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [655]]
-[info][lexical]  get value = '
-' len = 1 from 2
-[info]token type = 2
-[debug][grammar]  get token type : 2; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [656]]
-[debug][token : [657]]
-[info][grammar]  mode status: command_list
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [658]]
-[info][grammar]  (command_list)back one token to (command)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [659]]
-[info][grammar]  mode status: command
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [660]]
-[info][grammar]  (command)back <ENTER>
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [661]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [662]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [663]]
-[info][grammar]  mode status: command_list
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [664]]
-[info][grammar]  (command_list)reduce right
-[info][lexical]  get value = 'q' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [665]]
-[debug][token : [666]]
-[info][grammar]  mode status: command
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [667]]
-[info][grammar]  (command)back one token to (top_exp)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [668]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [669]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [670]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [671]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [672]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [673]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [674]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [675]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [676]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [677]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [678]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [679]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [680]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [681]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [682]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [683]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [684]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [685]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [686]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [687]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [688]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [689]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [690]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [691]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [692]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [693]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [694]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [695]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [696]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [697]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [698]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [699]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [700]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [701]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [702]]
-[info][grammar]  mode status: var_token
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [703]]
-[info][grammar]  (var_token)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [704]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [705]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [706]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [707]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [708]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [709]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = '-' len = 1 from 5
-[info]token type = 5
-[debug][grammar]  get token type : 5; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [710]]
-[debug][token : [711]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [712]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [713]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [714]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [715]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [716]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [717]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [718]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [719]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [720]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [721]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [722]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [723]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [724]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [725]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [726]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [727]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [728]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [729]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [730]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [731]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [732]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [733]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [734]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [735]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [736]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [737]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [738]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [739]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [740]]
-[info][lexical]  get value = 'z' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [741]]
-[debug][token : [742]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [743]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [744]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [745]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [746]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [747]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [748]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [749]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [750]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [751]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [752]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [753]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [754]]
-[info][grammar]  mode status: var_token
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [755]]
-[info][grammar]  (var_token)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [756]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [757]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [758]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [759]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [760]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [761]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = '
-' len = 1 from 2
-[info]token type = 2
-[debug][grammar]  get token type : 2; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [762]]
-[debug][token : [763]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [764]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [765]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [766]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [767]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [768]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [769]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [770]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [771]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [772]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [773]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [774]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [775]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [776]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [777]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [778]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [779]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [780]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [781]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [782]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [783]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [784]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [785]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [786]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [787]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [788]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [789]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [790]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [791]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [792]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [793]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [794]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [795]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [796]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [797]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [798]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [799]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [800]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [801]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [802]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [803]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [804]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [805]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [806]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [807]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [808]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [809]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [810]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [811]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [812]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [813]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [814]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [815]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [816]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [817]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [818]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [819]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [820]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [821]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [822]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [823]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [824]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [825]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [826]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [827]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [828]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [829]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [830]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [831]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [832]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [833]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [834]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [835]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [836]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [837]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [838]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [839]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [840]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [841]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [842]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [843]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [844]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [845]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [846]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [847]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [848]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [849]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [850]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [851]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [852]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [853]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [854]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [855]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [856]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [857]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [858]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [859]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [860]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [861]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [862]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [863]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [864]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [865]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [866]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [867]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [868]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [869]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [870]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [871]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [872]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [873]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [874]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [875]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [876]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [877]]
-[info][grammar]  mode status: command_list
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [878]]
-[info][grammar]  (command_list)reduce right
-[info][lexical]  get value = '}' len = 1 from 12
-[info]token type = 12
-[debug][grammar]  get token type : 12; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [879]]
-[debug][token : [880]]
-[info][grammar]  mode status: command
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [881]]
-[info][grammar]  (command)back one token to (top_exp)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [882]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [883]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [884]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [885]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [886]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [887]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [888]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [889]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [890]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [891]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [892]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [893]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [894]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [895]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [896]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [897]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [898]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [899]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [900]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [901]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [902]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [903]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [904]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [905]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [906]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [907]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [908]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [909]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [910]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [911]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [912]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [913]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [914]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [915]]
-[info][grammar]  (element)back one token to (number)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [916]]
-[info][grammar]  mode status: number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [917]]
-[info][grammar]  (number)back one token
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [918]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [919]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [920]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [921]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [922]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [923]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [924]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [925]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [926]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [927]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [928]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [929]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [930]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [931]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [932]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [933]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [934]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [935]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [936]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [937]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [938]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [939]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [940]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [941]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [942]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [943]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [944]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [945]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [946]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [947]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [948]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [949]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [950]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [951]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [952]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [953]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [954]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [955]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [956]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [957]]
-[info][grammar]  (command_list)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [958]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [959]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [960]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [961]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [962]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [963]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [964]]
-[tag 1]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [965]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [966]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [967]]
-[info][lexical]  get value = '
-' len = 1 from 2
-[info]token type = 2
-[debug][grammar]  get token type : 2; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [968]]
-[debug][token : [969]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [970]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [971]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [972]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [973]]
-[info][grammar]  mode status: command_list
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [974]]
-[info][grammar]  (command_list)reduce right
-[info][lexical]  get value = '
-' len = 1 from 2
-[info]token type = 2
-[debug][grammar]  get token type : 2; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [975]]
-[debug][token : [976]]
-[info][grammar]  mode status: command
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [977]]
-[info][grammar]  (command)back <ENTER>
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [978]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [979]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [980]]
-[info][grammar]  mode status: command_list
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [981]]
-[info][grammar]  (command_list)reduce right
-[info][lexical]  get value = 'a' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [982]]
-[debug][token : [983]]
-[info][grammar]  mode status: command
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [984]]
-[info][grammar]  (command)back one token to (top_exp)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [985]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [986]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [987]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [988]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [989]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [990]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [991]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [992]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [993]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [994]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [995]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [996]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [997]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [998]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [999]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1000]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1001]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1002]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1003]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1004]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1005]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1006]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1007]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1008]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1009]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1010]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1011]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1012]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1013]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1014]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1015]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1016]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1017]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1018]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1019]]
-[info][grammar]  mode status: var_token
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1020]]
-[info][grammar]  (var_token)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1021]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1022]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1023]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1024]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1025]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1026]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = '(' len = 1 from 8
-[info]token type = 8
-[debug][grammar]  get token type : 8; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1027]]
-[debug][token : [1028]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1029]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1030]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1031]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1032]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1033]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1034]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1035]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1036]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1037]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1038]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1039]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1040]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1041]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1042]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1043]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1044]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1045]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1046]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1047]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1048]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1049]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1050]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1051]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1052]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1053]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1054]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1055]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1056]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1057]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1058]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1059]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1060]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1061]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1062]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1063]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1064]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1065]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1066]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1067]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1068]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1069]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1070]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1071]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1072]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1073]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1074]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1075]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1076]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1077]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1078]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1079]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1080]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1081]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1082]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1083]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1084]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1085]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1086]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1087]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1088]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1089]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1090]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1091]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1092]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1093]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1094]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1095]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1096]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1097]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1098]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1099]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1100]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1101]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1102]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1103]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1104]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1105]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1106]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1107]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1108]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1109]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1110]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1111]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1112]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1113]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1114]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1115]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1116]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1117]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1118]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1119]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1120]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1121]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1122]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1123]]
-[info][lexical]  get value = 'z' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1124]]
-[debug][token : [1125]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1126]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1127]]
-[debug][grammar]  back a token[seek : 0, index : 1]
-[debug][token : [1128]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1129]]
-[info][grammar]  mode status: formal_parameter
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1130]]
-[info][grammar]  (formal_parameter)back one token to (top_exp)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1131]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1132]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1133]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1134]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1135]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1136]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1137]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1138]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1139]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1140]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1141]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1142]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1143]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1144]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1145]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1146]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1147]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1148]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1149]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1150]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1151]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1152]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1153]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1154]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1155]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1156]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1157]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1158]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1159]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1160]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1161]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1162]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1163]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1164]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1165]]
-[info][grammar]  mode status: var_token
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1166]]
-[info][grammar]  (var_token)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1167]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1168]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1169]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1170]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1171]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1172]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = '=' len = 1 from 39
-[info]token type = 39
-[debug][grammar]  get token type : 39; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1173]]
-[debug][token : [1174]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1175]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1176]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1177]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1178]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1179]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1180]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1181]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1182]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1183]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1184]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1185]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1186]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1187]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1188]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1189]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1190]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1191]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1192]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1193]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1194]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1195]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1196]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1197]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1198]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1199]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1200]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1201]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1202]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1203]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1204]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1205]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1206]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1207]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1208]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1209]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1210]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1211]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1212]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1213]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1214]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1215]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1216]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1217]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1218]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1219]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1220]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1221]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1222]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1223]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1224]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1225]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1226]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1227]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1228]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1229]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1230]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1231]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1232]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1233]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1234]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1235]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1236]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1237]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1238]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1239]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1240]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1241]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1242]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1243]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1244]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1245]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1246]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1247]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1248]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1249]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1250]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1251]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1252]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1253]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1254]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1255]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1256]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1257]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1258]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1259]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1260]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1261]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1262]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1263]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1264]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1265]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1266]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1267]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1268]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1269]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1270]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1271]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1272]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1273]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1274]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1275]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1276]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1277]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1278]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1279]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1280]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1281]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1282]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1283]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1284]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1285]]
-[info][lexical]  get value = '10' len = 2 from 0
-[info]token type = 0
-[debug][grammar]  get token type : 0; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1286]]
-[debug][token : [1287]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1288]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1289]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1290]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1291]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1292]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1293]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1294]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1295]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1296]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1297]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1298]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1299]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1300]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1301]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1302]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1303]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1304]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1305]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1306]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1307]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1308]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1309]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1310]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1311]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1312]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1313]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1314]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1315]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1316]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1317]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1318]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1319]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1320]]
-[info][grammar]  (element)back one token to (number)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1321]]
-[info][grammar]  mode status: number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1322]]
-[info][grammar]  (number)get int number: 10
-[info][grammar]  (number)add one token
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1323]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1324]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1325]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1326]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1327]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1328]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = ',' len = 1 from 41
-[info]token type = 41
-[debug][grammar]  get token type : 41; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1329]]
-[debug][token : [1330]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1331]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1332]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1333]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1334]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1335]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1336]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1337]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1338]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1339]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1340]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1341]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1342]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1343]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1344]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1345]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1346]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1347]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1348]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1349]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1350]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1351]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1352]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1353]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1354]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1355]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1356]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1357]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1358]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1359]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1360]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1361]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1362]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1363]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1364]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1365]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1366]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1367]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1368]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1369]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1370]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1371]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1372]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1373]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1374]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1375]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1376]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1377]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1378]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1379]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1380]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1381]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1382]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1383]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1384]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1385]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1386]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1387]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1388]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1389]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1390]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1391]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1392]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1393]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1394]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1395]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1396]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1397]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1398]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1399]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1400]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1401]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1402]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1403]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1404]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1405]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1406]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1407]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1408]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1409]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1410]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1411]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1412]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1413]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1414]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1415]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1416]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1417]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1418]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1419]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1420]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1421]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1422]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1423]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1424]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1425]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1426]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1427]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1428]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1429]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1430]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1431]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1432]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1433]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1434]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1435]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1436]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1437]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1438]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1439]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1440]]
-[info][grammar]  mode status: formal_parameter
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1441]]
-[info][grammar]  (formal_parameter)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1442]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1443]]
-[info][lexical]  get value = 'q' len = 1 from 18
-[info]token type = 18
-[debug][grammar]  get token type : 18; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1444]]
-[debug][token : [1445]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1446]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1447]]
-[debug][grammar]  back a token[seek : 0, index : 1]
-[debug][token : [1448]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1449]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1450]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1451]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1452]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1453]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1454]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1455]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1456]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1457]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1458]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1459]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1460]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1461]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1462]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1463]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1464]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1465]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1466]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1467]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1468]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1469]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1470]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1471]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1472]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1473]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1474]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1475]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1476]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1477]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1478]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1479]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1480]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1481]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1482]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1483]]
-[info][grammar]  mode status: var_token
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1484]]
-[info][grammar]  (var_token)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1485]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1486]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1487]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1488]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1489]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1490]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = '=' len = 1 from 39
-[info]token type = 39
-[debug][grammar]  get token type : 39; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1491]]
-[debug][token : [1492]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1493]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1494]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1495]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1496]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1497]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1498]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1499]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1500]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1501]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1502]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1503]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1504]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1505]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1506]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1507]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1508]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1509]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1510]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1511]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1512]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1513]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1514]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1515]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1516]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1517]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1518]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1519]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1520]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1521]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1522]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1523]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1524]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1525]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1526]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1527]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1528]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1529]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1530]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1531]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1532]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1533]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1534]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1535]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1536]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1537]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1538]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1539]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1540]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1541]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1542]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1543]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1544]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1545]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1546]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1547]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1548]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1549]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1550]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1551]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1552]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1553]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1554]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1555]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1556]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1557]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1558]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1559]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1560]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1561]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1562]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1563]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1564]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1565]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1566]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1567]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1568]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1569]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1570]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1571]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1572]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1573]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1574]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1575]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1576]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1577]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1578]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1579]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1580]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1581]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1582]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1583]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1584]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1585]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1586]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1587]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1588]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1589]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1590]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1591]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1592]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1593]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1594]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1595]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1596]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1597]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1598]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1599]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1600]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1601]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1602]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1603]]
-[info][lexical]  get value = '20' len = 2 from 0
-[info]token type = 0
-[debug][grammar]  get token type : 0; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1604]]
-[debug][token : [1605]]
-[info][grammar]  mode status: top_exp
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1606]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1607]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1608]]
-[info][grammar]  (call_back_)back one token to (bool_or)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1609]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1610]]
-[info][grammar]  (bool_or)back one token to (bool_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1611]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1612]]
-[info][grammar]  (bool_and)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1613]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1614]]
-[info][grammar]  (negative)back one token to (compare)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1615]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1616]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1617]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1618]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1619]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1620]]
-[info][grammar]  (bit_or)back one token to (bit_and)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1621]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1622]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1623]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1624]]
-[info][grammar]  (bit_move)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1625]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1626]]
-[info][grammar]  (polynomial)back one token to (factor)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1627]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1628]]
-[info][grammar]  (factor)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1629]]
-[info][grammar]  mode status: negative
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1630]]
-[info][grammar]  (negative)back one token to (bit_not)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1631]]
-[info][grammar]  mode status: bit_not
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1632]]
-[info][grammar]  (bit_not)back one token to (power)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1633]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1634]]
-[info][grammar]  (power)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1635]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1636]]
-[info][grammar]  (call_down)back one token to (element)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1637]]
-[info][grammar]  mode status: element
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1638]]
-[info][grammar]  (element)back one token to (number)
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1639]]
-[info][grammar]  mode status: number
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1640]]
-[info][grammar]  (number)get int number: 20
-[info][grammar]  (number)add one token
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1641]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1642]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1643]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1644]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1645]]
-[info][grammar]  mode status: call_down
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1646]]
-[info][grammar]  (call_down)reduce right
-[info][lexical]  get value = ')' len = 1 from 9
-[info]token type = 9
-[debug][grammar]  get token type : 9; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1647]]
-[debug][token : [1648]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1649]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1650]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1651]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1652]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1653]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1654]]
-[info][grammar]  mode status: power
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1655]]
-[info][grammar]  (power)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1656]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1657]]
-[info][grammar]  (power)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1658]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1659]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1660]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1661]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1662]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1663]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1664]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1665]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1666]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1667]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1668]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1669]]
-[info][grammar]  (factor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1670]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1671]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1672]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1673]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1674]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1675]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1676]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1677]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1678]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1679]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1680]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1681]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1682]]
-[info][grammar]  mode status: factor
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1683]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1684]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1685]]
-[info][grammar]  (bit_move)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1686]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1687]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1688]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1689]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1690]]
-[info][grammar]  mode status: bit_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1691]]
-[info][grammar]  (factor)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1692]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1693]]
-[info][grammar]  (bit_and)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1694]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1695]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1696]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1697]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1698]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1699]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1700]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1701]]
-[info][grammar]  (bit_or)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1702]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1703]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1704]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1705]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1706]]
-[info][grammar]  mode status: bit_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1707]]
-[info][grammar]  (bit_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1708]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1709]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1710]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1711]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1712]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1713]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1714]]
-[info][grammar]  mode status: polynomial
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1715]]
-[info][grammar]  (polynomial)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1716]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1717]]
-[info][grammar]  (polynomial)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1718]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1719]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1720]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1721]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1722]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1723]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1724]]
-[info][grammar]  mode status: bool_and
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1725]]
-[info][grammar]  (bool_and)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1726]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1727]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1728]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1729]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1730]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1731]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1732]]
-[info][grammar]  mode status: bool_or
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1733]]
-[info][grammar]  (bool_or)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1734]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1735]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1736]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1737]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1738]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1739]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1740]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1741]]
-[info][grammar]  (call_back_)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1742]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1743]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1744]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1745]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1746]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1747]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1748]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1749]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1750]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1751]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1752]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1753]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1754]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1755]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1756]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1757]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1758]]
-[info][grammar]  mode status: formal_parameter
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1759]]
-[info][grammar]  (formal_parameter)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1760]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1761]]
-[info][grammar]  (formal_parameter)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1762]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1763]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1764]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1765]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1766]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1767]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1768]]
-[info][grammar]  mode status: call_back_
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1769]]
-[info][grammar]  (call_back_)reduce right
-[info][lexical]  get value = '
-' len = 1 from 2
-[info]token type = 2
-[debug][grammar]  get token type : 2; data type : 1
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1770]]
-[debug][token : [1771]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1772]]
-[info][grammar]  (call_back_)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1773]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1774]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1775]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1776]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1777]]
-[info][grammar]  mode status: eq_number
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1778]]
-[info][grammar]  (eq_number)reduce right
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1779]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1780]]
-[info][grammar]  (bit_notor)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1781]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1782]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1783]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1784]]
-[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 2]
-[debug][token : [1785]]
-[debug][grammar]  pop a token[seek : 0, index : 1]
-[debug][token : [1786]]
-[debug][grammar]  get token seek += 1 : 0, index : 1
-[debug][token : [1787]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1788]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1789]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1790]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1791]]
-[info][grammar]  mode status: command_list
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1792]]
-[info][grammar]  (command_list)reduce right
-[info]token type = <EOF>
-[debug][grammar]  get token type : -3; data type : 7
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1793]]
-[debug][token : [1794]]
-[info][grammar]  mode status: command
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1795]]
-[info][grammar]  (command)back <EOF>
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1796]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [1797]]
-[info][grammar]  (command_list)out
-[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [1798]]
-[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
-[debug][grammar]  after add a token[seek : 2, index : 2]
-[debug][token : [1799]]
-[debug][grammar]  back a token[seek : 1, index : 2]
-[debug][token : [1800]]

+ 78 - 1904
token.log

@@ -1,1908 +1,82 @@
-[debug][token : [  0]]  token list[from                      add_token] :: <token : 40 [pop] data(text) : def num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [  1]]  token list[from      safe_get_token(get token)] :: <token : 40 [pop] data(text) : def num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  0]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  1]]  token list[from      safe_get_token(get token)] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [  2]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [  3]]  token list[from                      add_token] :: <token : 40 [pop] data(text) : def num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  3]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [  4]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [  5]]  token list[from                      add_token] :: <token : 40 [pop] data(text) : def num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  5]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [  6]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [  7]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [  8]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [  9]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 10]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 11]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 12]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 13]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 14]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 15]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 16]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 17]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 18]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 19]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 20]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 21]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 22]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 23]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 24]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 25]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 26]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 27]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 28]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 29]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 30]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 31]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 32]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 33]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 34]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 35]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 36]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 37]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 38]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 39]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 40]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 41]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 42]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 43]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 44]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 45]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 46]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 47]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 48]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 49]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 50]]  token list[from                      add_token] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 51]]  token list[from      safe_get_token(get token)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  7]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  8]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [  9]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 10]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 11]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 12]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 13]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 14]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 15]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 16]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 17]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 18]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 19]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 20]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 21]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 22]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 23]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 24]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 25]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 26]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 27]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 28]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 29]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 30]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 31]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 32]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 33]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 34]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 35]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 36]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 37]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 38]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 39]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 40]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 41]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 42]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 43]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 44]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 45]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 46]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 47]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 48]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 49]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 50]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 51]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 52]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 53]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 54]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [ 55]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 56]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 57]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 58]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 59]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 60]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 61]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 62]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [ 63]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 64]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 65]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 66]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 67]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 68]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 69]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 70]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 71]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 72]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 73]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 74]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [ 75]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 76]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 77]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 78]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 79]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 80]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 81]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 82]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [ 83]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 84]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 85]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 86]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 87]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 88]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 89]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 90]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [ 91]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 92]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 93]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [ 94]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 95]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 96]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 97]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [ 98]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [ 99]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [100]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [101]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [102]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [103]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [104]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [105]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [106]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [107]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [108]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [109]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [110]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [111]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [112]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [113]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [114]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [115]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [116]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [117]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [118]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [119]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [120]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [121]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [122]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [123]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [124]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [125]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [126]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [127]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [128]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [129]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [130]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [131]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [132]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [133]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [134]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [135]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [136]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [137]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [138]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [139]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [140]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [141]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [142]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [143]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [144]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [145]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [146]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [147]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [148]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [149]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [150]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [151]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [152]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [153]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [154]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [155]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [156]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [157]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [158]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [159]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 3 on c45482c0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [160]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [161]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [162]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [163]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [164]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [165]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [166]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [167]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [168]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [169]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [170]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [171]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [172]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [173]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [174]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [175]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [176]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [177]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [178]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [179]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [180]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [181]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [182]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [183]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [184]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [185]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [186]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [187]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [188]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [189]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [190]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [191]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [192]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [193]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [194]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [195]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [196]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [197]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [198]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [199]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [200]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [201]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [202]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [203]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [204]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [205]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [206]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [207]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [208]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [209]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [210]]  token list[from                      add_token] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [211]]  token list[from      safe_get_token(get token)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [212]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [213]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [214]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [215]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [216]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [217]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [218]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [219]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [220]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [221]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [222]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [223]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [224]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [225]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [226]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [227]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [228]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [229]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [230]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [231]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [232]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [233]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [234]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [235]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [236]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [237]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [238]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [239]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [240]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [241]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [242]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [243]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [244]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [245]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [246]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [247]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [248]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [249]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [250]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [251]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [252]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [253]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [254]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [255]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [256]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [257]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [258]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [259]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [260]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [261]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [262]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [263]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [264]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [265]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [266]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [267]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [268]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [269]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [270]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [271]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [272]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [273]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [274]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [275]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [276]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [277]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [278]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [279]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [280]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [281]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [282]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [283]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [284]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [285]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [286]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [287]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [288]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [289]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [290]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [291]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [292]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [293]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [294]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [295]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [296]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [297]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [298]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [299]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [300]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [301]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [302]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [303]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [304]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [305]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [306]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [307]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [308]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [309]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [310]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [311]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [312]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [313]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [314]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [315]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [316]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [317]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [318]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [319]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 3 on c45483d0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [320]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [321]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [322]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [323]]  token list[from                      add_token] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [324]]  token list[from                     back_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [325]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548430num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [326]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [327]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [328]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [329]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [330]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [331]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [332]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [333]]  token list[from                     back_token] :: <token : 18 [seek] data(text) : z num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [334]]  token list[from      safe_get_token(move seek)] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [335]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [336]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [337]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [338]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [339]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [340]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [341]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [342]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [343]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [344]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [345]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [346]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [347]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [348]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [349]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [350]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [351]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [352]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [353]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [354]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [355]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [356]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [357]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [358]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [359]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [360]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [361]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [362]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [363]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [364]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [365]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [366]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [367]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [368]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [369]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [370]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [371]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [372]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [373]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [374]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [375]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [376]]  token list[from                      add_token] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [377]]  token list[from      safe_get_token(get token)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [378]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [379]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [380]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [381]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [382]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [383]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [384]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [385]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [386]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [387]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [388]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [389]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [390]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [391]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [392]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [393]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [394]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [395]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [396]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [397]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [398]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [399]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [400]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [401]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [402]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [403]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [404]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [405]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [406]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [407]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [408]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [409]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [410]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [411]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [412]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [413]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [414]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [415]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [416]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [417]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [418]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [419]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [420]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [421]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [422]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [423]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [424]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [425]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [426]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [427]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [428]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [429]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [430]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [431]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [432]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [433]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [434]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [435]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [436]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [437]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [438]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [439]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [440]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [441]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [442]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [443]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [444]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [445]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [446]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [447]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [448]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [449]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [450]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [451]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [452]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [453]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [454]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [455]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [456]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [457]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [458]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [459]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [460]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [461]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [462]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [463]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [464]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [465]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [466]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [467]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [468]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [469]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [470]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [471]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [472]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [473]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [474]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [475]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [476]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [477]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [478]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [479]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [480]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [481]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548480 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [482]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [483]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [484]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [485]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 3 on c4548480 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [486]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [487]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [488]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [489]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [490]]  token list[from      safe_get_token(get token)] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [491]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [492]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [493]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [494]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [495]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [496]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [497]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [498]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [499]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [500]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [501]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [502]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [503]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [504]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [505]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [506]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [507]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [508]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [509]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [510]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [511]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [512]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [513]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [514]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [515]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [516]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [517]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [518]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [519]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [520]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [521]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [522]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [523]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [524]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 5 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [525]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [526]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [527]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [528]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [529]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [530]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [531]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [532]]  token list[from                      add_token] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [533]]  token list[from      safe_get_token(get token)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [534]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [535]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [536]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [537]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [538]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [539]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [540]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [541]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [542]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [543]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [544]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [545]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [546]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [547]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [548]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [549]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [550]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [551]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [552]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [553]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [554]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [555]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [556]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [557]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [558]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [559]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [560]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [561]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [562]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [563]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [564]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [565]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [566]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [567]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [568]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [569]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [570]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [571]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [572]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [573]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [574]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [575]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [576]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [577]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [578]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [579]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [580]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [581]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [582]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [583]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [584]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [585]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [586]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [587]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [588]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [589]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [590]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [591]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [592]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [593]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [594]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [595]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [596]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [597]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [598]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [599]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [600]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [601]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [602]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [603]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [604]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [605]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [606]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [607]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [608]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [609]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [610]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [611]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [612]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [613]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [614]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [615]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [616]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [617]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [618]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [619]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [620]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [621]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [622]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [623]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [624]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [625]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [626]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [627]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [628]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [629]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [630]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [631]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [632]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [633]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [634]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [635]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [636]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [637]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548520 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [638]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [639]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [640]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [641]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on c4548520 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [642]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [643]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548430num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [644]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [645]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [646]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [647]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548430num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [648]]  token list[from                      add_token] :: <token : -33 data(parameter_list) : parameter_list on c4548430num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [649]]  token list[from                     back_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548430num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [650]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [651]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [652]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [653]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [654]]  token list[from      safe_get_token(get token)] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [655]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [656]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [657]]  token list[from      safe_get_token(get token)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [658]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [659]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [660]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [661]]  token list[from                      add_token] :: <token : -8 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [662]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [663]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [664]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [665]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [666]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [667]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [668]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [669]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [670]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [671]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [672]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [673]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [674]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [675]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [676]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [677]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [678]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [679]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [680]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [681]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [682]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [683]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [684]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [685]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [686]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [687]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [688]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [689]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [690]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [691]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [692]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [693]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [694]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [695]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [696]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [697]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [698]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [699]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [700]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [701]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [702]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [703]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [704]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [705]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [706]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [707]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [708]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [709]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [710]]  token list[from                      add_token] :: <token : 5 [pop] data(text) : - num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [711]]  token list[from      safe_get_token(get token)] :: <token : 5 [pop] data(text) : - num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [712]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [713]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [714]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [pop] data(text) : - num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [715]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [716]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [717]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [718]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [719]]  token list[from      safe_get_token(move seek)] :: <token : 5 [pop] data(text) : - num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [720]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [721]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [722]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [pop] data(text) : - num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [723]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [724]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [725]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [726]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [727]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [728]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [729]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [730]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [731]]  token list[from      safe_get_token(move seek)] :: <token : 5 [pop] data(text) : - num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [732]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [733]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [734]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [pop] data(text) : - num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [735]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [736]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [737]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c45486e0 num = 0> - <token : 5 [seek] data(text) : - num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [738]]  token list[from                      pop_token] :: <token : 5 [seek] data(text) : - num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [739]]  token list[from      safe_get_token(move seek)] :: <token : 5 [pop] data(text) : - num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [740]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [741]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [742]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [743]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [744]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [745]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [746]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [747]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [748]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [749]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [750]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [751]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [752]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [753]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [754]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [755]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [756]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c4548760 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [757]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [758]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c4548760 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [759]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [760]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548760 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [761]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [762]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [763]]  token list[from      safe_get_token(get token)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [764]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [765]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548760 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [766]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [767]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [768]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [769]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [770]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [771]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [772]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [773]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548760 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [774]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [775]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [776]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [777]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [778]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [779]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [780]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [781]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [782]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [783]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [784]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [785]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548760 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [786]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [787]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548760 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [788]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [789]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [790]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [791]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [792]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [793]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [794]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [795]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [796]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [797]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [798]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [799]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [800]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [801]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [802]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [803]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [804]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [805]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [806]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [807]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [808]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [809]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [810]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [811]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [812]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [813]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [814]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [815]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [816]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [817]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [818]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [819]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [820]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [821]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [822]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [823]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [824]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [825]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [826]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [827]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [828]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [829]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [830]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [831]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [832]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [833]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [834]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [835]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [836]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [837]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [838]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [839]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [840]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [841]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [842]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [843]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [844]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [845]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [846]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [847]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [848]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [849]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [850]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [851]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [852]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [853]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [854]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [855]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [856]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [857]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [858]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [859]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [860]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [861]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [862]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [863]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [864]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [865]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [866]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [867]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [868]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [869]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [870]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [871]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [872]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [873]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [874]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [875]]  token list[from                      add_token] :: <token : -8 [pop] data(statement_value) : 2 on c45487c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [876]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [877]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [878]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [879]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [880]]  token list[from      safe_get_token(get token)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [881]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [882]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [883]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [884]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [885]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [886]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [887]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [888]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [889]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [890]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [891]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [892]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [893]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [894]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [895]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [896]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [897]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [898]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [899]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [900]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [901]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [902]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [903]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [904]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [905]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [906]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [907]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [908]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [909]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [910]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [911]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [912]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [913]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [914]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [915]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [916]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [917]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [918]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [919]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [920]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [921]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [922]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [923]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [924]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [925]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [926]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [927]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [928]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [929]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [930]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [931]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [932]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [933]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [934]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [935]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [936]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [937]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [938]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [939]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [940]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [941]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [942]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [943]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [944]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [945]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [946]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [947]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [948]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [949]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [950]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [951]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [952]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [953]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [954]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [955]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [956]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [957]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [958]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [959]]  token list[from                      add_token] :: <token : -9 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [960]]  token list[from                     back_token] :: <token : -9 [pop] num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [961]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [962]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [963]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [964]]  token list[from                      add_token] :: <token : -11 [pop] data(statement_value) : 1 on c4548640 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [965]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [966]]  token list[from                      add_token] :: <token : -31 [pop] data(statement_value) : 22 on c4548820 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [967]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [968]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [969]]  token list[from      safe_get_token(get token)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [970]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [971]]  token list[from                      add_token] :: <token : -8 [pop] data(statement_value) : 22 on c4548820 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [972]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [973]]  token list[from                      add_token] :: <token : -9 [pop] data(statement_value) : 22 on c4548820 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [974]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [975]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [976]]  token list[from      safe_get_token(get token)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [977]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [978]]  token list[from                      add_token] :: <token : -8 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [979]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [980]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [981]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [982]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [983]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [984]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [985]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [986]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [987]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [988]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [989]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [990]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [991]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [992]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [993]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [994]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [995]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [996]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [997]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [998]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [999]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1000]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1001]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1002]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1003]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1004]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1005]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1006]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1007]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1008]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1009]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1010]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1011]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1012]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1013]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1014]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1015]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1016]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1017]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1018]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1019]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1020]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1021]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1022]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1023]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1024]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1025]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1026]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1027]]  token list[from                      add_token] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1028]]  token list[from      safe_get_token(get token)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1029]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1030]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1031]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1032]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1033]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1034]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1035]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1036]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1037]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1038]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1039]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1040]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1041]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1042]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1043]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1044]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1045]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1046]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1047]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1048]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1049]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1050]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1051]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1052]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1053]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1054]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1055]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1056]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1057]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1058]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1059]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1060]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1061]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1062]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1063]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1064]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1065]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1066]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1067]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1068]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1069]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1070]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1071]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1072]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1073]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1074]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1075]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1076]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1077]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1078]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1079]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1080]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1081]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1082]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1083]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1084]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1085]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1086]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1087]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1088]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1089]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1090]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1091]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1092]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1093]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1094]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1095]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1096]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1097]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1098]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1099]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1100]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1101]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1102]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1103]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1104]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1105]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1106]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1107]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1108]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1109]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1110]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1111]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1112]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1113]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1114]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1115]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1116]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1117]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [pop] data(text) : ( num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1118]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1119]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1120]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c45488a0 num = 0> - <token : 8 [seek] data(text) : ( num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1121]]  token list[from                      pop_token] :: <token : 8 [seek] data(text) : ( num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1122]]  token list[from      safe_get_token(move seek)] :: <token : 8 [pop] data(text) : ( num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1123]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1124]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1125]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1126]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1127]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1128]]  token list[from                     back_token] :: <token : 18 [seek] data(text) : z num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1129]]  token list[from      safe_get_token(move seek)] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1130]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1131]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1132]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1133]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1134]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1135]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1136]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1137]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1138]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1139]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1140]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1141]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1142]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1143]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1144]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1145]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1146]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1147]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1148]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1149]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1150]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1151]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1152]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1153]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1154]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1155]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1156]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1157]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1158]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1159]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1160]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1161]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1162]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1163]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1164]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1165]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : z num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1166]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1167]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1168]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1169]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1170]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1171]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1172]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1173]]  token list[from                      add_token] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1174]]  token list[from      safe_get_token(get token)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1175]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1176]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1177]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1178]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1179]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1180]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1181]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1182]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1183]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1184]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1185]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1186]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1187]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1188]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1189]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1190]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1191]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1192]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1193]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1194]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1195]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1196]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1197]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1198]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1199]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1200]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1201]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1202]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1203]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1204]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1205]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1206]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1207]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1208]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1209]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1210]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1211]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1212]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1213]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1214]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1215]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1216]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1217]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1218]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1219]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1220]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1221]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1222]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1223]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1224]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1225]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1226]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1227]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1228]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1229]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1230]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1231]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1232]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1233]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1234]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1235]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1236]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1237]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1238]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1239]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1240]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1241]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1242]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1243]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1244]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1245]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1246]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1247]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1248]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1249]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1250]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1251]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1252]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1253]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1254]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1255]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1256]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1257]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1258]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1259]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1260]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1261]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1262]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1263]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1264]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1265]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1266]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1267]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1268]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1269]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1270]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1271]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1272]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1273]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1274]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1275]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1276]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1277]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1278]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548920 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1279]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1280]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1281]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1282]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 3 on c4548920 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1283]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1284]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1285]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1286]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1287]]  token list[from      safe_get_token(get token)] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1288]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1289]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1290]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1291]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1292]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1293]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1294]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1295]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1296]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1297]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1298]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1299]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1300]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1301]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1302]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1303]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1304]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1305]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1306]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1307]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1308]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1309]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1310]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1311]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1312]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1313]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1314]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1315]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1316]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1317]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1318]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1319]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1320]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1321]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 10 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1322]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1323]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1324]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1325]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1326]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1327]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1328]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1329]]  token list[from                      add_token] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1330]]  token list[from      safe_get_token(get token)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1331]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1332]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1333]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1334]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1335]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1336]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1337]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1338]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1339]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1340]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1341]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1342]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1343]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1344]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1345]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1346]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1347]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1348]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1349]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1350]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1351]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1352]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1353]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1354]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1355]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1356]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1357]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1358]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1359]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1360]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1361]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1362]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1363]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1364]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1365]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1366]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1367]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1368]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1369]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1370]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1371]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1372]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1373]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1374]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1375]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1376]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1377]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1378]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1379]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1380]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1381]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1382]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1383]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1384]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1385]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1386]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1387]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1388]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1389]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1390]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1391]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1392]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1393]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1394]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1395]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1396]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1397]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1398]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1399]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1400]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1401]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1402]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1403]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1404]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1405]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1406]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1407]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1408]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1409]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1410]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1411]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1412]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1413]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1414]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1415]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1416]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1417]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1418]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1419]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1420]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1421]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1422]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1423]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1424]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1425]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1426]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1427]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1428]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1429]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1430]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1431]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1432]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1433]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1434]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1435]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1436]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1437]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1438]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on c45489c0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1439]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1440]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548ab0num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1441]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1442]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1443]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1444]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1445]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1446]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1447]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1448]]  token list[from                     back_token] :: <token : 18 [seek] data(text) : q num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1449]]  token list[from      safe_get_token(move seek)] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1450]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1451]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1452]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1453]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1454]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1455]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1456]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1457]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1458]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1459]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1460]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1461]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1462]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1463]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1464]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1465]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1466]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1467]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1468]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1469]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1470]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1471]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1472]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1473]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1474]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1475]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1476]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1477]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1478]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1479]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1480]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1481]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1482]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1483]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : q num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1484]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1485]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1486]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1487]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1488]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1489]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1490]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1491]]  token list[from                      add_token] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1492]]  token list[from      safe_get_token(get token)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1493]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1494]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1495]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1496]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1497]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1498]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1499]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1500]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1501]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1502]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1503]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1504]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1505]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1506]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1507]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1508]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1509]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1510]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1511]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1512]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1513]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1514]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1515]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1516]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1517]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1518]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1519]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1520]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1521]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1522]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1523]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1524]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1525]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1526]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1527]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1528]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1529]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1530]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1531]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1532]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1533]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1534]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1535]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1536]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1537]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1538]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1539]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1540]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1541]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1542]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1543]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1544]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1545]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1546]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1547]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1548]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1549]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1550]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1551]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1552]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1553]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1554]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1555]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1556]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1557]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1558]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1559]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1560]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1561]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1562]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1563]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1564]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1565]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1566]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1567]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1568]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1569]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1570]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1571]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1572]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1573]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1574]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1575]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1576]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1577]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1578]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1579]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1580]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1581]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1582]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1583]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1584]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1585]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1586]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1587]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1588]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1589]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1590]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1591]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1592]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1593]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1594]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1595]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1596]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1597]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1598]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1599]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1600]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 3 on c4548ae0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1601]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1602]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1603]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1604]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1605]]  token list[from      safe_get_token(get token)] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1606]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1607]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1608]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1609]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1610]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1611]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1612]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1613]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1614]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1615]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1616]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1617]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1618]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1619]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1620]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1621]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1622]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1623]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1624]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1625]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1626]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1627]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1628]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1629]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1630]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1631]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1632]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1633]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1634]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1635]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1636]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1637]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1638]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1639]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1640]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1641]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1642]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1643]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1644]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1645]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1646]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1647]]  token list[from                      add_token] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1648]]  token list[from      safe_get_token(get token)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1649]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1650]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1651]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1652]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1653]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1654]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1655]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1656]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1657]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1658]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1659]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1660]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1661]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1662]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1663]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1664]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1665]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1666]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1667]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1668]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1669]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1670]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1671]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1672]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1673]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1674]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1675]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1676]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1677]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1678]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1679]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1680]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1681]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1682]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1683]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1684]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1685]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1686]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1687]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1688]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1689]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1690]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1691]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1692]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1693]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1694]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1695]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1696]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1697]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1698]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1699]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1700]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1701]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1702]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1703]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1704]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1705]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1706]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1707]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1708]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1709]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1710]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1711]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1712]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1713]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1714]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1715]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1716]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1717]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1718]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1719]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1720]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1721]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1722]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1723]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1724]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1725]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1726]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1727]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1728]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1729]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1730]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1731]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1732]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1733]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1734]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1735]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1736]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1737]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1738]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1739]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1740]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1741]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1742]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1743]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1744]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1745]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1746]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1747]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1748]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1749]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1750]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1751]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1752]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1753]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1754]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1755]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1756]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on c4548b80 num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1757]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1758]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548ab0num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1759]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1760]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1761]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1762]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548ab0num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1763]]  token list[from                      add_token] :: <token : -33 data(parameter_list) : parameter_list on c4548ab0num = 0> - <token : 9 [pop] data(text) : ) num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1764]]  token list[from                     back_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on c4548ab0num = 0> - <token : 9 [seek] data(text) : ) num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1765]]  token list[from                      pop_token] :: <token : 9 [seek] data(text) : ) num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1766]]  token list[from      safe_get_token(move seek)] :: <token : 9 [pop] data(text) : ) num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1767]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1768]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1769]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1770]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1771]]  token list[from      safe_get_token(get token)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1772]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1773]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1774]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on c4548ca0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1775]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1776]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1777]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1778]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1779]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1780]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1781]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1782]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on c4548ca0 num = 0> - <token : 2 [pop] data(text) : 
- num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1783]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1784]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1785]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <token : 2 [seek] data(text) : 
- num = 1> - <NULL [index] num = 2> -  ||- END
-[debug][token : [1786]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
- num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1787]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
- num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1788]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1789]]  token list[from                      add_token] :: <token : -8 [pop] data(statement_value) : 24 on c4548ca0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1790]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1791]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1792]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1793]]  token list[from                      add_token] :: <token : -3 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1794]]  token list[from      safe_get_token(get token)] :: <token : -3 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1795]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1796]]  token list[from                      add_token] :: <token : -3 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1797]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1798]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
-[debug][token : [1799]]  token list[from                      add_token] :: <token : -9 num = 0> - <token : -3 [pop] num = 1> - <NULL [index/seek] num = 2> -  ||- END
-[debug][token : [1800]]  token list[from                     back_token] :: <token : -9 [pop] num = 0> - <token : -3 [seek] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 53]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 54]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 55]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 56]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 57]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 58]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 59]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 60]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 61]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 62]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 63]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 64]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 65]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 66]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 67]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 68]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 69]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 70]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 71]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 72]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 73]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 74]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 75]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 76]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 77]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 78]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 79]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 80]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 81]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END

+ 84 - 0
tokenINFO.log

@@ -0,0 +1,84 @@
+[info][token : [  0]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  1]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  2]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  3]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  4]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  5]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  6]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  7]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  8]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  9]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 10]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 11]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 12]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 13]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 14]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 15]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 16]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 17]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 18]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 19]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 20]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 21]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 22]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 23]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 24]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 25]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 26]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 27]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 28]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 29]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 30]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 31]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 32]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 33]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 34]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 35]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 36]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[debug][tag 4]
+[info][token : [ 37]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 38]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 39]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 40]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 41]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 42]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 43]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 44]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[debug][tag 2]
+[info][token : [ 45]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 46]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 47]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 48]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 49]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 50]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 51]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 52]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 53]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 54]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 55]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 56]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 57]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 58]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 59]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 60]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 61]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 62]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 63]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 64]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 65]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 66]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 67]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 68]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 69]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 70]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 71]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 72]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 73]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 74]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 75]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 76]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 77]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 78]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 79]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 80]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 81]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END

برخی فایل ها در این مقایسه diff نمایش داده نمی شوند زیرا تعداد فایل ها بسیار زیاد است