diff --git "a/operator/operator_500.jsonl" "b/operator/operator_500.jsonl" new file mode 100644--- /dev/null +++ "b/operator/operator_500.jsonl" @@ -0,0 +1,515 @@ +{"id":1,"func_id":"W4YGzv6Whe","symbol":"+","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":null,"definition_type":null,"priority":1,"associativity_direction":"left","op_compute_func":"def op_W4YGzv6Whe(a, b):\n sum_ab = a + b \n if sum_ab > thres:\n return float(\"inf\")\n elif sum_ab < -thres:\n return float(\"-inf\")\n return sum_ab","op_count_func":"def op_count_W4YGzv6Whe(a, b):\n return 1","dependencies":[]} +{"id":2,"func_id":"rysDP5nf3Z","symbol":"-","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":null,"definition_type":null,"priority":2,"associativity_direction":"right","op_compute_func":"def op_rysDP5nf3Z(a, b):\n diff_ab = a - b \n if diff_ab > thres:\n return float(\"inf\")\n elif diff_ab < -thres:\n return float(\"-inf\")\n return diff_ab","op_count_func":"def op_count_rysDP5nf3Z(a, b):\n return 1","dependencies":[]} +{"id":3,"func_id":"t8gj7n24qd","symbol":"-","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":null,"definition_type":null,"priority":2,"associativity_direction":"right","op_compute_func":"def op_t8gj7n24qd(a):\n neg_a = -a \n if neg_a > thres:\n return float(\"inf\")\n elif neg_a < -thres:\n return float(\"-inf\")\n return neg_a","op_count_func":"def op_count_t8gj7n24qd(a):\n return 1","dependencies":[]} +{"id":4,"func_id":"9HNa5Wba9A","symbol":"*","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":null,"definition_type":null,"priority":3,"associativity_direction":"left","op_compute_func":"def op_9HNa5Wba9A(a, b):\n prod_ab = a * b \n if prod_ab > thres:\n return float(\"inf\")\n elif prod_ab < -thres:\n return float(\"-inf\")\n return prod_ab","op_count_func":"def op_count_9HNa5Wba9A(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (b != b) or a in special_values or b in special_values:\n return 1\n count = min(abs(a), abs(b))\n return count if count > 0 else 1","dependencies":["W4YGzv6Whe"]} +{"id":5,"func_id":"XhwjNDsVaA","symbol":"/","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":null,"definition_type":null,"priority":1,"associativity_direction":"left","op_compute_func":"def op_XhwjNDsVaA(a, b):\n if b == 0:\n return float(\"nan\")\n if b == float('inf') or b == float('-inf'):\n if a != float('inf') and a != float('-inf') and a == a:\n return 0\n return a // b","op_count_func":"def op_count_XhwjNDsVaA(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (b != b) or a in special_values or b in special_values:\n return 1\n if b == 0:\n return 1\n count = abs(a) // abs(b)\n return count if count > 0 else 1","dependencies":["rysDP5nf3Z"]} +{"id":6,"func_id":"k8jYdgA6NY","symbol":"%","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":null,"definition_type":null,"priority":2,"associativity_direction":"right","op_compute_func":"def op_k8jYdgA6NY(a, b):\n if b == 0:\n return float(\"nan\")\n return a % b","op_count_func":"def op_count_k8jYdgA6NY(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (b != b) or a in special_values or b in special_values:\n return 1\n if b == 0:\n return 1\n count = abs(a) // abs(b)\n return count if count > 0 else 1","dependencies":["rysDP5nf3Z"]} +{"id":7,"func_id":"eLAdDNolq6","symbol":"≤/","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≤/a = { (484-a) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_eLAdDNolq6(a):\n return op_rysDP5nf3Z(484,a)\n","op_count_func":"def op_count_eLAdDNolq6(a):\n count = op_count_rysDP5nf3Z(484,a)\n return count\n","dependencies":["rysDP5nf3Z"]} +{"id":8,"func_id":"DIvbN7qnHd","symbol":"⊠≄⫣","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊠≄⫣ = { ((-a)-(-a)) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_DIvbN7qnHd(a):\n return op_rysDP5nf3Z(op_t8gj7n24qd(a),op_t8gj7n24qd(a))\n","op_count_func":"def op_count_DIvbN7qnHd(a):\n count = op_count_t8gj7n24qd(a)+op_count_t8gj7n24qd(a)+op_count_rysDP5nf3Z(op_t8gj7n24qd(a),op_t8gj7n24qd(a))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":9,"func_id":"2td37pGCOC","symbol":"⩦⩻⨪","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⩦⩻⨪a = { ((a-a)-(-a)) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_2td37pGCOC(a):\n return op_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_t8gj7n24qd(a))\n","op_count_func":"def op_count_2td37pGCOC(a):\n count = op_count_rysDP5nf3Z(a,a)+op_count_t8gj7n24qd(a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_t8gj7n24qd(a))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":10,"func_id":"tifHPKVTfV","symbol":"⇼⇔∾","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⇼⇔∾b = { (-(a-b)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_tifHPKVTfV(a, b):\n return op_t8gj7n24qd(op_rysDP5nf3Z(a,b))\n","op_count_func":"def op_count_tifHPKVTfV(a, b):\n count = op_count_rysDP5nf3Z(a,b)+op_count_t8gj7n24qd(op_rysDP5nf3Z(a,b))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":11,"func_id":"glklzrTFfD","symbol":"⨁⊸⫻","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⨁⊸⫻ = { ((a-a)+(a+a)) , if a<=24 ; a , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_glklzrTFfD(a):\n if a <= 24:\n return op_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,a))\n else:\n return a\n","op_count_func":"def op_count_glklzrTFfD(a):\n if a <= 24:\n count = op_count_rysDP5nf3Z(a,a)+op_count_W4YGzv6Whe(a,a)+op_count_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,a))\n else:\n count = 1\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z"]} +{"id":12,"func_id":"23Mk6UjR3U","symbol":"⋷","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⋷b = { ((-a)+(b+b)) , if a>575 ; (-(a+a)) , else }","definition_type":"branch_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_23Mk6UjR3U(a, b):\n if a > 575:\n return op_W4YGzv6Whe(op_t8gj7n24qd(a),op_W4YGzv6Whe(b,b))\n else:\n return op_t8gj7n24qd(op_W4YGzv6Whe(a,a))\n","op_count_func":"def op_count_23Mk6UjR3U(a, b):\n if a > 575:\n count = op_count_t8gj7n24qd(a)+op_count_W4YGzv6Whe(b,b)+op_count_W4YGzv6Whe(op_t8gj7n24qd(a),op_W4YGzv6Whe(b,b))\n else:\n count = op_count_W4YGzv6Whe(a,a)+op_count_t8gj7n24qd(op_W4YGzv6Whe(a,a))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":13,"func_id":"12rbrZMWeM","symbol":"⋳⪒","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⋳⪒b = { (((a-b)-(a-a))-((24-a)-(-263))) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_12rbrZMWeM(a, b):\n return op_rysDP5nf3Z(op_rysDP5nf3Z(op_rysDP5nf3Z(a,b),op_rysDP5nf3Z(a,a)),op_rysDP5nf3Z(op_rysDP5nf3Z(24,a),op_t8gj7n24qd(263)))\n","op_count_func":"def op_count_12rbrZMWeM(a, b):\n count = op_count_rysDP5nf3Z(a,b)+op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,b),op_rysDP5nf3Z(a,a))+op_count_rysDP5nf3Z(24,a)+op_count_t8gj7n24qd(263)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(24,a),op_t8gj7n24qd(263))+op_count_rysDP5nf3Z(op_rysDP5nf3Z(op_rysDP5nf3Z(a,b),op_rysDP5nf3Z(a,a)),op_rysDP5nf3Z(op_rysDP5nf3Z(24,a),op_t8gj7n24qd(263)))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":14,"func_id":"JLbD19bQDL","symbol":"⪠⩆⊳","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⪠⩆⊳ = { ((a+a)-((a-a)+(a+a))) , if ((-a)!=71 or a<=364) ; (-((a+a)+(a-a))) , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_JLbD19bQDL(a):\n if (op_t8gj7n24qd(a) != 71 or a <= 364):\n return op_rysDP5nf3Z(op_W4YGzv6Whe(a,a),op_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,a)))\n else:\n return op_t8gj7n24qd(op_W4YGzv6Whe(op_W4YGzv6Whe(a,a),op_rysDP5nf3Z(a,a)))\n","op_count_func":"def op_count_JLbD19bQDL(a):\n if (op_t8gj7n24qd(a) != 71 or a <= 364):\n count = op_count_W4YGzv6Whe(a,a)+op_count_rysDP5nf3Z(a,a)+op_count_W4YGzv6Whe(a,a)+op_count_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,a))+op_count_rysDP5nf3Z(op_W4YGzv6Whe(a,a),op_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,a)))+op_count_t8gj7n24qd(a)\n else:\n count = op_count_W4YGzv6Whe(a,a)+op_count_rysDP5nf3Z(a,a)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(a,a),op_rysDP5nf3Z(a,a))+op_count_t8gj7n24qd(op_W4YGzv6Whe(op_W4YGzv6Whe(a,a),op_rysDP5nf3Z(a,a)))\n return count\n","dependencies":["rysDP5nf3Z","W4YGzv6Whe","t8gj7n24qd"]} +{"id":15,"func_id":"f6k1SAg4EE","symbol":"⪒","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪒b = { ((-a)+(-b)) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_f6k1SAg4EE(a, b):\n return op_W4YGzv6Whe(op_t8gj7n24qd(a),op_t8gj7n24qd(b))\n","op_count_func":"def op_count_f6k1SAg4EE(a, b):\n count = op_count_t8gj7n24qd(a)+op_count_t8gj7n24qd(b)+op_count_W4YGzv6Whe(op_t8gj7n24qd(a),op_t8gj7n24qd(b))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":16,"func_id":"14qkJME0vr","symbol":"⊦⊿","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊦⊿ = { ((-(a+a))-((a+79)-(a-a))) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_14qkJME0vr(a):\n return op_rysDP5nf3Z(op_t8gj7n24qd(op_W4YGzv6Whe(a,a)),op_rysDP5nf3Z(op_W4YGzv6Whe(a,79),op_rysDP5nf3Z(a,a)))\n","op_count_func":"def op_count_14qkJME0vr(a):\n count = op_count_W4YGzv6Whe(a,a)+op_count_t8gj7n24qd(op_W4YGzv6Whe(a,a))+op_count_W4YGzv6Whe(a,79)+op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(op_W4YGzv6Whe(a,79),op_rysDP5nf3Z(a,a))+op_count_rysDP5nf3Z(op_t8gj7n24qd(op_W4YGzv6Whe(a,a)),op_rysDP5nf3Z(op_W4YGzv6Whe(a,79),op_rysDP5nf3Z(a,a)))\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z","t8gj7n24qd"]} +{"id":17,"func_id":"eH2TOUuTDT","symbol":"⪐","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⪐ = { (a+a) , if (-a)!=532 or a<368 ; (-a) , else }","definition_type":"branch_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_eH2TOUuTDT(a):\n if op_t8gj7n24qd(a) != 532 or a < 368:\n return op_W4YGzv6Whe(a,a)\n else:\n return op_t8gj7n24qd(a)\n","op_count_func":"def op_count_eH2TOUuTDT(a):\n if op_t8gj7n24qd(a) != 532 or a < 368:\n count = op_count_W4YGzv6Whe(a,a)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_t8gj7n24qd(a)\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":18,"func_id":"i8ToyICDmI","symbol":"∲⫓","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∲⫓b = { a , if b<=622 ; ((-b)+b) , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_i8ToyICDmI(a, b):\n if b <= 622:\n return a\n else:\n return op_W4YGzv6Whe(op_t8gj7n24qd(b),b)\n","op_count_func":"def op_count_i8ToyICDmI(a, b):\n if b <= 622:\n count = 1\n else:\n count = op_count_t8gj7n24qd(b)+op_count_W4YGzv6Whe(op_t8gj7n24qd(b),b)\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":19,"func_id":"7j4O788W3g","symbol":"↺","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a↺b = { ((b-a)-(146-b)) , if ((-a)<=494 and (-a)>=758) ; (-(-b)) , else }","definition_type":"branch_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_7j4O788W3g(a, b):\n if (op_t8gj7n24qd(a) <= 494 and op_t8gj7n24qd(a) >= 758):\n return op_rysDP5nf3Z(op_rysDP5nf3Z(b,a),op_rysDP5nf3Z(146,b))\n else:\n return op_t8gj7n24qd(op_t8gj7n24qd(b))\n","op_count_func":"def op_count_7j4O788W3g(a, b):\n if (op_t8gj7n24qd(a) <= 494 and op_t8gj7n24qd(a) >= 758):\n count = op_count_rysDP5nf3Z(b,a)+op_count_rysDP5nf3Z(146,b)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(b,a),op_rysDP5nf3Z(146,b))+op_count_t8gj7n24qd(a)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_t8gj7n24qd(b)+op_count_t8gj7n24qd(op_t8gj7n24qd(b))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":20,"func_id":"sdazOOVcIp","symbol":"⪨≂","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪨≂b = { (((a-117)-b)-((145-b)-(a-a))) , if (-b)==187 ; ((-(b-102))-((b-a)-a)) , else }","definition_type":"branch_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_sdazOOVcIp(a, b):\n if op_t8gj7n24qd(b) == 187:\n return op_rysDP5nf3Z(op_rysDP5nf3Z(op_rysDP5nf3Z(a,117),b),op_rysDP5nf3Z(op_rysDP5nf3Z(145,b),op_rysDP5nf3Z(a,a)))\n else:\n return op_rysDP5nf3Z(op_t8gj7n24qd(op_rysDP5nf3Z(b,102)),op_rysDP5nf3Z(op_rysDP5nf3Z(b,a),a))\n","op_count_func":"def op_count_sdazOOVcIp(a, b):\n if op_t8gj7n24qd(b) == 187:\n count = op_count_rysDP5nf3Z(a,117)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,117),b)+op_count_rysDP5nf3Z(145,b)+op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(145,b),op_rysDP5nf3Z(a,a))+op_count_rysDP5nf3Z(op_rysDP5nf3Z(op_rysDP5nf3Z(a,117),b),op_rysDP5nf3Z(op_rysDP5nf3Z(145,b),op_rysDP5nf3Z(a,a)))+op_count_t8gj7n24qd(b)\n else:\n count = op_count_rysDP5nf3Z(b,102)+op_count_t8gj7n24qd(op_rysDP5nf3Z(b,102))+op_count_rysDP5nf3Z(b,a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(b,a),a)+op_count_rysDP5nf3Z(op_t8gj7n24qd(op_rysDP5nf3Z(b,102)),op_rysDP5nf3Z(op_rysDP5nf3Z(b,a),a))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":21,"func_id":"XIabStNQrY","symbol":"⇋≉","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇋≉ = { ((a-98)-(-a)) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_XIabStNQrY(a):\n return op_rysDP5nf3Z(op_rysDP5nf3Z(a,98),op_t8gj7n24qd(a))\n","op_count_func":"def op_count_XIabStNQrY(a):\n count = op_count_rysDP5nf3Z(a,98)+op_count_t8gj7n24qd(a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,98),op_t8gj7n24qd(a))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":22,"func_id":"u6S6b8DprG","symbol":"↽≂","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"↽≂a = { (-(a+a)) , if a<=64 or (-a)>182 or a!=568 ; ((a-a)-(a-a)) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_u6S6b8DprG(a):\n if a <= 64 or op_t8gj7n24qd(a) > 182 or a != 568:\n return op_t8gj7n24qd(op_W4YGzv6Whe(a,a))\n else:\n return op_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(a,a))\n","op_count_func":"def op_count_u6S6b8DprG(a):\n if a <= 64 or op_t8gj7n24qd(a) > 182 or a != 568:\n count = op_count_W4YGzv6Whe(a,a)+op_count_t8gj7n24qd(op_W4YGzv6Whe(a,a))+op_count_t8gj7n24qd(a)\n else:\n count = op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(a,a))\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z","t8gj7n24qd"]} +{"id":23,"func_id":"xUOZtlo3hN","symbol":"⨞⊢","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⨞⊢a = { (-(a+174)) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_xUOZtlo3hN(a):\n return op_t8gj7n24qd(op_W4YGzv6Whe(a,174))\n","op_count_func":"def op_count_xUOZtlo3hN(a):\n count = op_count_W4YGzv6Whe(a,174)+op_count_t8gj7n24qd(op_W4YGzv6Whe(a,174))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":24,"func_id":"Ph9nP6C5qx","symbol":"≧⫂∧","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a≧⫂∧b = { (a-b) , if (-b)>136 ; (b-473) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_Ph9nP6C5qx(a, b):\n if op_t8gj7n24qd(b) > 136:\n return op_rysDP5nf3Z(a,b)\n else:\n return op_rysDP5nf3Z(b,473)\n","op_count_func":"def op_count_Ph9nP6C5qx(a, b):\n if op_t8gj7n24qd(b) > 136:\n count = op_count_rysDP5nf3Z(a,b)+op_count_t8gj7n24qd(b)\n else:\n count = op_count_rysDP5nf3Z(b,473)\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":25,"func_id":"P8v4zCKN1o","symbol":"∥⊫","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∥⊫a = { (-(-(868+a))) , if (-a)<497 ; ((-(a+55))+a) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_P8v4zCKN1o(a):\n if op_t8gj7n24qd(a) < 497:\n return op_t8gj7n24qd(op_t8gj7n24qd(op_W4YGzv6Whe(868,a)))\n else:\n return op_W4YGzv6Whe(op_t8gj7n24qd(op_W4YGzv6Whe(a,55)),a)\n","op_count_func":"def op_count_P8v4zCKN1o(a):\n if op_t8gj7n24qd(a) < 497:\n count = op_count_W4YGzv6Whe(868,a)+op_count_t8gj7n24qd(op_W4YGzv6Whe(868,a))+op_count_t8gj7n24qd(op_t8gj7n24qd(op_W4YGzv6Whe(868,a)))+op_count_t8gj7n24qd(a)\n else:\n count = op_count_W4YGzv6Whe(a,55)+op_count_t8gj7n24qd(op_W4YGzv6Whe(a,55))+op_count_W4YGzv6Whe(op_t8gj7n24qd(op_W4YGzv6Whe(a,55)),a)\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":26,"func_id":"Z2TMIBDE3Q","symbol":"⩤","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⩤ = { (a-a) , if (-a)==434 ; (-a) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_Z2TMIBDE3Q(a):\n if op_t8gj7n24qd(a) == 434:\n return op_rysDP5nf3Z(a,a)\n else:\n return op_t8gj7n24qd(a)\n","op_count_func":"def op_count_Z2TMIBDE3Q(a):\n if op_t8gj7n24qd(a) == 434:\n count = op_count_rysDP5nf3Z(a,a)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_t8gj7n24qd(a)\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":27,"func_id":"EBcxylXtPf","symbol":"⫌⩹⨱","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫌⩹⨱ = { (((80+a)+(750-a))+((149+422)+(a+a))) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_EBcxylXtPf(a):\n return op_W4YGzv6Whe(op_W4YGzv6Whe(op_W4YGzv6Whe(80,a),op_rysDP5nf3Z(750,a)),op_W4YGzv6Whe(op_W4YGzv6Whe(149,422),op_W4YGzv6Whe(a,a)))\n","op_count_func":"def op_count_EBcxylXtPf(a):\n count = op_count_W4YGzv6Whe(80,a)+op_count_rysDP5nf3Z(750,a)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(80,a),op_rysDP5nf3Z(750,a))+op_count_W4YGzv6Whe(149,422)+op_count_W4YGzv6Whe(a,a)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(149,422),op_W4YGzv6Whe(a,a))+op_count_W4YGzv6Whe(op_W4YGzv6Whe(op_W4YGzv6Whe(80,a),op_rysDP5nf3Z(750,a)),op_W4YGzv6Whe(op_W4YGzv6Whe(149,422),op_W4YGzv6Whe(a,a)))\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z"]} +{"id":28,"func_id":"BjRHVeLaeN","symbol":"⫩⊇","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫩⊇ = { (-(a-42)) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_BjRHVeLaeN(a):\n return op_t8gj7n24qd(op_rysDP5nf3Z(a,42))\n","op_count_func":"def op_count_BjRHVeLaeN(a):\n count = op_count_rysDP5nf3Z(a,42)+op_count_t8gj7n24qd(op_rysDP5nf3Z(a,42))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":29,"func_id":"COABgblf1C","symbol":"⊭↱","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊭↱b = { (((b+b)+(-a))+((-a)+5)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_COABgblf1C(a, b):\n return op_W4YGzv6Whe(op_W4YGzv6Whe(op_W4YGzv6Whe(b,b),op_t8gj7n24qd(a)),op_W4YGzv6Whe(op_t8gj7n24qd(a),5))\n","op_count_func":"def op_count_COABgblf1C(a, b):\n count = op_count_W4YGzv6Whe(b,b)+op_count_t8gj7n24qd(a)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(b,b),op_t8gj7n24qd(a))+op_count_t8gj7n24qd(a)+op_count_W4YGzv6Whe(op_t8gj7n24qd(a),5)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(op_W4YGzv6Whe(b,b),op_t8gj7n24qd(a)),op_W4YGzv6Whe(op_t8gj7n24qd(a),5))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":30,"func_id":"DpFCA1CohY","symbol":"⋗⩬⋾","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⋗⩬⋾a = { (-(-a)) , if (a<=390 and (-a)==853 and (-a)<3) ; ((-a)-(a+a)) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_DpFCA1CohY(a):\n if (a <= 390 and op_t8gj7n24qd(a) == 853 and op_t8gj7n24qd(a) < 3):\n return op_t8gj7n24qd(op_t8gj7n24qd(a))\n else:\n return op_rysDP5nf3Z(op_t8gj7n24qd(a),op_W4YGzv6Whe(a,a))\n","op_count_func":"def op_count_DpFCA1CohY(a):\n if (a <= 390 and op_t8gj7n24qd(a) == 853 and op_t8gj7n24qd(a) < 3):\n count = op_count_t8gj7n24qd(a)+op_count_t8gj7n24qd(op_t8gj7n24qd(a))+op_count_t8gj7n24qd(a)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_t8gj7n24qd(a)+op_count_W4YGzv6Whe(a,a)+op_count_rysDP5nf3Z(op_t8gj7n24qd(a),op_W4YGzv6Whe(a,a))\n return count\n","dependencies":["rysDP5nf3Z","W4YGzv6Whe","t8gj7n24qd"]} +{"id":31,"func_id":"DZ8iAZOCBD","symbol":"⊉≛↸","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊉≛↸b = { ((-a)+(a-b)) , if (-a)>=60 ; (a-(-a)) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_DZ8iAZOCBD(a, b):\n if op_t8gj7n24qd(a) >= 60:\n return op_W4YGzv6Whe(op_t8gj7n24qd(a),op_rysDP5nf3Z(a,b))\n else:\n return op_rysDP5nf3Z(a,op_t8gj7n24qd(a))\n","op_count_func":"def op_count_DZ8iAZOCBD(a, b):\n if op_t8gj7n24qd(a) >= 60:\n count = op_count_t8gj7n24qd(a)+op_count_rysDP5nf3Z(a,b)+op_count_W4YGzv6Whe(op_t8gj7n24qd(a),op_rysDP5nf3Z(a,b))+op_count_t8gj7n24qd(a)\n else:\n count = op_count_t8gj7n24qd(a)+op_count_rysDP5nf3Z(a,op_t8gj7n24qd(a))\n return count\n","dependencies":["rysDP5nf3Z","W4YGzv6Whe","t8gj7n24qd"]} +{"id":32,"func_id":"D4vGDi5EA2","symbol":"≦≮≮","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a≦≮≮ = { (-(a+(a+a))) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_D4vGDi5EA2(a):\n return op_t8gj7n24qd(op_W4YGzv6Whe(a,op_W4YGzv6Whe(a,a)))\n","op_count_func":"def op_count_D4vGDi5EA2(a):\n count = op_count_W4YGzv6Whe(a,a)+op_count_W4YGzv6Whe(a,op_W4YGzv6Whe(a,a))+op_count_t8gj7n24qd(op_W4YGzv6Whe(a,op_W4YGzv6Whe(a,a)))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":33,"func_id":"QMFrweE19q","symbol":"⫡⨏","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⫡⨏b = { 497 , if (-b)==408 and (-a)>=56 ; (((a+783)+(a+a))+((b+a)+(a+b))) , else }","definition_type":"branch_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_QMFrweE19q(a, b):\n if op_t8gj7n24qd(b) == 408 and op_t8gj7n24qd(a) >= 56:\n return 497\n else:\n return op_W4YGzv6Whe(op_W4YGzv6Whe(op_W4YGzv6Whe(a,783),op_W4YGzv6Whe(a,a)),op_W4YGzv6Whe(op_W4YGzv6Whe(b,a),op_W4YGzv6Whe(a,b)))\n","op_count_func":"def op_count_QMFrweE19q(a, b):\n if op_t8gj7n24qd(b) == 408 and op_t8gj7n24qd(a) >= 56:\n count = op_count_t8gj7n24qd(b)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_W4YGzv6Whe(a,783)+op_count_W4YGzv6Whe(a,a)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(a,783),op_W4YGzv6Whe(a,a))+op_count_W4YGzv6Whe(b,a)+op_count_W4YGzv6Whe(a,b)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(b,a),op_W4YGzv6Whe(a,b))+op_count_W4YGzv6Whe(op_W4YGzv6Whe(op_W4YGzv6Whe(a,783),op_W4YGzv6Whe(a,a)),op_W4YGzv6Whe(op_W4YGzv6Whe(b,a),op_W4YGzv6Whe(a,b)))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":34,"func_id":"2DQ55sFlQl","symbol":"⨵⪆","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨵⪆b = { (402-242) , if b!=134 ; (-a) , else }","definition_type":"branch_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_2DQ55sFlQl(a, b):\n if b != 134:\n return op_rysDP5nf3Z(402,242)\n else:\n return op_t8gj7n24qd(a)\n","op_count_func":"def op_count_2DQ55sFlQl(a, b):\n if b != 134:\n count = op_count_rysDP5nf3Z(402,242)\n else:\n count = op_count_t8gj7n24qd(a)\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd"]} +{"id":35,"func_id":"eewbuw0ToL","symbol":"⨰","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨰b = { (((a-a)+(a+10))-(-(-b))) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_eewbuw0ToL(a, b):\n return op_rysDP5nf3Z(op_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,10)),op_t8gj7n24qd(op_t8gj7n24qd(b)))\n","op_count_func":"def op_count_eewbuw0ToL(a, b):\n count = op_count_rysDP5nf3Z(a,a)+op_count_W4YGzv6Whe(a,10)+op_count_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,10))+op_count_t8gj7n24qd(b)+op_count_t8gj7n24qd(op_t8gj7n24qd(b))+op_count_rysDP5nf3Z(op_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_W4YGzv6Whe(a,10)),op_t8gj7n24qd(op_t8gj7n24qd(b)))\n return count\n","dependencies":["rysDP5nf3Z","W4YGzv6Whe","t8gj7n24qd"]} +{"id":36,"func_id":"XPYlsWDdGa","symbol":"⪲⇎","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⪲⇎a = { (a+a) , if (-a)!=821 ; (a-a) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_XPYlsWDdGa(a):\n if op_t8gj7n24qd(a) != 821:\n return op_W4YGzv6Whe(a,a)\n else:\n return op_rysDP5nf3Z(a,a)\n","op_count_func":"def op_count_XPYlsWDdGa(a):\n if op_t8gj7n24qd(a) != 821:\n count = op_count_W4YGzv6Whe(a,a)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_rysDP5nf3Z(a,a)\n return count\n","dependencies":["rysDP5nf3Z","W4YGzv6Whe","t8gj7n24qd"]} +{"id":37,"func_id":"g55IO6H4Gj","symbol":"⨸⪁","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨸⪁b = { ((a+b)+(b+a)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_g55IO6H4Gj(a, b):\n return op_W4YGzv6Whe(op_W4YGzv6Whe(a,b),op_W4YGzv6Whe(b,a))\n","op_count_func":"def op_count_g55IO6H4Gj(a, b):\n count = op_count_W4YGzv6Whe(a,b)+op_count_W4YGzv6Whe(b,a)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(a,b),op_W4YGzv6Whe(b,a))\n return count\n","dependencies":["W4YGzv6Whe"]} +{"id":38,"func_id":"N41Kp7NANJ","symbol":"≋⫹","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a≋⫹ = { ((-a)+(-a)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_N41Kp7NANJ(a):\n return op_W4YGzv6Whe(op_t8gj7n24qd(a),op_t8gj7n24qd(a))\n","op_count_func":"def op_count_N41Kp7NANJ(a):\n count = op_count_t8gj7n24qd(a)+op_count_t8gj7n24qd(a)+op_count_W4YGzv6Whe(op_t8gj7n24qd(a),op_t8gj7n24qd(a))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":39,"func_id":"e1ybzncUwg","symbol":"≉","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≉a = { (a+531) , if (-a)<=225 ; a , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_e1ybzncUwg(a):\n if op_t8gj7n24qd(a) <= 225:\n return op_W4YGzv6Whe(a,531)\n else:\n return a\n","op_count_func":"def op_count_e1ybzncUwg(a):\n if op_t8gj7n24qd(a) <= 225:\n count = op_count_W4YGzv6Whe(a,531)+op_count_t8gj7n24qd(a)\n else:\n count = 1\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":40,"func_id":"2DDjHMKMc0","symbol":"⋝⋈⪟","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⋝⋈⪟b = { ((b+a)+(-b)) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_2DDjHMKMc0(a, b):\n return op_W4YGzv6Whe(op_W4YGzv6Whe(b,a),op_t8gj7n24qd(b))\n","op_count_func":"def op_count_2DDjHMKMc0(a, b):\n count = op_count_W4YGzv6Whe(b,a)+op_count_t8gj7n24qd(b)+op_count_W4YGzv6Whe(op_W4YGzv6Whe(b,a),op_t8gj7n24qd(b))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd"]} +{"id":41,"func_id":"9FxExcQeMw","symbol":"⩷∴","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩷∴b = { (((a-b)-32)-((b-a)-(a-a))) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_9FxExcQeMw(a, b):\n return op_rysDP5nf3Z(op_rysDP5nf3Z(op_rysDP5nf3Z(a,b),32),op_rysDP5nf3Z(op_rysDP5nf3Z(b,a),op_rysDP5nf3Z(a,a)))\n","op_count_func":"def op_count_9FxExcQeMw(a, b):\n count = op_count_rysDP5nf3Z(a,b)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,b),32)+op_count_rysDP5nf3Z(b,a)+op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(b,a),op_rysDP5nf3Z(a,a))+op_count_rysDP5nf3Z(op_rysDP5nf3Z(op_rysDP5nf3Z(a,b),32),op_rysDP5nf3Z(op_rysDP5nf3Z(b,a),op_rysDP5nf3Z(a,a)))\n return count\n","dependencies":["rysDP5nf3Z"]} +{"id":42,"func_id":"8w2t5hMYqp","symbol":"⊄⩳↩","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊄⩳↩a = { ((-a)-(a+a)) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_8w2t5hMYqp(a):\n return op_rysDP5nf3Z(op_t8gj7n24qd(a),op_W4YGzv6Whe(a,a))\n","op_count_func":"def op_count_8w2t5hMYqp(a):\n count = op_count_t8gj7n24qd(a)+op_count_W4YGzv6Whe(a,a)+op_count_rysDP5nf3Z(op_t8gj7n24qd(a),op_W4YGzv6Whe(a,a))\n return count\n","dependencies":["rysDP5nf3Z","W4YGzv6Whe","t8gj7n24qd"]} +{"id":43,"func_id":"AF7qkfDlqP","symbol":"⨑⩽⪐","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⨑⩽⪐a = { (-((a-a)-(273-a))) , if a>30 ; (((a-a)-(a-789))+((a-a)+(-a))) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_AF7qkfDlqP(a):\n if a > 30:\n return op_t8gj7n24qd(op_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(273,a)))\n else:\n return op_W4YGzv6Whe(op_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(a,789)),op_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_t8gj7n24qd(a)))\n","op_count_func":"def op_count_AF7qkfDlqP(a):\n if a > 30:\n count = op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(273,a)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(273,a))+op_count_t8gj7n24qd(op_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(273,a)))\n else:\n count = op_count_rysDP5nf3Z(a,a)+op_count_rysDP5nf3Z(a,789)+op_count_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(a,789))+op_count_rysDP5nf3Z(a,a)+op_count_t8gj7n24qd(a)+op_count_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_t8gj7n24qd(a))+op_count_W4YGzv6Whe(op_rysDP5nf3Z(op_rysDP5nf3Z(a,a),op_rysDP5nf3Z(a,789)),op_W4YGzv6Whe(op_rysDP5nf3Z(a,a),op_t8gj7n24qd(a)))\n return count\n","dependencies":["rysDP5nf3Z","t8gj7n24qd","W4YGzv6Whe"]} +{"id":44,"func_id":"Qy55tPpLXF","symbol":"⋥≓≎","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⋥≓≎b = { ((b+b)-(a-33)) , if (a+463)>=40 ; (-(-67)) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_Qy55tPpLXF(a, b):\n if op_W4YGzv6Whe(a,463) >= 40:\n return op_rysDP5nf3Z(op_W4YGzv6Whe(b,b),op_rysDP5nf3Z(a,33))\n else:\n return op_t8gj7n24qd(op_t8gj7n24qd(67))\n","op_count_func":"def op_count_Qy55tPpLXF(a, b):\n if op_W4YGzv6Whe(a,463) >= 40:\n count = op_count_W4YGzv6Whe(b,b)+op_count_rysDP5nf3Z(a,33)+op_count_rysDP5nf3Z(op_W4YGzv6Whe(b,b),op_rysDP5nf3Z(a,33))+op_count_W4YGzv6Whe(a,463)\n else:\n count = op_count_t8gj7n24qd(67)+op_count_t8gj7n24qd(op_t8gj7n24qd(67))\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z","t8gj7n24qd"]} +{"id":45,"func_id":"NTOWxs364D","symbol":"⩚⊴⇥","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩚⊴⇥b = { ((-b)-(121+a)) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_NTOWxs364D(a, b):\n return op_rysDP5nf3Z(op_t8gj7n24qd(b),op_W4YGzv6Whe(121,a))\n","op_count_func":"def op_count_NTOWxs364D(a, b):\n count = op_count_t8gj7n24qd(b)+op_count_W4YGzv6Whe(121,a)+op_count_rysDP5nf3Z(op_t8gj7n24qd(b),op_W4YGzv6Whe(121,a))\n return count\n","dependencies":["W4YGzv6Whe","t8gj7n24qd","rysDP5nf3Z"]} +{"id":46,"func_id":"nCS4ZIUYfx","symbol":"⨳⩥⨓","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨳⩥⨓b = { ((b+a)-(a+a)) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_nCS4ZIUYfx(a, b):\n return op_rysDP5nf3Z(op_W4YGzv6Whe(b,a),op_W4YGzv6Whe(a,a))\n","op_count_func":"def op_count_nCS4ZIUYfx(a, b):\n count = op_count_W4YGzv6Whe(b,a)+op_count_W4YGzv6Whe(a,a)+op_count_rysDP5nf3Z(op_W4YGzv6Whe(b,a),op_W4YGzv6Whe(a,a))\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z"]} +{"id":47,"func_id":"A8NUZmVepG","symbol":"↥","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"↥a = { (a%51) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_A8NUZmVepG(a):\n return op_k8jYdgA6NY(a,51)\n","op_count_func":"def op_count_A8NUZmVepG(a):\n count = op_count_k8jYdgA6NY(a,51)\n return count\n","dependencies":["k8jYdgA6NY"]} +{"id":48,"func_id":"2DlMacCsIx","symbol":"⩨","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⩨b = { a , if (a⪠⩆⊳)>43 ; ((b/a)≦≮≮) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_2DlMacCsIx(a, b):\n if op_JLbD19bQDL(a) > 43:\n return a\n else:\n return op_D4vGDi5EA2(op_XhwjNDsVaA(b,a))\n","op_count_func":"def op_count_2DlMacCsIx(a, b):\n if op_JLbD19bQDL(a) > 43:\n count = 1\n else:\n count = op_count_XhwjNDsVaA(b,a)+op_count_D4vGDi5EA2(op_XhwjNDsVaA(b,a))\n return count\n","dependencies":["D4vGDi5EA2","XhwjNDsVaA","JLbD19bQDL"]} +{"id":49,"func_id":"srAu1WTS94","symbol":"⨵≀≌","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⨵≀≌a = { (a*a) , if (a⨁⊸⫻)!=892 and (⪲⇎a)<454 ; (⋗⩬⋾a) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_srAu1WTS94(a):\n if op_glklzrTFfD(a) != 892 and op_XPYlsWDdGa(a) < 454:\n return op_9HNa5Wba9A(a,a)\n else:\n return op_DpFCA1CohY(a)\n","op_count_func":"def op_count_srAu1WTS94(a):\n if op_glklzrTFfD(a) != 892 and op_XPYlsWDdGa(a) < 454:\n count = op_count_9HNa5Wba9A(a,a)+op_count_glklzrTFfD(a)+op_count_XPYlsWDdGa(a)\n else:\n count = op_count_DpFCA1CohY(a)\n return count\n","dependencies":["glklzrTFfD","DpFCA1CohY","XPYlsWDdGa","9HNa5Wba9A"]} +{"id":50,"func_id":"X99M06cbEe","symbol":"≫≃","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a≫≃ = { (a*315) , if (a≦≮≮)>=13 and (⩦⩻⨪a)!=26 and a>=80 ; (a⫌⩹⨱) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_X99M06cbEe(a):\n if op_D4vGDi5EA2(a) >= 13 and op_2td37pGCOC(a) != 26 and a >= 80:\n return op_9HNa5Wba9A(a,315)\n else:\n return op_EBcxylXtPf(a)\n","op_count_func":"def op_count_X99M06cbEe(a):\n if op_D4vGDi5EA2(a) >= 13 and op_2td37pGCOC(a) != 26 and a >= 80:\n count = op_count_9HNa5Wba9A(a,315)+op_count_D4vGDi5EA2(a)+op_count_2td37pGCOC(a)\n else:\n count = op_count_EBcxylXtPf(a)\n return count\n","dependencies":["2td37pGCOC","D4vGDi5EA2","EBcxylXtPf","9HNa5Wba9A"]} +{"id":51,"func_id":"XTarYq4gQB","symbol":"⪝⪂⫅","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⪝⪂⫅a = { ((⊄⩳↩49)*a) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_XTarYq4gQB(a):\n return op_9HNa5Wba9A(op_8w2t5hMYqp(49),a)\n","op_count_func":"def op_count_XTarYq4gQB(a):\n count = op_count_8w2t5hMYqp(49)+op_count_9HNa5Wba9A(op_8w2t5hMYqp(49),a)\n return count\n","dependencies":["9HNa5Wba9A","8w2t5hMYqp"]} +{"id":52,"func_id":"sJAwomhLZr","symbol":"⩠","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⩠ = { (((a+a)⊭↱(a⪨≂a))∲⫓((a⩤)%(a⪐))) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_sJAwomhLZr(a):\n return op_i8ToyICDmI(op_COABgblf1C(op_W4YGzv6Whe(a,a),op_sdazOOVcIp(a,a)),op_k8jYdgA6NY(op_Z2TMIBDE3Q(a),op_eH2TOUuTDT(a)))\n","op_count_func":"def op_count_sJAwomhLZr(a):\n count = op_count_W4YGzv6Whe(a,a)+op_count_sdazOOVcIp(a,a)+op_count_COABgblf1C(op_W4YGzv6Whe(a,a),op_sdazOOVcIp(a,a))+op_count_Z2TMIBDE3Q(a)+op_count_eH2TOUuTDT(a)+op_count_k8jYdgA6NY(op_Z2TMIBDE3Q(a),op_eH2TOUuTDT(a))+op_count_i8ToyICDmI(op_COABgblf1C(op_W4YGzv6Whe(a,a),op_sdazOOVcIp(a,a)),op_k8jYdgA6NY(op_Z2TMIBDE3Q(a),op_eH2TOUuTDT(a)))\n return count\n","dependencies":["sdazOOVcIp","i8ToyICDmI","k8jYdgA6NY","eH2TOUuTDT","W4YGzv6Whe","Z2TMIBDE3Q","COABgblf1C"]} +{"id":53,"func_id":"SUmda5xLS4","symbol":"⪄","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪄b = { (((⊄⩳↩320)⨁⊸⫻)⊭↱((a*72)⋥≓≎(b⪒a))) , if (∥⊫b)!=717 ; b , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_SUmda5xLS4(a, b):\n if op_P8v4zCKN1o(b) != 717:\n return op_COABgblf1C(op_glklzrTFfD(op_8w2t5hMYqp(320)),op_Qy55tPpLXF(op_9HNa5Wba9A(a,72),op_f6k1SAg4EE(b,a)))\n else:\n return b\n","op_count_func":"def op_count_SUmda5xLS4(a, b):\n if op_P8v4zCKN1o(b) != 717:\n count = op_count_8w2t5hMYqp(320)+op_count_glklzrTFfD(op_8w2t5hMYqp(320))+op_count_9HNa5Wba9A(a,72)+op_count_f6k1SAg4EE(b,a)+op_count_Qy55tPpLXF(op_9HNa5Wba9A(a,72),op_f6k1SAg4EE(b,a))+op_count_COABgblf1C(op_glklzrTFfD(op_8w2t5hMYqp(320)),op_Qy55tPpLXF(op_9HNa5Wba9A(a,72),op_f6k1SAg4EE(b,a)))+op_count_P8v4zCKN1o(b)\n else:\n count = 1\n return count\n","dependencies":["8w2t5hMYqp","glklzrTFfD","Qy55tPpLXF","P8v4zCKN1o","f6k1SAg4EE","9HNa5Wba9A","COABgblf1C"]} +{"id":54,"func_id":"oacrs7FA3X","symbol":"⪘⫢","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪘⫢b = { ((a⨵⪆345)⪨≂(⨑⩽⪐a)) , if ((b∲⫓242)>=654 and (∥⊫a)>649) ; ((b⨵⪆b)/(a⫡⨏b)) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_oacrs7FA3X(a, b):\n if (op_i8ToyICDmI(b,242) >= 654 and op_P8v4zCKN1o(a) > 649):\n return op_sdazOOVcIp(op_2DQ55sFlQl(a,345),op_AF7qkfDlqP(a))\n else:\n return op_XhwjNDsVaA(op_2DQ55sFlQl(b,b),op_QMFrweE19q(a,b))\n","op_count_func":"def op_count_oacrs7FA3X(a, b):\n if (op_i8ToyICDmI(b,242) >= 654 and op_P8v4zCKN1o(a) > 649):\n count = op_count_2DQ55sFlQl(a,345)+op_count_AF7qkfDlqP(a)+op_count_sdazOOVcIp(op_2DQ55sFlQl(a,345),op_AF7qkfDlqP(a))+op_count_i8ToyICDmI(b,242)+op_count_P8v4zCKN1o(a)\n else:\n count = op_count_2DQ55sFlQl(b,b)+op_count_QMFrweE19q(a,b)+op_count_XhwjNDsVaA(op_2DQ55sFlQl(b,b),op_QMFrweE19q(a,b))\n return count\n","dependencies":["sdazOOVcIp","i8ToyICDmI","QMFrweE19q","XhwjNDsVaA","P8v4zCKN1o","2DQ55sFlQl","AF7qkfDlqP"]} +{"id":55,"func_id":"bJkvcejdHO","symbol":"≎⊠⪸","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a≎⊠⪸b = { ((b⊠≄⫣)≧⫂∧(259*a)) , if (b⫌⩹⨱)>=594 ; ((⩦⩻⨪b)⋥≓≎(a⩷∴b)) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_bJkvcejdHO(a, b):\n if op_EBcxylXtPf(b) >= 594:\n return op_Ph9nP6C5qx(op_DIvbN7qnHd(b),op_9HNa5Wba9A(259,a))\n else:\n return op_Qy55tPpLXF(op_2td37pGCOC(b),op_9FxExcQeMw(a,b))\n","op_count_func":"def op_count_bJkvcejdHO(a, b):\n if op_EBcxylXtPf(b) >= 594:\n count = op_count_DIvbN7qnHd(b)+op_count_9HNa5Wba9A(259,a)+op_count_Ph9nP6C5qx(op_DIvbN7qnHd(b),op_9HNa5Wba9A(259,a))+op_count_EBcxylXtPf(b)\n else:\n count = op_count_2td37pGCOC(b)+op_count_9FxExcQeMw(a,b)+op_count_Qy55tPpLXF(op_2td37pGCOC(b),op_9FxExcQeMw(a,b))\n return count\n","dependencies":["DIvbN7qnHd","Ph9nP6C5qx","Qy55tPpLXF","2td37pGCOC","EBcxylXtPf","9FxExcQeMw","9HNa5Wba9A"]} +{"id":56,"func_id":"8HhzD0ZcuI","symbol":"⨽","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨽b = { (⋗⩬⋾((b⨳⩥⨓438)⨳⩥⨓(a*a))) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_8HhzD0ZcuI(a, b):\n return op_DpFCA1CohY(op_nCS4ZIUYfx(op_nCS4ZIUYfx(b,438),op_9HNa5Wba9A(a,a)))\n","op_count_func":"def op_count_8HhzD0ZcuI(a, b):\n count = op_count_nCS4ZIUYfx(b,438)+op_count_9HNa5Wba9A(a,a)+op_count_nCS4ZIUYfx(op_nCS4ZIUYfx(b,438),op_9HNa5Wba9A(a,a))+op_count_DpFCA1CohY(op_nCS4ZIUYfx(op_nCS4ZIUYfx(b,438),op_9HNa5Wba9A(a,a)))\n return count\n","dependencies":["nCS4ZIUYfx","9HNa5Wba9A","DpFCA1CohY"]} +{"id":57,"func_id":"8jW3W4yZS5","symbol":"↯⪼","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"↯⪼a = { (≤/(a⫌⩹⨱)) , if (∥⊫a)<382 and (⪲⇎a)!=21 ; ((⊄⩳↩988)%(109⩤)) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_8jW3W4yZS5(a):\n if op_P8v4zCKN1o(a) < 382 and op_XPYlsWDdGa(a) != 21:\n return op_eLAdDNolq6(op_EBcxylXtPf(a))\n else:\n return op_k8jYdgA6NY(op_8w2t5hMYqp(988),op_Z2TMIBDE3Q(109))\n","op_count_func":"def op_count_8jW3W4yZS5(a):\n if op_P8v4zCKN1o(a) < 382 and op_XPYlsWDdGa(a) != 21:\n count = op_count_EBcxylXtPf(a)+op_count_eLAdDNolq6(op_EBcxylXtPf(a))+op_count_P8v4zCKN1o(a)+op_count_XPYlsWDdGa(a)\n else:\n count = op_count_8w2t5hMYqp(988)+op_count_Z2TMIBDE3Q(109)+op_count_k8jYdgA6NY(op_8w2t5hMYqp(988),op_Z2TMIBDE3Q(109))\n return count\n","dependencies":["eLAdDNolq6","P8v4zCKN1o","k8jYdgA6NY","EBcxylXtPf","XPYlsWDdGa","Z2TMIBDE3Q","8w2t5hMYqp"]} +{"id":58,"func_id":"9ICcGScMcE","symbol":"≦∁","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"≦∁a = { (((a/301)⊭↱(a⨸⪁a))⋥≓≎(⨞⊢(a⊉≛↸a))) , if ((⨑⩽⪐a)>=427 or (a⪐)<=558) ; a , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_9ICcGScMcE(a):\n if (op_AF7qkfDlqP(a) >= 427 or op_eH2TOUuTDT(a) <= 558):\n return op_Qy55tPpLXF(op_COABgblf1C(op_XhwjNDsVaA(a,301),op_g55IO6H4Gj(a,a)),op_xUOZtlo3hN(op_DZ8iAZOCBD(a,a)))\n else:\n return a\n","op_count_func":"def op_count_9ICcGScMcE(a):\n if (op_AF7qkfDlqP(a) >= 427 or op_eH2TOUuTDT(a) <= 558):\n count = op_count_XhwjNDsVaA(a,301)+op_count_g55IO6H4Gj(a,a)+op_count_COABgblf1C(op_XhwjNDsVaA(a,301),op_g55IO6H4Gj(a,a))+op_count_DZ8iAZOCBD(a,a)+op_count_xUOZtlo3hN(op_DZ8iAZOCBD(a,a))+op_count_Qy55tPpLXF(op_COABgblf1C(op_XhwjNDsVaA(a,301),op_g55IO6H4Gj(a,a)),op_xUOZtlo3hN(op_DZ8iAZOCBD(a,a)))+op_count_AF7qkfDlqP(a)+op_count_eH2TOUuTDT(a)\n else:\n count = 1\n return count\n","dependencies":["XhwjNDsVaA","g55IO6H4Gj","xUOZtlo3hN","Qy55tPpLXF","DZ8iAZOCBD","eH2TOUuTDT","AF7qkfDlqP","COABgblf1C"]} +{"id":59,"func_id":"gu96TGCTMs","symbol":"⊘","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⊘ = { ((a⨰a)/(∥⊫a)) , if (⨑⩽⪐a)!=520 or (a≧⫂∧486)>62 or (⊄⩳↩a)>=602 ; ((-240)⩚⊴⇥a) , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_gu96TGCTMs(a):\n if op_AF7qkfDlqP(a) != 520 or op_Ph9nP6C5qx(a,486) > 62 or op_8w2t5hMYqp(a) >= 602:\n return op_XhwjNDsVaA(op_eewbuw0ToL(a,a),op_P8v4zCKN1o(a))\n else:\n return op_NTOWxs364D(op_t8gj7n24qd(240),a)\n","op_count_func":"def op_count_gu96TGCTMs(a):\n if op_AF7qkfDlqP(a) != 520 or op_Ph9nP6C5qx(a,486) > 62 or op_8w2t5hMYqp(a) >= 602:\n count = op_count_eewbuw0ToL(a,a)+op_count_P8v4zCKN1o(a)+op_count_XhwjNDsVaA(op_eewbuw0ToL(a,a),op_P8v4zCKN1o(a))+op_count_AF7qkfDlqP(a)+op_count_Ph9nP6C5qx(a,486)+op_count_8w2t5hMYqp(a)\n else:\n count = op_count_t8gj7n24qd(240)+op_count_NTOWxs364D(op_t8gj7n24qd(240),a)\n return count\n","dependencies":["XhwjNDsVaA","t8gj7n24qd","Ph9nP6C5qx","P8v4zCKN1o","AF7qkfDlqP","eewbuw0ToL","8w2t5hMYqp","NTOWxs364D"]} +{"id":60,"func_id":"jLgFTUHLKL","symbol":"↩","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"↩a = { (((83≧⫂∧a)⪨≂(⨑⩽⪐a))≋⫹) , if ((≤/a)>=675 or (a⫩⊇)!=134) ; (⨞⊢((a%a)⩚⊴⇥(-a))) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_jLgFTUHLKL(a):\n if (op_eLAdDNolq6(a) >= 675 or op_BjRHVeLaeN(a) != 134):\n return op_N41Kp7NANJ(op_sdazOOVcIp(op_Ph9nP6C5qx(83,a),op_AF7qkfDlqP(a)))\n else:\n return op_xUOZtlo3hN(op_NTOWxs364D(op_k8jYdgA6NY(a,a),op_t8gj7n24qd(a)))\n","op_count_func":"def op_count_jLgFTUHLKL(a):\n if (op_eLAdDNolq6(a) >= 675 or op_BjRHVeLaeN(a) != 134):\n count = op_count_Ph9nP6C5qx(83,a)+op_count_AF7qkfDlqP(a)+op_count_sdazOOVcIp(op_Ph9nP6C5qx(83,a),op_AF7qkfDlqP(a))+op_count_N41Kp7NANJ(op_sdazOOVcIp(op_Ph9nP6C5qx(83,a),op_AF7qkfDlqP(a)))+op_count_eLAdDNolq6(a)+op_count_BjRHVeLaeN(a)\n else:\n count = op_count_k8jYdgA6NY(a,a)+op_count_t8gj7n24qd(a)+op_count_NTOWxs364D(op_k8jYdgA6NY(a,a),op_t8gj7n24qd(a))+op_count_xUOZtlo3hN(op_NTOWxs364D(op_k8jYdgA6NY(a,a),op_t8gj7n24qd(a)))\n return count\n","dependencies":["sdazOOVcIp","t8gj7n24qd","eLAdDNolq6","BjRHVeLaeN","Ph9nP6C5qx","xUOZtlo3hN","k8jYdgA6NY","AF7qkfDlqP","N41Kp7NANJ","NTOWxs364D"]} +{"id":61,"func_id":"eLxqMNBOBk","symbol":"⫓⪴","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⫓⪴a = { (a*a) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_eLxqMNBOBk(a):\n return op_9HNa5Wba9A(a,a)\n","op_count_func":"def op_count_eLxqMNBOBk(a):\n count = op_count_9HNa5Wba9A(a,a)\n return count\n","dependencies":["9HNa5Wba9A"]} +{"id":62,"func_id":"uFcxV4UQCh","symbol":"⪛","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪛b = { (a%b) , if (↽≂b)!=229 ; (a*b) , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_uFcxV4UQCh(a, b):\n if op_u6S6b8DprG(b) != 229:\n return op_k8jYdgA6NY(a,b)\n else:\n return op_9HNa5Wba9A(a,b)\n","op_count_func":"def op_count_uFcxV4UQCh(a, b):\n if op_u6S6b8DprG(b) != 229:\n count = op_count_k8jYdgA6NY(a,b)+op_count_u6S6b8DprG(b)\n else:\n count = op_count_9HNa5Wba9A(a,b)\n return count\n","dependencies":["9HNa5Wba9A","u6S6b8DprG","k8jYdgA6NY"]} +{"id":63,"func_id":"IWmyXbctLI","symbol":"⪮%⊝","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪮%⊝b = { ((b%b)⩷∴(⨞⊢a)) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_IWmyXbctLI(a, b):\n return op_9FxExcQeMw(op_k8jYdgA6NY(b,b),op_xUOZtlo3hN(a))\n","op_count_func":"def op_count_IWmyXbctLI(a, b):\n count = op_count_k8jYdgA6NY(b,b)+op_count_xUOZtlo3hN(a)+op_count_9FxExcQeMw(op_k8jYdgA6NY(b,b),op_xUOZtlo3hN(a))\n return count\n","dependencies":["9FxExcQeMw","xUOZtlo3hN","k8jYdgA6NY"]} +{"id":64,"func_id":"xNBdhnnwKq","symbol":"⊭∹↮","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⊭∹↮ = { a , if (a⊭↱319)>=17 ; ((⪲⇎a)⋝⋈⪟(a%a)) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_xNBdhnnwKq(a):\n if op_COABgblf1C(a,319) >= 17:\n return a\n else:\n return op_2DDjHMKMc0(op_XPYlsWDdGa(a),op_k8jYdgA6NY(a,a))\n","op_count_func":"def op_count_xNBdhnnwKq(a):\n if op_COABgblf1C(a,319) >= 17:\n count = 1\n else:\n count = op_count_XPYlsWDdGa(a)+op_count_k8jYdgA6NY(a,a)+op_count_2DDjHMKMc0(op_XPYlsWDdGa(a),op_k8jYdgA6NY(a,a))\n return count\n","dependencies":["2DDjHMKMc0","k8jYdgA6NY","XPYlsWDdGa","COABgblf1C"]} +{"id":65,"func_id":"mqXw5SEYmG","symbol":"⫸⊐","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⫸⊐b = { ((b⋥≓≎16)⊭↱(b⋝⋈⪟43)) , if (a⫡⨏274)>318 and (⨑⩽⪐a)<45 ; ((⪲⇎a)%(≤/a)) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_mqXw5SEYmG(a, b):\n if op_QMFrweE19q(a,274) > 318 and op_AF7qkfDlqP(a) < 45:\n return op_COABgblf1C(op_Qy55tPpLXF(b,16),op_2DDjHMKMc0(b,43))\n else:\n return op_k8jYdgA6NY(op_XPYlsWDdGa(a),op_eLAdDNolq6(a))\n","op_count_func":"def op_count_mqXw5SEYmG(a, b):\n if op_QMFrweE19q(a,274) > 318 and op_AF7qkfDlqP(a) < 45:\n count = op_count_Qy55tPpLXF(b,16)+op_count_2DDjHMKMc0(b,43)+op_count_COABgblf1C(op_Qy55tPpLXF(b,16),op_2DDjHMKMc0(b,43))+op_count_QMFrweE19q(a,274)+op_count_AF7qkfDlqP(a)\n else:\n count = op_count_XPYlsWDdGa(a)+op_count_eLAdDNolq6(a)+op_count_k8jYdgA6NY(op_XPYlsWDdGa(a),op_eLAdDNolq6(a))\n return count\n","dependencies":["QMFrweE19q","2DDjHMKMc0","eLAdDNolq6","Qy55tPpLXF","k8jYdgA6NY","AF7qkfDlqP","XPYlsWDdGa","COABgblf1C"]} +{"id":66,"func_id":"zVYPLywUTj","symbol":"⊪","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⊪ = { (((a*a)+(18⨵⪆91))⪨≂((62⋥≓≎a)*(a⪒a))) , if (≉a)<304 or (a⫩⊇)==292 ; ((⊄⩳↩(a⪠⩆⊳))*((a/a)≧⫂∧(21*a))) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_zVYPLywUTj(a):\n if op_e1ybzncUwg(a) < 304 or op_BjRHVeLaeN(a) == 292:\n return op_sdazOOVcIp(op_W4YGzv6Whe(op_9HNa5Wba9A(a,a),op_2DQ55sFlQl(18,91)),op_9HNa5Wba9A(op_Qy55tPpLXF(62,a),op_f6k1SAg4EE(a,a)))\n else:\n return op_9HNa5Wba9A(op_8w2t5hMYqp(op_JLbD19bQDL(a)),op_Ph9nP6C5qx(op_XhwjNDsVaA(a,a),op_9HNa5Wba9A(21,a)))\n","op_count_func":"def op_count_zVYPLywUTj(a):\n if op_e1ybzncUwg(a) < 304 or op_BjRHVeLaeN(a) == 292:\n count = op_count_9HNa5Wba9A(a,a)+op_count_2DQ55sFlQl(18,91)+op_count_W4YGzv6Whe(op_9HNa5Wba9A(a,a),op_2DQ55sFlQl(18,91))+op_count_Qy55tPpLXF(62,a)+op_count_f6k1SAg4EE(a,a)+op_count_9HNa5Wba9A(op_Qy55tPpLXF(62,a),op_f6k1SAg4EE(a,a))+op_count_sdazOOVcIp(op_W4YGzv6Whe(op_9HNa5Wba9A(a,a),op_2DQ55sFlQl(18,91)),op_9HNa5Wba9A(op_Qy55tPpLXF(62,a),op_f6k1SAg4EE(a,a)))+op_count_e1ybzncUwg(a)+op_count_BjRHVeLaeN(a)\n else:\n count = op_count_JLbD19bQDL(a)+op_count_8w2t5hMYqp(op_JLbD19bQDL(a))+op_count_XhwjNDsVaA(a,a)+op_count_9HNa5Wba9A(21,a)+op_count_Ph9nP6C5qx(op_XhwjNDsVaA(a,a),op_9HNa5Wba9A(21,a))+op_count_9HNa5Wba9A(op_8w2t5hMYqp(op_JLbD19bQDL(a)),op_Ph9nP6C5qx(op_XhwjNDsVaA(a,a),op_9HNa5Wba9A(21,a)))\n return count\n","dependencies":["sdazOOVcIp","XhwjNDsVaA","BjRHVeLaeN","9HNa5Wba9A","Qy55tPpLXF","Ph9nP6C5qx","2DQ55sFlQl","f6k1SAg4EE","e1ybzncUwg","W4YGzv6Whe","8w2t5hMYqp","JLbD19bQDL"]} +{"id":67,"func_id":"ruOEQAzv1W","symbol":"↔","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"↔a = { (⨑⩽⪐a) , if (a≦≮≮)<69 ; (((a⋳⪒a)⋥≓≎(a/a))⋷(⊄⩳↩(a⫌⩹⨱))) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_ruOEQAzv1W(a):\n if op_D4vGDi5EA2(a) < 69:\n return op_AF7qkfDlqP(a)\n else:\n return op_23Mk6UjR3U(op_Qy55tPpLXF(op_12rbrZMWeM(a,a),op_XhwjNDsVaA(a,a)),op_8w2t5hMYqp(op_EBcxylXtPf(a)))\n","op_count_func":"def op_count_ruOEQAzv1W(a):\n if op_D4vGDi5EA2(a) < 69:\n count = op_count_AF7qkfDlqP(a)+op_count_D4vGDi5EA2(a)\n else:\n count = op_count_12rbrZMWeM(a,a)+op_count_XhwjNDsVaA(a,a)+op_count_Qy55tPpLXF(op_12rbrZMWeM(a,a),op_XhwjNDsVaA(a,a))+op_count_EBcxylXtPf(a)+op_count_8w2t5hMYqp(op_EBcxylXtPf(a))+op_count_23Mk6UjR3U(op_Qy55tPpLXF(op_12rbrZMWeM(a,a),op_XhwjNDsVaA(a,a)),op_8w2t5hMYqp(op_EBcxylXtPf(a)))\n return count\n","dependencies":["XhwjNDsVaA","Qy55tPpLXF","12rbrZMWeM","AF7qkfDlqP","D4vGDi5EA2","EBcxylXtPf","23Mk6UjR3U","8w2t5hMYqp"]} +{"id":68,"func_id":"l07mrZUIn9","symbol":"↪⪝","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a↪⪝ = { ((103⋝⋈⪟a)*(594*a)) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_l07mrZUIn9(a):\n return op_9HNa5Wba9A(op_2DDjHMKMc0(103,a),op_9HNa5Wba9A(594,a))\n","op_count_func":"def op_count_l07mrZUIn9(a):\n count = op_count_2DDjHMKMc0(103,a)+op_count_9HNa5Wba9A(594,a)+op_count_9HNa5Wba9A(op_2DDjHMKMc0(103,a),op_9HNa5Wba9A(594,a))\n return count\n","dependencies":["9HNa5Wba9A","2DDjHMKMc0"]} +{"id":69,"func_id":"rJVOvQCfKK","symbol":"⨎","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨎b = { (-(b/b)) , if (-a)!=278 and a>350 and (b⋥≓≎155)==21 ; b , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_rJVOvQCfKK(a, b):\n if op_t8gj7n24qd(a) != 278 and a > 350 and op_Qy55tPpLXF(b,155) == 21:\n return op_t8gj7n24qd(op_XhwjNDsVaA(b,b))\n else:\n return b\n","op_count_func":"def op_count_rJVOvQCfKK(a, b):\n if op_t8gj7n24qd(a) != 278 and a > 350 and op_Qy55tPpLXF(b,155) == 21:\n count = op_count_XhwjNDsVaA(b,b)+op_count_t8gj7n24qd(op_XhwjNDsVaA(b,b))+op_count_t8gj7n24qd(a)+op_count_Qy55tPpLXF(b,155)\n else:\n count = 1\n return count\n","dependencies":["Qy55tPpLXF","t8gj7n24qd","XhwjNDsVaA"]} +{"id":70,"func_id":"LRNGc0VcxI","symbol":"∀⇚≩","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a∀⇚≩b = {b, if a == 0; ((a-1)∀⇚≩b)≫≃, if a > 0 and abs(a) < 1000000; -((a+1)∀⇚≩b)≫≃, if a < 0 and abs(a) < 1000000; NaN, else}","definition_type":"recursive_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_LRNGc0VcxI(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (a in special_values) or (abs(a) > 1000000):\n return float('nan')\n result = b\n for _ in range(abs(a)):\n temp_result = op_X99M06cbEe(result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if a > 0 else -temp_result\n return result\n","op_count_func":"def op_count_LRNGc0VcxI(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (a in special_values) or (abs(a) > 1000000):\n return 1\n result = b\n count = 0 \n for _ in range(abs(a)):\n temp_result = op_X99M06cbEe(result)\n count += op_count_X99M06cbEe(result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if a > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["X99M06cbEe"]} +{"id":71,"func_id":"tmPS8pqC7x","symbol":"⨪↰⇹","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⨪↰⇹b = {a, if a == 0; (b)⨎((a-1)⨪↰⇹b), if a > 0 and abs(a) < 1000000; -(b)⨎((a+1)⨪↰⇹b), if a < 0 and abs(a) < 1000000; NaN, else}","definition_type":"recursive_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_tmPS8pqC7x(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (a in special_values) or (abs(a) > 1000000):\n return float('nan')\n result = a\n for _ in range(abs(a)):\n temp_result = op_rJVOvQCfKK(b, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if a > 0 else -temp_result\n return result\n","op_count_func":"def op_count_tmPS8pqC7x(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (a in special_values) or (abs(a) > 1000000):\n return 1\n result = a\n count = 0 \n for _ in range(abs(a)):\n temp_result = op_rJVOvQCfKK(b, result)\n count += op_count_rJVOvQCfKK(b, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if a > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["rJVOvQCfKK"]} +{"id":72,"func_id":"dWAJyo7jo9","symbol":"⪢","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⪢b = {b, if b == 0; (a)%(a⪢(b-1)), if b > 0 and abs(b) < 1000000; -(a)%(a⪢(b+1)), if b < 0 and abs(b) < 1000000; NaN, else}","definition_type":"recursive_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_dWAJyo7jo9(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000000):\n return float('nan')\n result = b\n for _ in range(abs(b)):\n temp_result = op_k8jYdgA6NY(a, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return result\n","op_count_func":"def op_count_dWAJyo7jo9(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000000):\n return 1\n result = b\n count = 0 \n for _ in range(abs(b)):\n temp_result = op_k8jYdgA6NY(a, result)\n count += op_count_k8jYdgA6NY(a, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["k8jYdgA6NY"]} +{"id":73,"func_id":"o20kRiQErp","symbol":"∸","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a∸ = { (177⨪↰⇹a) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_o20kRiQErp(a):\n return op_tmPS8pqC7x(177,a)\n","op_count_func":"def op_count_o20kRiQErp(a):\n count = op_count_tmPS8pqC7x(177,a)\n return count\n","dependencies":["tmPS8pqC7x"]} +{"id":74,"func_id":"3ViojmjbAp","symbol":"⨓","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⨓b = { ((b⨪↰⇹a)⇼⇔∾(b⩨b)) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_3ViojmjbAp(a, b):\n return op_tifHPKVTfV(op_tmPS8pqC7x(b,a),op_2DlMacCsIx(b,b))\n","op_count_func":"def op_count_3ViojmjbAp(a, b):\n count = op_count_tmPS8pqC7x(b,a)+op_count_2DlMacCsIx(b,b)+op_count_tifHPKVTfV(op_tmPS8pqC7x(b,a),op_2DlMacCsIx(b,b))\n return count\n","dependencies":["tifHPKVTfV","tmPS8pqC7x","2DlMacCsIx"]} +{"id":75,"func_id":"mp7IySMOzn","symbol":"⇷","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⇷b = { (b⊉≛↸((a+a)∀⇚≩(⋗⩬⋾a))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_mp7IySMOzn(a, b):\n return op_DZ8iAZOCBD(b,op_LRNGc0VcxI(op_W4YGzv6Whe(a,a),op_DpFCA1CohY(a)))\n","op_count_func":"def op_count_mp7IySMOzn(a, b):\n count = op_count_W4YGzv6Whe(a,a)+op_count_DpFCA1CohY(a)+op_count_LRNGc0VcxI(op_W4YGzv6Whe(a,a),op_DpFCA1CohY(a))+op_count_DZ8iAZOCBD(b,op_LRNGc0VcxI(op_W4YGzv6Whe(a,a),op_DpFCA1CohY(a)))\n return count\n","dependencies":["DZ8iAZOCBD","LRNGc0VcxI","DpFCA1CohY","W4YGzv6Whe"]} +{"id":76,"func_id":"Tcnh7f0tEr","symbol":"≣⋋","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a≣⋋ = { ((a/a)⋥≓≎(a⨪↰⇹248)) , if (a⪢148)<38 ; ((511*a)⊠≄⫣) , else }","definition_type":"branch_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_Tcnh7f0tEr(a):\n if op_dWAJyo7jo9(a,148) < 38:\n return op_Qy55tPpLXF(op_XhwjNDsVaA(a,a),op_tmPS8pqC7x(a,248))\n else:\n return op_DIvbN7qnHd(op_9HNa5Wba9A(511,a))\n","op_count_func":"def op_count_Tcnh7f0tEr(a):\n if op_dWAJyo7jo9(a,148) < 38:\n count = op_count_XhwjNDsVaA(a,a)+op_count_tmPS8pqC7x(a,248)+op_count_Qy55tPpLXF(op_XhwjNDsVaA(a,a),op_tmPS8pqC7x(a,248))+op_count_dWAJyo7jo9(a,148)\n else:\n count = op_count_9HNa5Wba9A(511,a)+op_count_DIvbN7qnHd(op_9HNa5Wba9A(511,a))\n return count\n","dependencies":["dWAJyo7jo9","XhwjNDsVaA","DIvbN7qnHd","Qy55tPpLXF","tmPS8pqC7x","9HNa5Wba9A"]} +{"id":77,"func_id":"T2fj7uvVaJ","symbol":"⋓","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⋓b = { (((60⪒b)⊭∹↮)%((a⪘⫢68)⪘⫢(⨵≀≌a))) , if (b>=803 and b<=372 and b<242) ; (16⪢((b⊠≄⫣)⋷(a⫌⩹⨱))) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_T2fj7uvVaJ(a, b):\n if (b >= 803 and b <= 372 and b < 242):\n return op_k8jYdgA6NY(op_xNBdhnnwKq(op_f6k1SAg4EE(60,b)),op_oacrs7FA3X(op_oacrs7FA3X(a,68),op_srAu1WTS94(a)))\n else:\n return op_dWAJyo7jo9(16,op_23Mk6UjR3U(op_DIvbN7qnHd(b),op_EBcxylXtPf(a)))\n","op_count_func":"def op_count_T2fj7uvVaJ(a, b):\n if (b >= 803 and b <= 372 and b < 242):\n count = op_count_f6k1SAg4EE(60,b)+op_count_xNBdhnnwKq(op_f6k1SAg4EE(60,b))+op_count_oacrs7FA3X(a,68)+op_count_srAu1WTS94(a)+op_count_oacrs7FA3X(op_oacrs7FA3X(a,68),op_srAu1WTS94(a))+op_count_k8jYdgA6NY(op_xNBdhnnwKq(op_f6k1SAg4EE(60,b)),op_oacrs7FA3X(op_oacrs7FA3X(a,68),op_srAu1WTS94(a)))\n else:\n count = op_count_DIvbN7qnHd(b)+op_count_EBcxylXtPf(a)+op_count_23Mk6UjR3U(op_DIvbN7qnHd(b),op_EBcxylXtPf(a))+op_count_dWAJyo7jo9(16,op_23Mk6UjR3U(op_DIvbN7qnHd(b),op_EBcxylXtPf(a)))\n return count\n","dependencies":["dWAJyo7jo9","xNBdhnnwKq","DIvbN7qnHd","k8jYdgA6NY","f6k1SAg4EE","23Mk6UjR3U","EBcxylXtPf","oacrs7FA3X","srAu1WTS94"]} +{"id":78,"func_id":"DhbWaqg5eL","symbol":"+⊝⨔","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"+⊝⨔a = { ((⪲⇎(⨑⩽⪐14))⨁⊸⫻) , if (a⫸⊐100)!=276 or (a⩷∴98)>390 ; (((a⪐)⪢(a⫸⊐221))+((a⩨a)⪘⫢(-370))) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_DhbWaqg5eL(a):\n if op_mqXw5SEYmG(a,100) != 276 or op_9FxExcQeMw(a,98) > 390:\n return op_glklzrTFfD(op_XPYlsWDdGa(op_AF7qkfDlqP(14)))\n else:\n return op_W4YGzv6Whe(op_dWAJyo7jo9(op_eH2TOUuTDT(a),op_mqXw5SEYmG(a,221)),op_oacrs7FA3X(op_2DlMacCsIx(a,a),op_t8gj7n24qd(370)))\n","op_count_func":"def op_count_DhbWaqg5eL(a):\n if op_mqXw5SEYmG(a,100) != 276 or op_9FxExcQeMw(a,98) > 390:\n count = op_count_AF7qkfDlqP(14)+op_count_XPYlsWDdGa(op_AF7qkfDlqP(14))+op_count_glklzrTFfD(op_XPYlsWDdGa(op_AF7qkfDlqP(14)))+op_count_mqXw5SEYmG(a,100)+op_count_9FxExcQeMw(a,98)\n else:\n count = op_count_eH2TOUuTDT(a)+op_count_mqXw5SEYmG(a,221)+op_count_dWAJyo7jo9(op_eH2TOUuTDT(a),op_mqXw5SEYmG(a,221))+op_count_2DlMacCsIx(a,a)+op_count_t8gj7n24qd(370)+op_count_oacrs7FA3X(op_2DlMacCsIx(a,a),op_t8gj7n24qd(370))+op_count_W4YGzv6Whe(op_dWAJyo7jo9(op_eH2TOUuTDT(a),op_mqXw5SEYmG(a,221)),op_oacrs7FA3X(op_2DlMacCsIx(a,a),op_t8gj7n24qd(370)))\n return count\n","dependencies":["dWAJyo7jo9","t8gj7n24qd","oacrs7FA3X","glklzrTFfD","eH2TOUuTDT","AF7qkfDlqP","2DlMacCsIx","mqXw5SEYmG","9FxExcQeMw","XPYlsWDdGa","W4YGzv6Whe"]} +{"id":79,"func_id":"FU0Cs4j7VP","symbol":"↛⩡⫤","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a↛⩡⫤ = { (((a⨪↰⇹a)⨪↰⇹(a⨰a))%((a⨪↰⇹a)⪄(a⨎a))) , if (↯⪼a)!=406 ; ((∥⊫(a⪘⫢44))⩨a) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_FU0Cs4j7VP(a):\n if op_8jW3W4yZS5(a) != 406:\n return op_k8jYdgA6NY(op_tmPS8pqC7x(op_tmPS8pqC7x(a,a),op_eewbuw0ToL(a,a)),op_SUmda5xLS4(op_tmPS8pqC7x(a,a),op_rJVOvQCfKK(a,a)))\n else:\n return op_2DlMacCsIx(op_P8v4zCKN1o(op_oacrs7FA3X(a,44)),a)\n","op_count_func":"def op_count_FU0Cs4j7VP(a):\n if op_8jW3W4yZS5(a) != 406:\n count = op_count_tmPS8pqC7x(a,a)+op_count_eewbuw0ToL(a,a)+op_count_tmPS8pqC7x(op_tmPS8pqC7x(a,a),op_eewbuw0ToL(a,a))+op_count_tmPS8pqC7x(a,a)+op_count_rJVOvQCfKK(a,a)+op_count_SUmda5xLS4(op_tmPS8pqC7x(a,a),op_rJVOvQCfKK(a,a))+op_count_k8jYdgA6NY(op_tmPS8pqC7x(op_tmPS8pqC7x(a,a),op_eewbuw0ToL(a,a)),op_SUmda5xLS4(op_tmPS8pqC7x(a,a),op_rJVOvQCfKK(a,a)))+op_count_8jW3W4yZS5(a)\n else:\n count = op_count_oacrs7FA3X(a,44)+op_count_P8v4zCKN1o(op_oacrs7FA3X(a,44))+op_count_2DlMacCsIx(op_P8v4zCKN1o(op_oacrs7FA3X(a,44)),a)\n return count\n","dependencies":["8jW3W4yZS5","SUmda5xLS4","rJVOvQCfKK","k8jYdgA6NY","P8v4zCKN1o","tmPS8pqC7x","2DlMacCsIx","eewbuw0ToL","oacrs7FA3X"]} +{"id":80,"func_id":"JL8yIekQnl","symbol":"⋫","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⋫ = { (a⨪↰⇹a) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_JL8yIekQnl(a):\n return op_tmPS8pqC7x(a,a)\n","op_count_func":"def op_count_JL8yIekQnl(a):\n count = op_count_tmPS8pqC7x(a,a)\n return count\n","dependencies":["tmPS8pqC7x"]} +{"id":81,"func_id":"yyfyN0ffXY","symbol":"↙","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a↙b = { (⋗⩬⋾(b⨪↰⇹a)) , if a>=87 ; a , else }","definition_type":"branch_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_yyfyN0ffXY(a, b):\n if a >= 87:\n return op_DpFCA1CohY(op_tmPS8pqC7x(b,a))\n else:\n return a\n","op_count_func":"def op_count_yyfyN0ffXY(a, b):\n if a >= 87:\n count = op_count_tmPS8pqC7x(b,a)+op_count_DpFCA1CohY(op_tmPS8pqC7x(b,a))\n else:\n count = 1\n return count\n","dependencies":["tmPS8pqC7x","DpFCA1CohY"]} +{"id":82,"func_id":"Nsiff2A1zJ","symbol":"⊴","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⊴b = { ((a⪢b)⊦⊿) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_Nsiff2A1zJ(a, b):\n return op_14qkJME0vr(op_dWAJyo7jo9(a,b))\n","op_count_func":"def op_count_Nsiff2A1zJ(a, b):\n count = op_count_dWAJyo7jo9(a,b)+op_count_14qkJME0vr(op_dWAJyo7jo9(a,b))\n return count\n","dependencies":["dWAJyo7jo9","14qkJME0vr"]} +{"id":83,"func_id":"Tw270M8GLb","symbol":"⨰⫟⨤","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⨰⫟⨤a = { (((13⪢a)⨳⩥⨓(a⪢a))⪨≂((a⩷∴417)⨽(758⪒a))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_Tw270M8GLb(a):\n return op_sdazOOVcIp(op_nCS4ZIUYfx(op_dWAJyo7jo9(13,a),op_dWAJyo7jo9(a,a)),op_8HhzD0ZcuI(op_9FxExcQeMw(a,417),op_f6k1SAg4EE(758,a)))\n","op_count_func":"def op_count_Tw270M8GLb(a):\n count = op_count_dWAJyo7jo9(13,a)+op_count_dWAJyo7jo9(a,a)+op_count_nCS4ZIUYfx(op_dWAJyo7jo9(13,a),op_dWAJyo7jo9(a,a))+op_count_9FxExcQeMw(a,417)+op_count_f6k1SAg4EE(758,a)+op_count_8HhzD0ZcuI(op_9FxExcQeMw(a,417),op_f6k1SAg4EE(758,a))+op_count_sdazOOVcIp(op_nCS4ZIUYfx(op_dWAJyo7jo9(13,a),op_dWAJyo7jo9(a,a)),op_8HhzD0ZcuI(op_9FxExcQeMw(a,417),op_f6k1SAg4EE(758,a)))\n return count\n","dependencies":["sdazOOVcIp","dWAJyo7jo9","nCS4ZIUYfx","8HhzD0ZcuI","f6k1SAg4EE","9FxExcQeMw"]} +{"id":84,"func_id":"oWn0xqSxBt","symbol":"⊙↵-","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⊙↵-a = { (((a⋳⪒a)⨵⪆(a⪢a))⪘⫢((a⫸⊐a)↺(↽≂a))) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_oWn0xqSxBt(a):\n return op_oacrs7FA3X(op_2DQ55sFlQl(op_12rbrZMWeM(a,a),op_dWAJyo7jo9(a,a)),op_7j4O788W3g(op_mqXw5SEYmG(a,a),op_u6S6b8DprG(a)))\n","op_count_func":"def op_count_oWn0xqSxBt(a):\n count = op_count_12rbrZMWeM(a,a)+op_count_dWAJyo7jo9(a,a)+op_count_2DQ55sFlQl(op_12rbrZMWeM(a,a),op_dWAJyo7jo9(a,a))+op_count_mqXw5SEYmG(a,a)+op_count_u6S6b8DprG(a)+op_count_7j4O788W3g(op_mqXw5SEYmG(a,a),op_u6S6b8DprG(a))+op_count_oacrs7FA3X(op_2DQ55sFlQl(op_12rbrZMWeM(a,a),op_dWAJyo7jo9(a,a)),op_7j4O788W3g(op_mqXw5SEYmG(a,a),op_u6S6b8DprG(a)))\n return count\n","dependencies":["dWAJyo7jo9","7j4O788W3g","12rbrZMWeM","2DQ55sFlQl","u6S6b8DprG","mqXw5SEYmG","oacrs7FA3X"]} +{"id":85,"func_id":"AHs5Up7iyr","symbol":"≹⇙⪍","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a≹⇙⪍b = {a, if b == 0; (a≹⇙⪍(b-1))⪢(b), if b > 0 and abs(b) < 1000; -(a≹⇙⪍(b+1))⪢(b), if b < 0 and abs(b) < 1000; NaN, else}","definition_type":"recursive_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_AHs5Up7iyr(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000):\n return float('nan')\n result = a\n for _ in range(abs(b)):\n temp_result = op_dWAJyo7jo9(result, b)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return result\n","op_count_func":"def op_count_AHs5Up7iyr(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000):\n return 1\n result = a\n count = 0 \n for _ in range(abs(b)):\n temp_result = op_dWAJyo7jo9(result, b)\n count += op_count_dWAJyo7jo9(result, b)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["dWAJyo7jo9"]} +{"id":86,"func_id":"rGHVDoGpnC","symbol":"⨟⋌⩍","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⨟⋌⩍b = {a, if b == 0; (a⨟⋌⩍(b-1))≣⋋, if b > 0 and abs(b) < 1000; -(a⨟⋌⩍(b+1))≣⋋, if b < 0 and abs(b) < 1000; NaN, else}","definition_type":"recursive_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_rGHVDoGpnC(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000):\n return float('nan')\n result = a\n for _ in range(abs(b)):\n temp_result = op_Tcnh7f0tEr(result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return result\n","op_count_func":"def op_count_rGHVDoGpnC(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000):\n return 1\n result = a\n count = 0 \n for _ in range(abs(b)):\n temp_result = op_Tcnh7f0tEr(result)\n count += op_count_Tcnh7f0tEr(result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["Tcnh7f0tEr"]} +{"id":87,"func_id":"fu6greOZ01","symbol":"⨐⩸⫘","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⨐⩸⫘b = {a, if b == 0; (a⨐⩸⫘(b-1))⨓(b), if b > 0 and abs(b) < 1000; -(a⨐⩸⫘(b+1))⨓(b), if b < 0 and abs(b) < 1000; NaN, else}","definition_type":"recursive_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_fu6greOZ01(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000):\n return float('nan')\n result = a\n for _ in range(abs(b)):\n temp_result = op_3ViojmjbAp(result, b)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return result\n","op_count_func":"def op_count_fu6greOZ01(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 1000):\n return 1\n result = a\n count = 0 \n for _ in range(abs(b)):\n temp_result = op_3ViojmjbAp(result, b)\n count += op_count_3ViojmjbAp(result, b)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["3ViojmjbAp"]} +{"id":88,"func_id":"Q3PJZHRvZv","symbol":"⊥","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⊥a = { (a⨐⩸⫘a) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_Q3PJZHRvZv(a):\n return op_fu6greOZ01(a,a)\n","op_count_func":"def op_count_Q3PJZHRvZv(a):\n count = op_count_fu6greOZ01(a,a)\n return count\n","dependencies":["fu6greOZ01"]} +{"id":89,"func_id":"DlLNRPXxWL","symbol":"⫛⫱⨽","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⫛⫱⨽a = { (a⨟⋌⩍228) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_DlLNRPXxWL(a):\n return op_rGHVDoGpnC(a,228)\n","op_count_func":"def op_count_DlLNRPXxWL(a):\n count = op_count_rGHVDoGpnC(a,228)\n return count\n","dependencies":["rGHVDoGpnC"]} +{"id":90,"func_id":"U7g4x0WXJJ","symbol":"∑⇟⊟","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a∑⇟⊟b = { (⨵≀≌b) , if (a⋳⪒898)==671 ; (a≹⇙⪍b) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_U7g4x0WXJJ(a, b):\n if op_12rbrZMWeM(a,898) == 671:\n return op_srAu1WTS94(b)\n else:\n return op_AHs5Up7iyr(a,b)\n","op_count_func":"def op_count_U7g4x0WXJJ(a, b):\n if op_12rbrZMWeM(a,898) == 671:\n count = op_count_srAu1WTS94(b)+op_count_12rbrZMWeM(a,898)\n else:\n count = op_count_AHs5Up7iyr(a,b)\n return count\n","dependencies":["AHs5Up7iyr","srAu1WTS94","12rbrZMWeM"]} +{"id":91,"func_id":"KYD54nUTWz","symbol":"⫥∨⫟","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⫥∨⫟b = { (b⨟⋌⩍(144⨽a)) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_KYD54nUTWz(a, b):\n return op_rGHVDoGpnC(b,op_8HhzD0ZcuI(144,a))\n","op_count_func":"def op_count_KYD54nUTWz(a, b):\n count = op_count_8HhzD0ZcuI(144,a)+op_count_rGHVDoGpnC(b,op_8HhzD0ZcuI(144,a))\n return count\n","dependencies":["8HhzD0ZcuI","rGHVDoGpnC"]} +{"id":92,"func_id":"DyGG3AbaNP","symbol":"∼","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a∼b = { ((a≹⇙⪍b)⋷(a⨪↰⇹a)) , if (a∸)<63 ; ((20⨟⋌⩍b)⨪↰⇹(↥a)) , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_DyGG3AbaNP(a, b):\n if op_o20kRiQErp(a) < 63:\n return op_23Mk6UjR3U(op_AHs5Up7iyr(a,b),op_tmPS8pqC7x(a,a))\n else:\n return op_tmPS8pqC7x(op_rGHVDoGpnC(20,b),op_A8NUZmVepG(a))\n","op_count_func":"def op_count_DyGG3AbaNP(a, b):\n if op_o20kRiQErp(a) < 63:\n count = op_count_AHs5Up7iyr(a,b)+op_count_tmPS8pqC7x(a,a)+op_count_23Mk6UjR3U(op_AHs5Up7iyr(a,b),op_tmPS8pqC7x(a,a))+op_count_o20kRiQErp(a)\n else:\n count = op_count_rGHVDoGpnC(20,b)+op_count_A8NUZmVepG(a)+op_count_tmPS8pqC7x(op_rGHVDoGpnC(20,b),op_A8NUZmVepG(a))\n return count\n","dependencies":["rGHVDoGpnC","A8NUZmVepG","tmPS8pqC7x","o20kRiQErp","23Mk6UjR3U","AHs5Up7iyr"]} +{"id":93,"func_id":"Asc51vEJeQ","symbol":"↣≠⋷","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"↣≠⋷a = { ((a/a)≹⇙⪍(a≹⇙⪍a)) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_Asc51vEJeQ(a):\n return op_AHs5Up7iyr(op_XhwjNDsVaA(a,a),op_AHs5Up7iyr(a,a))\n","op_count_func":"def op_count_Asc51vEJeQ(a):\n count = op_count_XhwjNDsVaA(a,a)+op_count_AHs5Up7iyr(a,a)+op_count_AHs5Up7iyr(op_XhwjNDsVaA(a,a),op_AHs5Up7iyr(a,a))\n return count\n","dependencies":["XhwjNDsVaA","AHs5Up7iyr"]} +{"id":94,"func_id":"B5M0gjZbta","symbol":"↬","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a↬b = {b, if a == 0; ((a-1)↬b)⨟⋌⩍((a-1)↬b), if a > 0 and abs(a) < 100; -((a+1)↬b)⨟⋌⩍((a+1)↬b), if a < 0 and abs(a) < 100; NaN, else}","definition_type":"recursive_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_B5M0gjZbta(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (a in special_values) or (abs(a) > 100):\n return float('nan')\n result = b\n for _ in range(abs(a)):\n temp_result = op_rGHVDoGpnC(result, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if a > 0 else -temp_result\n return result\n","op_count_func":"def op_count_B5M0gjZbta(a, b):\n special_values = [float('inf'), float('-inf')]\n if (a != a) or (a in special_values) or (abs(a) > 100):\n return 1\n result = b\n count = 0 \n for _ in range(abs(a)):\n temp_result = op_rGHVDoGpnC(result, result)\n count += op_count_rGHVDoGpnC(result, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if a > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["rGHVDoGpnC"]} +{"id":95,"func_id":"rxpJgHHUmx","symbol":"≭","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a≭b = {-22, if b == 0; (a)≹⇙⪍(a≭(b-1)), if b > 0 and abs(b) < 100; -(a)≹⇙⪍(a≭(b+1)), if b < 0 and abs(b) < 100; NaN, else}","definition_type":"recursive_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_rxpJgHHUmx(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 100):\n return float('nan')\n result = -22\n for _ in range(abs(b)):\n temp_result = op_AHs5Up7iyr(a, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return result\n","op_count_func":"def op_count_rxpJgHHUmx(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 100):\n return 1\n result = -22\n count = 0 \n for _ in range(abs(b)):\n temp_result = op_AHs5Up7iyr(a, result)\n count += op_count_AHs5Up7iyr(a, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["AHs5Up7iyr"]} +{"id":96,"func_id":"TpPTUOHfaN","symbol":"+⇶⊼","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a+⇶⊼b = {b, if b == 0; (a)≹⇙⪍(a+⇶⊼(b-1)), if b > 0 and abs(b) < 100; -(a)≹⇙⪍(a+⇶⊼(b+1)), if b < 0 and abs(b) < 100; NaN, else}","definition_type":"recursive_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_TpPTUOHfaN(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 100):\n return float('nan')\n result = b\n for _ in range(abs(b)):\n temp_result = op_AHs5Up7iyr(a, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return result\n","op_count_func":"def op_count_TpPTUOHfaN(a, b):\n special_values = [float('inf'), float('-inf')]\n if (b != b) or (b in special_values) or (abs(b) > 100):\n return 1\n result = b\n count = 0 \n for _ in range(abs(b)):\n temp_result = op_AHs5Up7iyr(a, result)\n count += op_count_AHs5Up7iyr(a, result)\n if abs(temp_result) > thres:\n temp_result = float(\"inf\")\n result = temp_result if b > 0 else -temp_result\n return count if count > 0 else 1\n","dependencies":["AHs5Up7iyr"]} +{"id":97,"func_id":"inkyxCbjAn","symbol":"⇁⨣⪵","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"⇁⨣⪵a = { (a↬a) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_inkyxCbjAn(a):\n return op_B5M0gjZbta(a,a)\n","op_count_func":"def op_count_inkyxCbjAn(a):\n count = op_count_B5M0gjZbta(a,a)\n return count\n","dependencies":["B5M0gjZbta"]} +{"id":98,"func_id":"Uaa54Peajs","symbol":"∂","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"∂a = { (a⪒264) , if ((a⨓405)<13 and a<=191 and (a⨸⪁774)!=889) ; (a↬a) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_Uaa54Peajs(a):\n if (op_3ViojmjbAp(a,405) < 13 and a <= 191 and op_g55IO6H4Gj(a,774) != 889):\n return op_f6k1SAg4EE(a,264)\n else:\n return op_B5M0gjZbta(a,a)\n","op_count_func":"def op_count_Uaa54Peajs(a):\n if (op_3ViojmjbAp(a,405) < 13 and a <= 191 and op_g55IO6H4Gj(a,774) != 889):\n count = op_count_f6k1SAg4EE(a,264)+op_count_3ViojmjbAp(a,405)+op_count_g55IO6H4Gj(a,774)\n else:\n count = op_count_B5M0gjZbta(a,a)\n return count\n","dependencies":["B5M0gjZbta","g55IO6H4Gj","f6k1SAg4EE","3ViojmjbAp"]} +{"id":99,"func_id":"z63VuFQld9","symbol":"∧","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a∧ = { ((a⋷a)≹⇙⪍(a↬a)) , if (-a)<=39 ; ((a%a)⋝⋈⪟(a⫸⊐a)) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_z63VuFQld9(a):\n if op_t8gj7n24qd(a) <= 39:\n return op_AHs5Up7iyr(op_23Mk6UjR3U(a,a),op_B5M0gjZbta(a,a))\n else:\n return op_2DDjHMKMc0(op_k8jYdgA6NY(a,a),op_mqXw5SEYmG(a,a))\n","op_count_func":"def op_count_z63VuFQld9(a):\n if op_t8gj7n24qd(a) <= 39:\n count = op_count_23Mk6UjR3U(a,a)+op_count_B5M0gjZbta(a,a)+op_count_AHs5Up7iyr(op_23Mk6UjR3U(a,a),op_B5M0gjZbta(a,a))+op_count_t8gj7n24qd(a)\n else:\n count = op_count_k8jYdgA6NY(a,a)+op_count_mqXw5SEYmG(a,a)+op_count_2DDjHMKMc0(op_k8jYdgA6NY(a,a),op_mqXw5SEYmG(a,a))\n return count\n","dependencies":["B5M0gjZbta","t8gj7n24qd","2DDjHMKMc0","k8jYdgA6NY","mqXw5SEYmG","23Mk6UjR3U","AHs5Up7iyr"]} +{"id":100,"func_id":"megm06wKyl","symbol":"⨈⫕","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"⨈⫕a = { (((a+a)⊦⊿)+⇶⊼123) , if (a⩤)!=46 and a==442 and (+⊝⨔a)!=531 ; (↯⪼(⊥(8⨁⊸⫻))) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_megm06wKyl(a):\n if op_Z2TMIBDE3Q(a) != 46 and a == 442 and op_DhbWaqg5eL(a) != 531:\n return op_TpPTUOHfaN(op_14qkJME0vr(op_W4YGzv6Whe(a,a)),123)\n else:\n return op_8jW3W4yZS5(op_Q3PJZHRvZv(op_glklzrTFfD(8)))\n","op_count_func":"def op_count_megm06wKyl(a):\n if op_Z2TMIBDE3Q(a) != 46 and a == 442 and op_DhbWaqg5eL(a) != 531:\n count = op_count_W4YGzv6Whe(a,a)+op_count_14qkJME0vr(op_W4YGzv6Whe(a,a))+op_count_TpPTUOHfaN(op_14qkJME0vr(op_W4YGzv6Whe(a,a)),123)+op_count_Z2TMIBDE3Q(a)+op_count_DhbWaqg5eL(a)\n else:\n count = op_count_glklzrTFfD(8)+op_count_Q3PJZHRvZv(op_glklzrTFfD(8))+op_count_8jW3W4yZS5(op_Q3PJZHRvZv(op_glklzrTFfD(8)))\n return count\n","dependencies":["8jW3W4yZS5","TpPTUOHfaN","glklzrTFfD","Q3PJZHRvZv","14qkJME0vr","DhbWaqg5eL","W4YGzv6Whe","Z2TMIBDE3Q"]} +{"id":101,"func_id":"qazvmhNBbN","symbol":"⩒∊","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⩒∊a = { ((≤/a)⪒(⨑⩽⪐a)) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_qazvmhNBbN(a):\n return op_f6k1SAg4EE(op_eLAdDNolq6(a),op_AF7qkfDlqP(a))\n","op_count_func":"def op_count_qazvmhNBbN(a):\n count = op_count_eLAdDNolq6(a)+op_count_AF7qkfDlqP(a)+op_count_f6k1SAg4EE(op_eLAdDNolq6(a),op_AF7qkfDlqP(a))\n return count\n","dependencies":["AF7qkfDlqP","f6k1SAg4EE","eLAdDNolq6"]} +{"id":102,"func_id":"cTDWOvIxvz","symbol":"∝","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∝b = { ((b↺a)+(b⊭↱b)) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_cTDWOvIxvz(a, b):\n return op_W4YGzv6Whe(op_7j4O788W3g(b,a),op_COABgblf1C(b,b))\n","op_count_func":"def op_count_cTDWOvIxvz(a, b):\n count = op_count_7j4O788W3g(b,a)+op_count_COABgblf1C(b,b)+op_count_W4YGzv6Whe(op_7j4O788W3g(b,a),op_COABgblf1C(b,b))\n return count\n","dependencies":["7j4O788W3g","W4YGzv6Whe","COABgblf1C"]} +{"id":103,"func_id":"3EYGwJThht","symbol":"⇄","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⇄b = { ((≤/b)∲⫓(a⊉≛↸b)) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_3EYGwJThht(a, b):\n return op_i8ToyICDmI(op_eLAdDNolq6(b),op_DZ8iAZOCBD(a,b))\n","op_count_func":"def op_count_3EYGwJThht(a, b):\n count = op_count_eLAdDNolq6(b)+op_count_DZ8iAZOCBD(a,b)+op_count_i8ToyICDmI(op_eLAdDNolq6(b),op_DZ8iAZOCBD(a,b))\n return count\n","dependencies":["eLAdDNolq6","DZ8iAZOCBD","i8ToyICDmI"]} +{"id":104,"func_id":"wEfv7U73WA","symbol":"⇐≅","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇐≅ = { ((a⩷∴(a∲⫓a))≧⫂∧(-a)) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_wEfv7U73WA(a):\n return op_Ph9nP6C5qx(op_9FxExcQeMw(a,op_i8ToyICDmI(a,a)),op_t8gj7n24qd(a))\n","op_count_func":"def op_count_wEfv7U73WA(a):\n count = op_count_i8ToyICDmI(a,a)+op_count_9FxExcQeMw(a,op_i8ToyICDmI(a,a))+op_count_t8gj7n24qd(a)+op_count_Ph9nP6C5qx(op_9FxExcQeMw(a,op_i8ToyICDmI(a,a)),op_t8gj7n24qd(a))\n return count\n","dependencies":["9FxExcQeMw","t8gj7n24qd","Ph9nP6C5qx","i8ToyICDmI"]} +{"id":105,"func_id":"3sJ7IOPOlU","symbol":"⪇≇⋚","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪇≇⋚b = { ((⨞⊢(a⊉≛↸b))⪠⩆⊳) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_3sJ7IOPOlU(a, b):\n return op_JLbD19bQDL(op_xUOZtlo3hN(op_DZ8iAZOCBD(a,b)))\n","op_count_func":"def op_count_3sJ7IOPOlU(a, b):\n count = op_count_DZ8iAZOCBD(a,b)+op_count_xUOZtlo3hN(op_DZ8iAZOCBD(a,b))+op_count_JLbD19bQDL(op_xUOZtlo3hN(op_DZ8iAZOCBD(a,b)))\n return count\n","dependencies":["DZ8iAZOCBD","JLbD19bQDL","xUOZtlo3hN"]} +{"id":106,"func_id":"E4l6HwMY31","symbol":"⊔","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊔b = { (((a≧⫂∧b)∲⫓(⋗⩬⋾b))⫡⨏((b⪒a)≧⫂∧(a+64))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_E4l6HwMY31(a, b):\n return op_QMFrweE19q(op_i8ToyICDmI(op_Ph9nP6C5qx(a,b),op_DpFCA1CohY(b)),op_Ph9nP6C5qx(op_f6k1SAg4EE(b,a),op_W4YGzv6Whe(a,64)))\n","op_count_func":"def op_count_E4l6HwMY31(a, b):\n count = op_count_Ph9nP6C5qx(a,b)+op_count_DpFCA1CohY(b)+op_count_i8ToyICDmI(op_Ph9nP6C5qx(a,b),op_DpFCA1CohY(b))+op_count_f6k1SAg4EE(b,a)+op_count_W4YGzv6Whe(a,64)+op_count_Ph9nP6C5qx(op_f6k1SAg4EE(b,a),op_W4YGzv6Whe(a,64))+op_count_QMFrweE19q(op_i8ToyICDmI(op_Ph9nP6C5qx(a,b),op_DpFCA1CohY(b)),op_Ph9nP6C5qx(op_f6k1SAg4EE(b,a),op_W4YGzv6Whe(a,64)))\n return count\n","dependencies":["W4YGzv6Whe","DpFCA1CohY","Ph9nP6C5qx","f6k1SAg4EE","i8ToyICDmI","QMFrweE19q"]} +{"id":107,"func_id":"BiWNJpBvwn","symbol":"⩍⋽⫝̸","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩍⋽⫝̸b = { ((⨞⊢508)≧⫂∧(a≧⫂∧b)) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_BiWNJpBvwn(a, b):\n return op_Ph9nP6C5qx(op_xUOZtlo3hN(508),op_Ph9nP6C5qx(a,b))\n","op_count_func":"def op_count_BiWNJpBvwn(a, b):\n count = op_count_xUOZtlo3hN(508)+op_count_Ph9nP6C5qx(a,b)+op_count_Ph9nP6C5qx(op_xUOZtlo3hN(508),op_Ph9nP6C5qx(a,b))\n return count\n","dependencies":["Ph9nP6C5qx","xUOZtlo3hN"]} +{"id":108,"func_id":"4CyGpkTkEk","symbol":"∐⫣","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∐⫣ = { (≉(⪲⇎(a⨰a))) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_4CyGpkTkEk(a):\n return op_e1ybzncUwg(op_XPYlsWDdGa(op_eewbuw0ToL(a,a)))\n","op_count_func":"def op_count_4CyGpkTkEk(a):\n count = op_count_eewbuw0ToL(a,a)+op_count_XPYlsWDdGa(op_eewbuw0ToL(a,a))+op_count_e1ybzncUwg(op_XPYlsWDdGa(op_eewbuw0ToL(a,a)))\n return count\n","dependencies":["XPYlsWDdGa","eewbuw0ToL","e1ybzncUwg"]} +{"id":109,"func_id":"09Ly4LVMIf","symbol":"⫃⨇","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⫃⨇b = { ((↽≂b)⩷∴(a⊠≄⫣)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_09Ly4LVMIf(a, b):\n return op_9FxExcQeMw(op_u6S6b8DprG(b),op_DIvbN7qnHd(a))\n","op_count_func":"def op_count_09Ly4LVMIf(a, b):\n count = op_count_u6S6b8DprG(b)+op_count_DIvbN7qnHd(a)+op_count_9FxExcQeMw(op_u6S6b8DprG(b),op_DIvbN7qnHd(a))\n return count\n","dependencies":["9FxExcQeMw","DIvbN7qnHd","u6S6b8DprG"]} +{"id":110,"func_id":"y4ImoPnbV5","symbol":"∽","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∽b = { ((a⩚⊴⇥b)⫡⨏b) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_y4ImoPnbV5(a, b):\n return op_QMFrweE19q(op_NTOWxs364D(a,b),b)\n","op_count_func":"def op_count_y4ImoPnbV5(a, b):\n count = op_count_NTOWxs364D(a,b)+op_count_QMFrweE19q(op_NTOWxs364D(a,b),b)\n return count\n","dependencies":["NTOWxs364D","QMFrweE19q"]} +{"id":111,"func_id":"JDUIKTTSIa","symbol":"⩣⫁∢","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩣⫁∢b = { (⨑⩽⪐((a⪨≂b)⨰(↽≂b))) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_JDUIKTTSIa(a, b):\n return op_AF7qkfDlqP(op_eewbuw0ToL(op_sdazOOVcIp(a,b),op_u6S6b8DprG(b)))\n","op_count_func":"def op_count_JDUIKTTSIa(a, b):\n count = op_count_sdazOOVcIp(a,b)+op_count_u6S6b8DprG(b)+op_count_eewbuw0ToL(op_sdazOOVcIp(a,b),op_u6S6b8DprG(b))+op_count_AF7qkfDlqP(op_eewbuw0ToL(op_sdazOOVcIp(a,b),op_u6S6b8DprG(b)))\n return count\n","dependencies":["sdazOOVcIp","eewbuw0ToL","AF7qkfDlqP","u6S6b8DprG"]} +{"id":112,"func_id":"nREPSIbpBE","symbol":"⨚","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨚b = { (((b⋳⪒a)⋳⪒31)⫩⊇) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_nREPSIbpBE(a, b):\n return op_BjRHVeLaeN(op_12rbrZMWeM(op_12rbrZMWeM(b,a),31))\n","op_count_func":"def op_count_nREPSIbpBE(a, b):\n count = op_count_12rbrZMWeM(b,a)+op_count_12rbrZMWeM(op_12rbrZMWeM(b,a),31)+op_count_BjRHVeLaeN(op_12rbrZMWeM(op_12rbrZMWeM(b,a),31))\n return count\n","dependencies":["BjRHVeLaeN","12rbrZMWeM"]} +{"id":113,"func_id":"uyq1hVkAcj","symbol":"⩱","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⩱ = { ((⋗⩬⋾(a⊭↱a))↺((a⨸⪁a)⪒(a⨸⪁125))) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_uyq1hVkAcj(a):\n return op_7j4O788W3g(op_DpFCA1CohY(op_COABgblf1C(a,a)),op_f6k1SAg4EE(op_g55IO6H4Gj(a,a),op_g55IO6H4Gj(a,125)))\n","op_count_func":"def op_count_uyq1hVkAcj(a):\n count = op_count_COABgblf1C(a,a)+op_count_DpFCA1CohY(op_COABgblf1C(a,a))+op_count_g55IO6H4Gj(a,a)+op_count_g55IO6H4Gj(a,125)+op_count_f6k1SAg4EE(op_g55IO6H4Gj(a,a),op_g55IO6H4Gj(a,125))+op_count_7j4O788W3g(op_DpFCA1CohY(op_COABgblf1C(a,a)),op_f6k1SAg4EE(op_g55IO6H4Gj(a,a),op_g55IO6H4Gj(a,125)))\n return count\n","dependencies":["DpFCA1CohY","7j4O788W3g","f6k1SAg4EE","g55IO6H4Gj","COABgblf1C"]} +{"id":114,"func_id":"XnXgA4xnOs","symbol":"⨑≵⋬","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨑≵⋬b = { ((a⨰b)⫡⨏(⨑⩽⪐b)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_XnXgA4xnOs(a, b):\n return op_QMFrweE19q(op_eewbuw0ToL(a,b),op_AF7qkfDlqP(b))\n","op_count_func":"def op_count_XnXgA4xnOs(a, b):\n count = op_count_eewbuw0ToL(a,b)+op_count_AF7qkfDlqP(b)+op_count_QMFrweE19q(op_eewbuw0ToL(a,b),op_AF7qkfDlqP(b))\n return count\n","dependencies":["eewbuw0ToL","AF7qkfDlqP","QMFrweE19q"]} +{"id":115,"func_id":"IGFM8TAlm9","symbol":"⇉-⫰","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⇉-⫰a = { ((a⨰a)⪐) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_IGFM8TAlm9(a):\n return op_eH2TOUuTDT(op_eewbuw0ToL(a,a))\n","op_count_func":"def op_count_IGFM8TAlm9(a):\n count = op_count_eewbuw0ToL(a,a)+op_count_eH2TOUuTDT(op_eewbuw0ToL(a,a))\n return count\n","dependencies":["eH2TOUuTDT","eewbuw0ToL"]} +{"id":116,"func_id":"KipPnG1M2J","symbol":"∀⋜↑","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∀⋜↑ = { ((≤/a)⪒(a⋷a)) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_KipPnG1M2J(a):\n return op_f6k1SAg4EE(op_eLAdDNolq6(a),op_23Mk6UjR3U(a,a))\n","op_count_func":"def op_count_KipPnG1M2J(a):\n count = op_count_eLAdDNolq6(a)+op_count_23Mk6UjR3U(a,a)+op_count_f6k1SAg4EE(op_eLAdDNolq6(a),op_23Mk6UjR3U(a,a))\n return count\n","dependencies":["eLAdDNolq6","23Mk6UjR3U","f6k1SAg4EE"]} +{"id":117,"func_id":"k2HlF1dBQh","symbol":"∤","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∤a = { (((a⇼⇔∾a)+(a-a))-(⊄⩳↩3)) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_k2HlF1dBQh(a):\n return op_rysDP5nf3Z(op_W4YGzv6Whe(op_tifHPKVTfV(a,a),op_rysDP5nf3Z(a,a)),op_8w2t5hMYqp(3))\n","op_count_func":"def op_count_k2HlF1dBQh(a):\n count = op_count_tifHPKVTfV(a,a)+op_count_rysDP5nf3Z(a,a)+op_count_W4YGzv6Whe(op_tifHPKVTfV(a,a),op_rysDP5nf3Z(a,a))+op_count_8w2t5hMYqp(3)+op_count_rysDP5nf3Z(op_W4YGzv6Whe(op_tifHPKVTfV(a,a),op_rysDP5nf3Z(a,a)),op_8w2t5hMYqp(3))\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z","tifHPKVTfV","8w2t5hMYqp"]} +{"id":118,"func_id":"ancx8kZcWl","symbol":"⨝⩣∺","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⨝⩣∺ = { (-(a⊉≛↸a)) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_ancx8kZcWl(a):\n return op_t8gj7n24qd(op_DZ8iAZOCBD(a,a))\n","op_count_func":"def op_count_ancx8kZcWl(a):\n count = op_count_DZ8iAZOCBD(a,a)+op_count_t8gj7n24qd(op_DZ8iAZOCBD(a,a))\n return count\n","dependencies":["DZ8iAZOCBD","t8gj7n24qd"]} +{"id":119,"func_id":"jdwGQqwJi5","symbol":"∁","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∁ = { (a⋝⋈⪟a) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_jdwGQqwJi5(a):\n return op_2DDjHMKMc0(a,a)\n","op_count_func":"def op_count_jdwGQqwJi5(a):\n count = op_count_2DDjHMKMc0(a,a)\n return count\n","dependencies":["2DDjHMKMc0"]} +{"id":120,"func_id":"EWw2JM7wp4","symbol":"⪉⨛","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪉⨛b = { (((82⇼⇔∾a)⩚⊴⇥a)⩚⊴⇥((b∲⫓a)⋳⪒(a⨰b))) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_EWw2JM7wp4(a, b):\n return op_NTOWxs364D(op_NTOWxs364D(op_tifHPKVTfV(82,a),a),op_12rbrZMWeM(op_i8ToyICDmI(b,a),op_eewbuw0ToL(a,b)))\n","op_count_func":"def op_count_EWw2JM7wp4(a, b):\n count = op_count_tifHPKVTfV(82,a)+op_count_NTOWxs364D(op_tifHPKVTfV(82,a),a)+op_count_i8ToyICDmI(b,a)+op_count_eewbuw0ToL(a,b)+op_count_12rbrZMWeM(op_i8ToyICDmI(b,a),op_eewbuw0ToL(a,b))+op_count_NTOWxs364D(op_NTOWxs364D(op_tifHPKVTfV(82,a),a),op_12rbrZMWeM(op_i8ToyICDmI(b,a),op_eewbuw0ToL(a,b)))\n return count\n","dependencies":["NTOWxs364D","tifHPKVTfV","12rbrZMWeM","i8ToyICDmI","eewbuw0ToL"]} +{"id":121,"func_id":"3mBM5G4a3l","symbol":"⋃","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⋃a = { (51⨸⪁a) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_3mBM5G4a3l(a):\n return op_g55IO6H4Gj(51,a)\n","op_count_func":"def op_count_3mBM5G4a3l(a):\n count = op_count_g55IO6H4Gj(51,a)\n return count\n","dependencies":["g55IO6H4Gj"]} +{"id":122,"func_id":"18saOjeKKm","symbol":"⇠","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⇠a = { ((a⨳⩥⨓242)∲⫓(229⪨≂a)) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_18saOjeKKm(a):\n return op_i8ToyICDmI(op_nCS4ZIUYfx(a,242),op_sdazOOVcIp(229,a))\n","op_count_func":"def op_count_18saOjeKKm(a):\n count = op_count_nCS4ZIUYfx(a,242)+op_count_sdazOOVcIp(229,a)+op_count_i8ToyICDmI(op_nCS4ZIUYfx(a,242),op_sdazOOVcIp(229,a))\n return count\n","dependencies":["sdazOOVcIp","i8ToyICDmI","nCS4ZIUYfx"]} +{"id":123,"func_id":"keWfFq85dY","symbol":"≯","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≯a = { ((a⨸⪁a)⪠⩆⊳) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_keWfFq85dY(a):\n return op_JLbD19bQDL(op_g55IO6H4Gj(a,a))\n","op_count_func":"def op_count_keWfFq85dY(a):\n count = op_count_g55IO6H4Gj(a,a)+op_count_JLbD19bQDL(op_g55IO6H4Gj(a,a))\n return count\n","dependencies":["g55IO6H4Gj","JLbD19bQDL"]} +{"id":124,"func_id":"D309nIvmXG","symbol":"∓⪦","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∓⪦a = { (((a≧⫂∧a)⨰(a⨰a))⨰(∥⊫(343⪨≂a))) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_D309nIvmXG(a):\n return op_eewbuw0ToL(op_eewbuw0ToL(op_Ph9nP6C5qx(a,a),op_eewbuw0ToL(a,a)),op_P8v4zCKN1o(op_sdazOOVcIp(343,a)))\n","op_count_func":"def op_count_D309nIvmXG(a):\n count = op_count_Ph9nP6C5qx(a,a)+op_count_eewbuw0ToL(a,a)+op_count_eewbuw0ToL(op_Ph9nP6C5qx(a,a),op_eewbuw0ToL(a,a))+op_count_sdazOOVcIp(343,a)+op_count_P8v4zCKN1o(op_sdazOOVcIp(343,a))+op_count_eewbuw0ToL(op_eewbuw0ToL(op_Ph9nP6C5qx(a,a),op_eewbuw0ToL(a,a)),op_P8v4zCKN1o(op_sdazOOVcIp(343,a)))\n return count\n","dependencies":["P8v4zCKN1o","sdazOOVcIp","Ph9nP6C5qx","eewbuw0ToL"]} +{"id":125,"func_id":"w2P8NbNXyL","symbol":"⊉↱≁","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊉↱≁b = { ((≉(a⨰b))⪨≂((145⩷∴a)⪨≂(-b))) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_w2P8NbNXyL(a, b):\n return op_sdazOOVcIp(op_e1ybzncUwg(op_eewbuw0ToL(a,b)),op_sdazOOVcIp(op_9FxExcQeMw(145,a),op_t8gj7n24qd(b)))\n","op_count_func":"def op_count_w2P8NbNXyL(a, b):\n count = op_count_eewbuw0ToL(a,b)+op_count_e1ybzncUwg(op_eewbuw0ToL(a,b))+op_count_9FxExcQeMw(145,a)+op_count_t8gj7n24qd(b)+op_count_sdazOOVcIp(op_9FxExcQeMw(145,a),op_t8gj7n24qd(b))+op_count_sdazOOVcIp(op_e1ybzncUwg(op_eewbuw0ToL(a,b)),op_sdazOOVcIp(op_9FxExcQeMw(145,a),op_t8gj7n24qd(b)))\n return count\n","dependencies":["9FxExcQeMw","e1ybzncUwg","sdazOOVcIp","t8gj7n24qd","eewbuw0ToL"]} +{"id":126,"func_id":"o575Zjdmzy","symbol":"⫻⋑⊟","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫻⋑⊟ = { ((a⨸⪁(⨞⊢a))⪨≂((a∲⫓a)⋳⪒(265-a))) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_o575Zjdmzy(a):\n return op_sdazOOVcIp(op_g55IO6H4Gj(a,op_xUOZtlo3hN(a)),op_12rbrZMWeM(op_i8ToyICDmI(a,a),op_rysDP5nf3Z(265,a)))\n","op_count_func":"def op_count_o575Zjdmzy(a):\n count = op_count_xUOZtlo3hN(a)+op_count_g55IO6H4Gj(a,op_xUOZtlo3hN(a))+op_count_i8ToyICDmI(a,a)+op_count_rysDP5nf3Z(265,a)+op_count_12rbrZMWeM(op_i8ToyICDmI(a,a),op_rysDP5nf3Z(265,a))+op_count_sdazOOVcIp(op_g55IO6H4Gj(a,op_xUOZtlo3hN(a)),op_12rbrZMWeM(op_i8ToyICDmI(a,a),op_rysDP5nf3Z(265,a)))\n return count\n","dependencies":["rysDP5nf3Z","sdazOOVcIp","12rbrZMWeM","xUOZtlo3hN","g55IO6H4Gj","i8ToyICDmI"]} +{"id":127,"func_id":"Eev2Q7dYIw","symbol":"⊜","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊜ = { ((a≦≮≮)⨸⪁(∥⊫a)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_Eev2Q7dYIw(a):\n return op_g55IO6H4Gj(op_D4vGDi5EA2(a),op_P8v4zCKN1o(a))\n","op_count_func":"def op_count_Eev2Q7dYIw(a):\n count = op_count_D4vGDi5EA2(a)+op_count_P8v4zCKN1o(a)+op_count_g55IO6H4Gj(op_D4vGDi5EA2(a),op_P8v4zCKN1o(a))\n return count\n","dependencies":["g55IO6H4Gj","D4vGDi5EA2","P8v4zCKN1o"]} +{"id":128,"func_id":"bl5wxAcryP","symbol":"↰","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a↰ = { ((a⨳⩥⨓101)⩤) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_bl5wxAcryP(a):\n return op_Z2TMIBDE3Q(op_nCS4ZIUYfx(a,101))\n","op_count_func":"def op_count_bl5wxAcryP(a):\n count = op_count_nCS4ZIUYfx(a,101)+op_count_Z2TMIBDE3Q(op_nCS4ZIUYfx(a,101))\n return count\n","dependencies":["nCS4ZIUYfx","Z2TMIBDE3Q"]} +{"id":129,"func_id":"qWUSsah53b","symbol":"⫡⇟⇯","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⫡⇟⇯a = { (∥⊫(a⊉≛↸a)) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_qWUSsah53b(a):\n return op_P8v4zCKN1o(op_DZ8iAZOCBD(a,a))\n","op_count_func":"def op_count_qWUSsah53b(a):\n count = op_count_DZ8iAZOCBD(a,a)+op_count_P8v4zCKN1o(op_DZ8iAZOCBD(a,a))\n return count\n","dependencies":["DZ8iAZOCBD","P8v4zCKN1o"]} +{"id":130,"func_id":"OwUj7dcsQK","symbol":"∓","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∓a = { (⋗⩬⋾((a⋳⪒554)⨳⩥⨓(a⫡⨏a))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_OwUj7dcsQK(a):\n return op_DpFCA1CohY(op_nCS4ZIUYfx(op_12rbrZMWeM(a,554),op_QMFrweE19q(a,a)))\n","op_count_func":"def op_count_OwUj7dcsQK(a):\n count = op_count_12rbrZMWeM(a,554)+op_count_QMFrweE19q(a,a)+op_count_nCS4ZIUYfx(op_12rbrZMWeM(a,554),op_QMFrweE19q(a,a))+op_count_DpFCA1CohY(op_nCS4ZIUYfx(op_12rbrZMWeM(a,554),op_QMFrweE19q(a,a)))\n return count\n","dependencies":["DpFCA1CohY","12rbrZMWeM","nCS4ZIUYfx","QMFrweE19q"]} +{"id":131,"func_id":"SWo3A1KBJH","symbol":"⇋↷","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⇋↷a = { (⪲⇎((↽≂a)⋷(a⨵⪆a))) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_SWo3A1KBJH(a):\n return op_XPYlsWDdGa(op_23Mk6UjR3U(op_u6S6b8DprG(a),op_2DQ55sFlQl(a,a)))\n","op_count_func":"def op_count_SWo3A1KBJH(a):\n count = op_count_u6S6b8DprG(a)+op_count_2DQ55sFlQl(a,a)+op_count_23Mk6UjR3U(op_u6S6b8DprG(a),op_2DQ55sFlQl(a,a))+op_count_XPYlsWDdGa(op_23Mk6UjR3U(op_u6S6b8DprG(a),op_2DQ55sFlQl(a,a)))\n return count\n","dependencies":["XPYlsWDdGa","23Mk6UjR3U","2DQ55sFlQl","u6S6b8DprG"]} +{"id":132,"func_id":"DO4fhlbJSI","symbol":"⊿","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊿a = { ((⪲⇎(a⨵⪆a))⩷∴((≉a)⋳⪒(a⪨≂a))) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_DO4fhlbJSI(a):\n return op_9FxExcQeMw(op_XPYlsWDdGa(op_2DQ55sFlQl(a,a)),op_12rbrZMWeM(op_e1ybzncUwg(a),op_sdazOOVcIp(a,a)))\n","op_count_func":"def op_count_DO4fhlbJSI(a):\n count = op_count_2DQ55sFlQl(a,a)+op_count_XPYlsWDdGa(op_2DQ55sFlQl(a,a))+op_count_e1ybzncUwg(a)+op_count_sdazOOVcIp(a,a)+op_count_12rbrZMWeM(op_e1ybzncUwg(a),op_sdazOOVcIp(a,a))+op_count_9FxExcQeMw(op_XPYlsWDdGa(op_2DQ55sFlQl(a,a)),op_12rbrZMWeM(op_e1ybzncUwg(a),op_sdazOOVcIp(a,a)))\n return count\n","dependencies":["9FxExcQeMw","e1ybzncUwg","XPYlsWDdGa","sdazOOVcIp","2DQ55sFlQl","12rbrZMWeM"]} +{"id":133,"func_id":"8WDwsbhb0R","symbol":"∂⩏⊆","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∂⩏⊆a = { (≤/a) , if a<=92 ; (a⊦⊿) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_8WDwsbhb0R(a):\n if a <= 92:\n return op_eLAdDNolq6(a)\n else:\n return op_14qkJME0vr(a)\n","op_count_func":"def op_count_8WDwsbhb0R(a):\n if a <= 92:\n count = op_count_eLAdDNolq6(a)\n else:\n count = op_count_14qkJME0vr(a)\n return count\n","dependencies":["14qkJME0vr","eLAdDNolq6"]} +{"id":134,"func_id":"dfKe02y8D2","symbol":"⫚↹⊑","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⫚↹⊑b = { ((126⊠≄⫣)⋳⪒((-b)⨵⪆(a⨸⪁b))) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_dfKe02y8D2(a, b):\n return op_12rbrZMWeM(op_DIvbN7qnHd(126),op_2DQ55sFlQl(op_t8gj7n24qd(b),op_g55IO6H4Gj(a,b)))\n","op_count_func":"def op_count_dfKe02y8D2(a, b):\n count = op_count_DIvbN7qnHd(126)+op_count_t8gj7n24qd(b)+op_count_g55IO6H4Gj(a,b)+op_count_2DQ55sFlQl(op_t8gj7n24qd(b),op_g55IO6H4Gj(a,b))+op_count_12rbrZMWeM(op_DIvbN7qnHd(126),op_2DQ55sFlQl(op_t8gj7n24qd(b),op_g55IO6H4Gj(a,b)))\n return count\n","dependencies":["2DQ55sFlQl","DIvbN7qnHd","t8gj7n24qd","12rbrZMWeM","g55IO6H4Gj"]} +{"id":135,"func_id":"oPMjh9089D","symbol":"⊀","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊀a = { (((⩦⩻⨪67)⪨≂(a⋥≓≎63))⇋≉) , if (a⇼⇔∾9)<290 ; (((⊄⩳↩a)⨁⊸⫻)⫡⨏((a≧⫂∧a)⨸⪁(a≧⫂∧a))) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_oPMjh9089D(a):\n if op_tifHPKVTfV(a,9) < 290:\n return op_XIabStNQrY(op_sdazOOVcIp(op_2td37pGCOC(67),op_Qy55tPpLXF(a,63)))\n else:\n return op_QMFrweE19q(op_glklzrTFfD(op_8w2t5hMYqp(a)),op_g55IO6H4Gj(op_Ph9nP6C5qx(a,a),op_Ph9nP6C5qx(a,a)))\n","op_count_func":"def op_count_oPMjh9089D(a):\n if op_tifHPKVTfV(a,9) < 290:\n count = op_count_2td37pGCOC(67)+op_count_Qy55tPpLXF(a,63)+op_count_sdazOOVcIp(op_2td37pGCOC(67),op_Qy55tPpLXF(a,63))+op_count_XIabStNQrY(op_sdazOOVcIp(op_2td37pGCOC(67),op_Qy55tPpLXF(a,63)))+op_count_tifHPKVTfV(a,9)\n else:\n count = op_count_8w2t5hMYqp(a)+op_count_glklzrTFfD(op_8w2t5hMYqp(a))+op_count_Ph9nP6C5qx(a,a)+op_count_Ph9nP6C5qx(a,a)+op_count_g55IO6H4Gj(op_Ph9nP6C5qx(a,a),op_Ph9nP6C5qx(a,a))+op_count_QMFrweE19q(op_glklzrTFfD(op_8w2t5hMYqp(a)),op_g55IO6H4Gj(op_Ph9nP6C5qx(a,a),op_Ph9nP6C5qx(a,a)))\n return count\n","dependencies":["Qy55tPpLXF","XIabStNQrY","tifHPKVTfV","glklzrTFfD","sdazOOVcIp","8w2t5hMYqp","Ph9nP6C5qx","g55IO6H4Gj","2td37pGCOC","QMFrweE19q"]} +{"id":136,"func_id":"1h0rLqGiFr","symbol":"⩷","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⩷a = { (((a⊦⊿)↺(a⨸⪁a))⊦⊿) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_1h0rLqGiFr(a):\n return op_14qkJME0vr(op_7j4O788W3g(op_14qkJME0vr(a),op_g55IO6H4Gj(a,a)))\n","op_count_func":"def op_count_1h0rLqGiFr(a):\n count = op_count_14qkJME0vr(a)+op_count_g55IO6H4Gj(a,a)+op_count_7j4O788W3g(op_14qkJME0vr(a),op_g55IO6H4Gj(a,a))+op_count_14qkJME0vr(op_7j4O788W3g(op_14qkJME0vr(a),op_g55IO6H4Gj(a,a)))\n return count\n","dependencies":["14qkJME0vr","g55IO6H4Gj","7j4O788W3g"]} +{"id":137,"func_id":"PPChnnnBFF","symbol":"∣","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∣b = { (≤/((a⪐)≧⫂∧(a∲⫓b))) , if (b⪐)<590 ; a , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_PPChnnnBFF(a, b):\n if op_eH2TOUuTDT(b) < 590:\n return op_eLAdDNolq6(op_Ph9nP6C5qx(op_eH2TOUuTDT(a),op_i8ToyICDmI(a,b)))\n else:\n return a\n","op_count_func":"def op_count_PPChnnnBFF(a, b):\n if op_eH2TOUuTDT(b) < 590:\n count = op_count_eH2TOUuTDT(a)+op_count_i8ToyICDmI(a,b)+op_count_Ph9nP6C5qx(op_eH2TOUuTDT(a),op_i8ToyICDmI(a,b))+op_count_eLAdDNolq6(op_Ph9nP6C5qx(op_eH2TOUuTDT(a),op_i8ToyICDmI(a,b)))+op_count_eH2TOUuTDT(b)\n else:\n count = 1\n return count\n","dependencies":["eLAdDNolq6","eH2TOUuTDT","Ph9nP6C5qx","i8ToyICDmI"]} +{"id":138,"func_id":"d7ASUq0ydm","symbol":"⫯⪬∳","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⫯⪬∳b = { ((b⋥≓≎a)≧⫂∧(⊄⩳↩a)) , if (a≦≮≮)!=65 ; ((b⫩⊇)⋥≓≎(a⨰b)) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_d7ASUq0ydm(a, b):\n if op_D4vGDi5EA2(a) != 65:\n return op_Ph9nP6C5qx(op_Qy55tPpLXF(b,a),op_8w2t5hMYqp(a))\n else:\n return op_Qy55tPpLXF(op_BjRHVeLaeN(b),op_eewbuw0ToL(a,b))\n","op_count_func":"def op_count_d7ASUq0ydm(a, b):\n if op_D4vGDi5EA2(a) != 65:\n count = op_count_Qy55tPpLXF(b,a)+op_count_8w2t5hMYqp(a)+op_count_Ph9nP6C5qx(op_Qy55tPpLXF(b,a),op_8w2t5hMYqp(a))+op_count_D4vGDi5EA2(a)\n else:\n count = op_count_BjRHVeLaeN(b)+op_count_eewbuw0ToL(a,b)+op_count_Qy55tPpLXF(op_BjRHVeLaeN(b),op_eewbuw0ToL(a,b))\n return count\n","dependencies":["Qy55tPpLXF","BjRHVeLaeN","8w2t5hMYqp","Ph9nP6C5qx","eewbuw0ToL","D4vGDi5EA2"]} +{"id":139,"func_id":"IwW236VD4Y","symbol":"≠≀","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a≠≀b = { (⩦⩻⨪(a⩚⊴⇥b)) , if (≤/b)>10 ; ((a⪨≂a)⪨≂(a⋝⋈⪟356)) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_IwW236VD4Y(a, b):\n if op_eLAdDNolq6(b) > 10:\n return op_2td37pGCOC(op_NTOWxs364D(a,b))\n else:\n return op_sdazOOVcIp(op_sdazOOVcIp(a,a),op_2DDjHMKMc0(a,356))\n","op_count_func":"def op_count_IwW236VD4Y(a, b):\n if op_eLAdDNolq6(b) > 10:\n count = op_count_NTOWxs364D(a,b)+op_count_2td37pGCOC(op_NTOWxs364D(a,b))+op_count_eLAdDNolq6(b)\n else:\n count = op_count_sdazOOVcIp(a,a)+op_count_2DDjHMKMc0(a,356)+op_count_sdazOOVcIp(op_sdazOOVcIp(a,a),op_2DDjHMKMc0(a,356))\n return count\n","dependencies":["eLAdDNolq6","NTOWxs364D","sdazOOVcIp","2DDjHMKMc0","2td37pGCOC"]} +{"id":140,"func_id":"LYeZOJ0nQG","symbol":"⫎≠⋺","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⫎≠⋺a = { ((655⩚⊴⇥a)∲⫓(∥⊫86)) , if (a⩷∴509)>=9 ; ((1⊭↱337)⇼⇔∾(a⩷∴a)) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_LYeZOJ0nQG(a):\n if op_9FxExcQeMw(a,509) >= 9:\n return op_i8ToyICDmI(op_NTOWxs364D(655,a),op_P8v4zCKN1o(86))\n else:\n return op_tifHPKVTfV(op_COABgblf1C(1,337),op_9FxExcQeMw(a,a))\n","op_count_func":"def op_count_LYeZOJ0nQG(a):\n if op_9FxExcQeMw(a,509) >= 9:\n count = op_count_NTOWxs364D(655,a)+op_count_P8v4zCKN1o(86)+op_count_i8ToyICDmI(op_NTOWxs364D(655,a),op_P8v4zCKN1o(86))+op_count_9FxExcQeMw(a,509)\n else:\n count = op_count_COABgblf1C(1,337)+op_count_9FxExcQeMw(a,a)+op_count_tifHPKVTfV(op_COABgblf1C(1,337),op_9FxExcQeMw(a,a))\n return count\n","dependencies":["9FxExcQeMw","NTOWxs364D","P8v4zCKN1o","tifHPKVTfV","i8ToyICDmI","COABgblf1C"]} +{"id":141,"func_id":"v0DYgG9ikt","symbol":"⊬⫿⊭","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊬⫿⊭ = { ((⨑⩽⪐(≤/a))↺((⨞⊢a)⨰(↽≂188))) , if a<119 ; (((∥⊫a)⨳⩥⨓(a⨵⪆a))↺(⊄⩳↩(a⋝⋈⪟a))) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_v0DYgG9ikt(a):\n if a < 119:\n return op_7j4O788W3g(op_AF7qkfDlqP(op_eLAdDNolq6(a)),op_eewbuw0ToL(op_xUOZtlo3hN(a),op_u6S6b8DprG(188)))\n else:\n return op_7j4O788W3g(op_nCS4ZIUYfx(op_P8v4zCKN1o(a),op_2DQ55sFlQl(a,a)),op_8w2t5hMYqp(op_2DDjHMKMc0(a,a)))\n","op_count_func":"def op_count_v0DYgG9ikt(a):\n if a < 119:\n count = op_count_eLAdDNolq6(a)+op_count_AF7qkfDlqP(op_eLAdDNolq6(a))+op_count_xUOZtlo3hN(a)+op_count_u6S6b8DprG(188)+op_count_eewbuw0ToL(op_xUOZtlo3hN(a),op_u6S6b8DprG(188))+op_count_7j4O788W3g(op_AF7qkfDlqP(op_eLAdDNolq6(a)),op_eewbuw0ToL(op_xUOZtlo3hN(a),op_u6S6b8DprG(188)))\n else:\n count = op_count_P8v4zCKN1o(a)+op_count_2DQ55sFlQl(a,a)+op_count_nCS4ZIUYfx(op_P8v4zCKN1o(a),op_2DQ55sFlQl(a,a))+op_count_2DDjHMKMc0(a,a)+op_count_8w2t5hMYqp(op_2DDjHMKMc0(a,a))+op_count_7j4O788W3g(op_nCS4ZIUYfx(op_P8v4zCKN1o(a),op_2DQ55sFlQl(a,a)),op_8w2t5hMYqp(op_2DDjHMKMc0(a,a)))\n return count\n","dependencies":["eLAdDNolq6","P8v4zCKN1o","7j4O788W3g","8w2t5hMYqp","2DQ55sFlQl","2DDjHMKMc0","xUOZtlo3hN","nCS4ZIUYfx","eewbuw0ToL","AF7qkfDlqP","u6S6b8DprG"]} +{"id":142,"func_id":"xRrnTEsQ6j","symbol":"⫁⪎","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⫁⪎b = { ((b⋝⋈⪟a)⇼⇔∾a) , if (∥⊫b)!=57 ; ((191∲⫓a)⋥≓≎(a⪨≂368)) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_xRrnTEsQ6j(a, b):\n if op_P8v4zCKN1o(b) != 57:\n return op_tifHPKVTfV(op_2DDjHMKMc0(b,a),a)\n else:\n return op_Qy55tPpLXF(op_i8ToyICDmI(191,a),op_sdazOOVcIp(a,368))\n","op_count_func":"def op_count_xRrnTEsQ6j(a, b):\n if op_P8v4zCKN1o(b) != 57:\n count = op_count_2DDjHMKMc0(b,a)+op_count_tifHPKVTfV(op_2DDjHMKMc0(b,a),a)+op_count_P8v4zCKN1o(b)\n else:\n count = op_count_i8ToyICDmI(191,a)+op_count_sdazOOVcIp(a,368)+op_count_Qy55tPpLXF(op_i8ToyICDmI(191,a),op_sdazOOVcIp(a,368))\n return count\n","dependencies":["P8v4zCKN1o","Qy55tPpLXF","tifHPKVTfV","sdazOOVcIp","2DDjHMKMc0","i8ToyICDmI"]} +{"id":143,"func_id":"HmxsFra2vL","symbol":"∙∹∝","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∙∹∝b = { ((a⪒408)∲⫓(b⩤)) , if (a⫩⊇)==144 ; ((a⩤)⪠⩆⊳) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_HmxsFra2vL(a, b):\n if op_BjRHVeLaeN(a) == 144:\n return op_i8ToyICDmI(op_f6k1SAg4EE(a,408),op_Z2TMIBDE3Q(b))\n else:\n return op_JLbD19bQDL(op_Z2TMIBDE3Q(a))\n","op_count_func":"def op_count_HmxsFra2vL(a, b):\n if op_BjRHVeLaeN(a) == 144:\n count = op_count_f6k1SAg4EE(a,408)+op_count_Z2TMIBDE3Q(b)+op_count_i8ToyICDmI(op_f6k1SAg4EE(a,408),op_Z2TMIBDE3Q(b))+op_count_BjRHVeLaeN(a)\n else:\n count = op_count_Z2TMIBDE3Q(a)+op_count_JLbD19bQDL(op_Z2TMIBDE3Q(a))\n return count\n","dependencies":["BjRHVeLaeN","JLbD19bQDL","f6k1SAg4EE","Z2TMIBDE3Q","i8ToyICDmI"]} +{"id":144,"func_id":"zR4jO40bMj","symbol":"⪶≀⋏","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪶≀⋏b = { (((b⨸⪁b)⨸⪁(a-a))⋝⋈⪟(b⋝⋈⪟(b+b))) , if a<244 ; (((b⩚⊴⇥a)⨁⊸⫻)⨰a) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_zR4jO40bMj(a, b):\n if a < 244:\n return op_2DDjHMKMc0(op_g55IO6H4Gj(op_g55IO6H4Gj(b,b),op_rysDP5nf3Z(a,a)),op_2DDjHMKMc0(b,op_W4YGzv6Whe(b,b)))\n else:\n return op_eewbuw0ToL(op_glklzrTFfD(op_NTOWxs364D(b,a)),a)\n","op_count_func":"def op_count_zR4jO40bMj(a, b):\n if a < 244:\n count = op_count_g55IO6H4Gj(b,b)+op_count_rysDP5nf3Z(a,a)+op_count_g55IO6H4Gj(op_g55IO6H4Gj(b,b),op_rysDP5nf3Z(a,a))+op_count_W4YGzv6Whe(b,b)+op_count_2DDjHMKMc0(b,op_W4YGzv6Whe(b,b))+op_count_2DDjHMKMc0(op_g55IO6H4Gj(op_g55IO6H4Gj(b,b),op_rysDP5nf3Z(a,a)),op_2DDjHMKMc0(b,op_W4YGzv6Whe(b,b)))\n else:\n count = op_count_NTOWxs364D(b,a)+op_count_glklzrTFfD(op_NTOWxs364D(b,a))+op_count_eewbuw0ToL(op_glklzrTFfD(op_NTOWxs364D(b,a)),a)\n return count\n","dependencies":["W4YGzv6Whe","rysDP5nf3Z","NTOWxs364D","glklzrTFfD","2DDjHMKMc0","g55IO6H4Gj","eewbuw0ToL"]} +{"id":145,"func_id":"AFVx7xoS7T","symbol":"⇌⫙⪟","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⇌⫙⪟b = { (⨞⊢(a⇼⇔∾(a⋳⪒a))) , if (⨞⊢b)<133 ; ((a⋳⪒(b⨰261))⇼⇔∾((⋗⩬⋾b)⊉≛↸(a⨵⪆75))) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_AFVx7xoS7T(a, b):\n if op_xUOZtlo3hN(b) < 133:\n return op_xUOZtlo3hN(op_tifHPKVTfV(a,op_12rbrZMWeM(a,a)))\n else:\n return op_tifHPKVTfV(op_12rbrZMWeM(a,op_eewbuw0ToL(b,261)),op_DZ8iAZOCBD(op_DpFCA1CohY(b),op_2DQ55sFlQl(a,75)))\n","op_count_func":"def op_count_AFVx7xoS7T(a, b):\n if op_xUOZtlo3hN(b) < 133:\n count = op_count_12rbrZMWeM(a,a)+op_count_tifHPKVTfV(a,op_12rbrZMWeM(a,a))+op_count_xUOZtlo3hN(op_tifHPKVTfV(a,op_12rbrZMWeM(a,a)))+op_count_xUOZtlo3hN(b)\n else:\n count = op_count_eewbuw0ToL(b,261)+op_count_12rbrZMWeM(a,op_eewbuw0ToL(b,261))+op_count_DpFCA1CohY(b)+op_count_2DQ55sFlQl(a,75)+op_count_DZ8iAZOCBD(op_DpFCA1CohY(b),op_2DQ55sFlQl(a,75))+op_count_tifHPKVTfV(op_12rbrZMWeM(a,op_eewbuw0ToL(b,261)),op_DZ8iAZOCBD(op_DpFCA1CohY(b),op_2DQ55sFlQl(a,75)))\n return count\n","dependencies":["DpFCA1CohY","DZ8iAZOCBD","tifHPKVTfV","2DQ55sFlQl","12rbrZMWeM","xUOZtlo3hN","eewbuw0ToL"]} +{"id":146,"func_id":"bjFbhXSADs","symbol":"⪊≅","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⪊≅ = { (377⪠⩆⊳) , if (a⊭↱876)>=867 ; (a⨳⩥⨓a) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_bjFbhXSADs(a):\n if op_COABgblf1C(a,876) >= 867:\n return op_JLbD19bQDL(377)\n else:\n return op_nCS4ZIUYfx(a,a)\n","op_count_func":"def op_count_bjFbhXSADs(a):\n if op_COABgblf1C(a,876) >= 867:\n count = op_count_JLbD19bQDL(377)+op_count_COABgblf1C(a,876)\n else:\n count = op_count_nCS4ZIUYfx(a,a)\n return count\n","dependencies":["COABgblf1C","JLbD19bQDL","nCS4ZIUYfx"]} +{"id":147,"func_id":"WR6HLWljOP","symbol":"↢","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a↢b = { ((a∲⫓a)⪒(≤/a)) , if (a⊭↱114)<=535 ; ((a⋳⪒749)↺(b⨸⪁a)) , else }","definition_type":"branch_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_WR6HLWljOP(a, b):\n if op_COABgblf1C(a,114) <= 535:\n return op_f6k1SAg4EE(op_i8ToyICDmI(a,a),op_eLAdDNolq6(a))\n else:\n return op_7j4O788W3g(op_12rbrZMWeM(a,749),op_g55IO6H4Gj(b,a))\n","op_count_func":"def op_count_WR6HLWljOP(a, b):\n if op_COABgblf1C(a,114) <= 535:\n count = op_count_i8ToyICDmI(a,a)+op_count_eLAdDNolq6(a)+op_count_f6k1SAg4EE(op_i8ToyICDmI(a,a),op_eLAdDNolq6(a))+op_count_COABgblf1C(a,114)\n else:\n count = op_count_12rbrZMWeM(a,749)+op_count_g55IO6H4Gj(b,a)+op_count_7j4O788W3g(op_12rbrZMWeM(a,749),op_g55IO6H4Gj(b,a))\n return count\n","dependencies":["eLAdDNolq6","g55IO6H4Gj","7j4O788W3g","12rbrZMWeM","f6k1SAg4EE","i8ToyICDmI","COABgblf1C"]} +{"id":148,"func_id":"2GS7woTJqF","symbol":"+⪬∐","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a+⪬∐b = { (a≦≮≮) , if b!=63 ; (b⨸⪁575) , else }","definition_type":"branch_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_2GS7woTJqF(a, b):\n if b != 63:\n return op_D4vGDi5EA2(a)\n else:\n return op_g55IO6H4Gj(b,575)\n","op_count_func":"def op_count_2GS7woTJqF(a, b):\n if b != 63:\n count = op_count_D4vGDi5EA2(a)\n else:\n count = op_count_g55IO6H4Gj(b,575)\n return count\n","dependencies":["g55IO6H4Gj","D4vGDi5EA2"]} +{"id":149,"func_id":"uBihLCJcMX","symbol":"⇔⨋","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇔⨋ = { (((a⨁⊸⫻)⋳⪒a)⪒((a≦≮≮)⨁⊸⫻)) , if a<217 ; (((a≋⫹)⨳⩥⨓(a↺a))⋳⪒((a⨳⩥⨓a)⫡⨏(a⇼⇔∾a))) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_uBihLCJcMX(a):\n if a < 217:\n return op_f6k1SAg4EE(op_12rbrZMWeM(op_glklzrTFfD(a),a),op_glklzrTFfD(op_D4vGDi5EA2(a)))\n else:\n return op_12rbrZMWeM(op_nCS4ZIUYfx(op_N41Kp7NANJ(a),op_7j4O788W3g(a,a)),op_QMFrweE19q(op_nCS4ZIUYfx(a,a),op_tifHPKVTfV(a,a)))\n","op_count_func":"def op_count_uBihLCJcMX(a):\n if a < 217:\n count = op_count_glklzrTFfD(a)+op_count_12rbrZMWeM(op_glklzrTFfD(a),a)+op_count_D4vGDi5EA2(a)+op_count_glklzrTFfD(op_D4vGDi5EA2(a))+op_count_f6k1SAg4EE(op_12rbrZMWeM(op_glklzrTFfD(a),a),op_glklzrTFfD(op_D4vGDi5EA2(a)))\n else:\n count = op_count_N41Kp7NANJ(a)+op_count_7j4O788W3g(a,a)+op_count_nCS4ZIUYfx(op_N41Kp7NANJ(a),op_7j4O788W3g(a,a))+op_count_nCS4ZIUYfx(a,a)+op_count_tifHPKVTfV(a,a)+op_count_QMFrweE19q(op_nCS4ZIUYfx(a,a),op_tifHPKVTfV(a,a))+op_count_12rbrZMWeM(op_nCS4ZIUYfx(op_N41Kp7NANJ(a),op_7j4O788W3g(a,a)),op_QMFrweE19q(op_nCS4ZIUYfx(a,a),op_tifHPKVTfV(a,a)))\n return count\n","dependencies":["N41Kp7NANJ","7j4O788W3g","glklzrTFfD","tifHPKVTfV","12rbrZMWeM","f6k1SAg4EE","D4vGDi5EA2","nCS4ZIUYfx","QMFrweE19q"]} +{"id":150,"func_id":"3tVxb0NHM4","symbol":"⪎↠","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪎↠b = { ((77⋳⪒665)⨵⪆(662↺b)) , if a>621 ; (∥⊫(a↺a)) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_3tVxb0NHM4(a, b):\n if a > 621:\n return op_2DQ55sFlQl(op_12rbrZMWeM(77,665),op_7j4O788W3g(662,b))\n else:\n return op_P8v4zCKN1o(op_7j4O788W3g(a,a))\n","op_count_func":"def op_count_3tVxb0NHM4(a, b):\n if a > 621:\n count = op_count_12rbrZMWeM(77,665)+op_count_7j4O788W3g(662,b)+op_count_2DQ55sFlQl(op_12rbrZMWeM(77,665),op_7j4O788W3g(662,b))\n else:\n count = op_count_7j4O788W3g(a,a)+op_count_P8v4zCKN1o(op_7j4O788W3g(a,a))\n return count\n","dependencies":["P8v4zCKN1o","7j4O788W3g","2DQ55sFlQl","12rbrZMWeM"]} +{"id":151,"func_id":"fG6uBQFnGz","symbol":"↩⪖","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"↩⪖a = { (((a-a)⨵⪆(a⪐))⫡⨏(a⩤)) , if (a⇋≉)==322 ; (((≉487)⨳⩥⨓(⋗⩬⋾a))⨸⪁((a⊦⊿)≧⫂∧(a∲⫓a))) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_fG6uBQFnGz(a):\n if op_XIabStNQrY(a) == 322:\n return op_QMFrweE19q(op_2DQ55sFlQl(op_rysDP5nf3Z(a,a),op_eH2TOUuTDT(a)),op_Z2TMIBDE3Q(a))\n else:\n return op_g55IO6H4Gj(op_nCS4ZIUYfx(op_e1ybzncUwg(487),op_DpFCA1CohY(a)),op_Ph9nP6C5qx(op_14qkJME0vr(a),op_i8ToyICDmI(a,a)))\n","op_count_func":"def op_count_fG6uBQFnGz(a):\n if op_XIabStNQrY(a) == 322:\n count = op_count_rysDP5nf3Z(a,a)+op_count_eH2TOUuTDT(a)+op_count_2DQ55sFlQl(op_rysDP5nf3Z(a,a),op_eH2TOUuTDT(a))+op_count_Z2TMIBDE3Q(a)+op_count_QMFrweE19q(op_2DQ55sFlQl(op_rysDP5nf3Z(a,a),op_eH2TOUuTDT(a)),op_Z2TMIBDE3Q(a))+op_count_XIabStNQrY(a)\n else:\n count = op_count_e1ybzncUwg(487)+op_count_DpFCA1CohY(a)+op_count_nCS4ZIUYfx(op_e1ybzncUwg(487),op_DpFCA1CohY(a))+op_count_14qkJME0vr(a)+op_count_i8ToyICDmI(a,a)+op_count_Ph9nP6C5qx(op_14qkJME0vr(a),op_i8ToyICDmI(a,a))+op_count_g55IO6H4Gj(op_nCS4ZIUYfx(op_e1ybzncUwg(487),op_DpFCA1CohY(a)),op_Ph9nP6C5qx(op_14qkJME0vr(a),op_i8ToyICDmI(a,a)))\n return count\n","dependencies":["rysDP5nf3Z","DpFCA1CohY","e1ybzncUwg","XIabStNQrY","eH2TOUuTDT","2DQ55sFlQl","Ph9nP6C5qx","Z2TMIBDE3Q","14qkJME0vr","g55IO6H4Gj","i8ToyICDmI","nCS4ZIUYfx","QMFrweE19q"]} +{"id":152,"func_id":"l1M9WJ3V7u","symbol":"∑⇻≧","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∑⇻≧a = { (⨞⊢a) , if (a⫌⩹⨱)<644 ; (426⋷a) , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_l1M9WJ3V7u(a):\n if op_EBcxylXtPf(a) < 644:\n return op_xUOZtlo3hN(a)\n else:\n return op_23Mk6UjR3U(426,a)\n","op_count_func":"def op_count_l1M9WJ3V7u(a):\n if op_EBcxylXtPf(a) < 644:\n count = op_count_xUOZtlo3hN(a)+op_count_EBcxylXtPf(a)\n else:\n count = op_count_23Mk6UjR3U(426,a)\n return count\n","dependencies":["23Mk6UjR3U","EBcxylXtPf","xUOZtlo3hN"]} +{"id":153,"func_id":"L05ObWFQCd","symbol":"⪍↜⋙","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪍↜⋙b = { ((a-b)⊉≛↸(a⫡⨏b)) , if (a⫌⩹⨱)!=88 ; ((a⫡⨏b)⇼⇔∾(a⫌⩹⨱)) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_L05ObWFQCd(a, b):\n if op_EBcxylXtPf(a) != 88:\n return op_DZ8iAZOCBD(op_rysDP5nf3Z(a,b),op_QMFrweE19q(a,b))\n else:\n return op_tifHPKVTfV(op_QMFrweE19q(a,b),op_EBcxylXtPf(a))\n","op_count_func":"def op_count_L05ObWFQCd(a, b):\n if op_EBcxylXtPf(a) != 88:\n count = op_count_rysDP5nf3Z(a,b)+op_count_QMFrweE19q(a,b)+op_count_DZ8iAZOCBD(op_rysDP5nf3Z(a,b),op_QMFrweE19q(a,b))+op_count_EBcxylXtPf(a)\n else:\n count = op_count_QMFrweE19q(a,b)+op_count_EBcxylXtPf(a)+op_count_tifHPKVTfV(op_QMFrweE19q(a,b),op_EBcxylXtPf(a))\n return count\n","dependencies":["rysDP5nf3Z","DZ8iAZOCBD","tifHPKVTfV","EBcxylXtPf","QMFrweE19q"]} +{"id":154,"func_id":"x5lMkHmzsq","symbol":"↥≼⋛","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"↥≼⋛a = { ((a⩤)⋥≓≎(a⨳⩥⨓a)) , if a<111 ; ((a⩷∴285)↺(≤/597)) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_x5lMkHmzsq(a):\n if a < 111:\n return op_Qy55tPpLXF(op_Z2TMIBDE3Q(a),op_nCS4ZIUYfx(a,a))\n else:\n return op_7j4O788W3g(op_9FxExcQeMw(a,285),op_eLAdDNolq6(597))\n","op_count_func":"def op_count_x5lMkHmzsq(a):\n if a < 111:\n count = op_count_Z2TMIBDE3Q(a)+op_count_nCS4ZIUYfx(a,a)+op_count_Qy55tPpLXF(op_Z2TMIBDE3Q(a),op_nCS4ZIUYfx(a,a))\n else:\n count = op_count_9FxExcQeMw(a,285)+op_count_eLAdDNolq6(597)+op_count_7j4O788W3g(op_9FxExcQeMw(a,285),op_eLAdDNolq6(597))\n return count\n","dependencies":["eLAdDNolq6","9FxExcQeMw","Qy55tPpLXF","7j4O788W3g","Z2TMIBDE3Q","nCS4ZIUYfx"]} +{"id":155,"func_id":"zoVPnxeHJ3","symbol":"≇⪴","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≇⪴a = { ((a⪒a)↺(a⨸⪁a)) , if (a⊭↱741)>=792 ; ((a≧⫂∧a)⊦⊿) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_zoVPnxeHJ3(a):\n if op_COABgblf1C(a,741) >= 792:\n return op_7j4O788W3g(op_f6k1SAg4EE(a,a),op_g55IO6H4Gj(a,a))\n else:\n return op_14qkJME0vr(op_Ph9nP6C5qx(a,a))\n","op_count_func":"def op_count_zoVPnxeHJ3(a):\n if op_COABgblf1C(a,741) >= 792:\n count = op_count_f6k1SAg4EE(a,a)+op_count_g55IO6H4Gj(a,a)+op_count_7j4O788W3g(op_f6k1SAg4EE(a,a),op_g55IO6H4Gj(a,a))+op_count_COABgblf1C(a,741)\n else:\n count = op_count_Ph9nP6C5qx(a,a)+op_count_14qkJME0vr(op_Ph9nP6C5qx(a,a))\n return count\n","dependencies":["7j4O788W3g","Ph9nP6C5qx","f6k1SAg4EE","14qkJME0vr","g55IO6H4Gj","COABgblf1C"]} +{"id":156,"func_id":"9Isq31Ruls","symbol":"∌↝","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∌↝b = { ((⋗⩬⋾b)∲⫓(⨞⊢(a⩚⊴⇥145))) , if (b⫌⩹⨱)>=130 ; ((-a)⋷((a≧⫂∧a)⋝⋈⪟(50⋥≓≎196))) , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_9Isq31Ruls(a, b):\n if op_EBcxylXtPf(b) >= 130:\n return op_i8ToyICDmI(op_DpFCA1CohY(b),op_xUOZtlo3hN(op_NTOWxs364D(a,145)))\n else:\n return op_23Mk6UjR3U(op_t8gj7n24qd(a),op_2DDjHMKMc0(op_Ph9nP6C5qx(a,a),op_Qy55tPpLXF(50,196)))\n","op_count_func":"def op_count_9Isq31Ruls(a, b):\n if op_EBcxylXtPf(b) >= 130:\n count = op_count_DpFCA1CohY(b)+op_count_NTOWxs364D(a,145)+op_count_xUOZtlo3hN(op_NTOWxs364D(a,145))+op_count_i8ToyICDmI(op_DpFCA1CohY(b),op_xUOZtlo3hN(op_NTOWxs364D(a,145)))+op_count_EBcxylXtPf(b)\n else:\n count = op_count_t8gj7n24qd(a)+op_count_Ph9nP6C5qx(a,a)+op_count_Qy55tPpLXF(50,196)+op_count_2DDjHMKMc0(op_Ph9nP6C5qx(a,a),op_Qy55tPpLXF(50,196))+op_count_23Mk6UjR3U(op_t8gj7n24qd(a),op_2DDjHMKMc0(op_Ph9nP6C5qx(a,a),op_Qy55tPpLXF(50,196)))\n return count\n","dependencies":["DpFCA1CohY","NTOWxs364D","Qy55tPpLXF","23Mk6UjR3U","EBcxylXtPf","xUOZtlo3hN","t8gj7n24qd","2DDjHMKMc0","Ph9nP6C5qx","i8ToyICDmI"]} +{"id":157,"func_id":"7IPrd9c3lf","symbol":"⊵↤","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊵↤ = { (((a⪒a)+a)⇼⇔∾((a⫡⨏a)⩤)) , if (a!=425 and (≤/a)>523) ; (((a⫩⊇)⨰(a⋥≓≎a))⋥≓≎((a⩷∴a)⋝⋈⪟(a⩷∴a))) , else }","definition_type":"branch_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_7IPrd9c3lf(a):\n if (a != 425 and op_eLAdDNolq6(a) > 523):\n return op_tifHPKVTfV(op_W4YGzv6Whe(op_f6k1SAg4EE(a,a),a),op_Z2TMIBDE3Q(op_QMFrweE19q(a,a)))\n else:\n return op_Qy55tPpLXF(op_eewbuw0ToL(op_BjRHVeLaeN(a),op_Qy55tPpLXF(a,a)),op_2DDjHMKMc0(op_9FxExcQeMw(a,a),op_9FxExcQeMw(a,a)))\n","op_count_func":"def op_count_7IPrd9c3lf(a):\n if (a != 425 and op_eLAdDNolq6(a) > 523):\n count = op_count_f6k1SAg4EE(a,a)+op_count_W4YGzv6Whe(op_f6k1SAg4EE(a,a),a)+op_count_QMFrweE19q(a,a)+op_count_Z2TMIBDE3Q(op_QMFrweE19q(a,a))+op_count_tifHPKVTfV(op_W4YGzv6Whe(op_f6k1SAg4EE(a,a),a),op_Z2TMIBDE3Q(op_QMFrweE19q(a,a)))+op_count_eLAdDNolq6(a)\n else:\n count = op_count_BjRHVeLaeN(a)+op_count_Qy55tPpLXF(a,a)+op_count_eewbuw0ToL(op_BjRHVeLaeN(a),op_Qy55tPpLXF(a,a))+op_count_9FxExcQeMw(a,a)+op_count_9FxExcQeMw(a,a)+op_count_2DDjHMKMc0(op_9FxExcQeMw(a,a),op_9FxExcQeMw(a,a))+op_count_Qy55tPpLXF(op_eewbuw0ToL(op_BjRHVeLaeN(a),op_Qy55tPpLXF(a,a)),op_2DDjHMKMc0(op_9FxExcQeMw(a,a),op_9FxExcQeMw(a,a)))\n return count\n","dependencies":["eLAdDNolq6","W4YGzv6Whe","9FxExcQeMw","Qy55tPpLXF","BjRHVeLaeN","tifHPKVTfV","2DDjHMKMc0","f6k1SAg4EE","Z2TMIBDE3Q","eewbuw0ToL","QMFrweE19q"]} +{"id":158,"func_id":"PxpmPgHHJV","symbol":"↓⇌","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"↓⇌a = { (a⋷507) , if a>=68 and (a⩤)>=87 ; (a⨁⊸⫻) , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_PxpmPgHHJV(a):\n if a >= 68 and op_Z2TMIBDE3Q(a) >= 87:\n return op_23Mk6UjR3U(a,507)\n else:\n return op_glklzrTFfD(a)\n","op_count_func":"def op_count_PxpmPgHHJV(a):\n if a >= 68 and op_Z2TMIBDE3Q(a) >= 87:\n count = op_count_23Mk6UjR3U(a,507)+op_count_Z2TMIBDE3Q(a)\n else:\n count = op_count_glklzrTFfD(a)\n return count\n","dependencies":["23Mk6UjR3U","glklzrTFfD","Z2TMIBDE3Q"]} +{"id":159,"func_id":"BUOGQAYlQx","symbol":"⋂","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⋂a = { a , if (⪲⇎a)==26 ; ((a⩚⊴⇥a)⫡⨏(a⊭↱102)) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_BUOGQAYlQx(a):\n if op_XPYlsWDdGa(a) == 26:\n return a\n else:\n return op_QMFrweE19q(op_NTOWxs364D(a,a),op_COABgblf1C(a,102))\n","op_count_func":"def op_count_BUOGQAYlQx(a):\n if op_XPYlsWDdGa(a) == 26:\n count = 1\n else:\n count = op_count_NTOWxs364D(a,a)+op_count_COABgblf1C(a,102)+op_count_QMFrweE19q(op_NTOWxs364D(a,a),op_COABgblf1C(a,102))\n return count\n","dependencies":["NTOWxs364D","XPYlsWDdGa","QMFrweE19q","COABgblf1C"]} +{"id":160,"func_id":"W7eaUhjymW","symbol":"≛","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≛a = { (((a+a)⊉≛↸(a⪠⩆⊳))⊭↱((a⪒a)⩚⊴⇥(a⋝⋈⪟a))) , if (a⫩⊇)>7 or a==273 ; (((a-a)⪒(a⪨≂a))⊉≛↸((a⨰a)⋝⋈⪟(a+a))) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_W7eaUhjymW(a):\n if op_BjRHVeLaeN(a) > 7 or a == 273:\n return op_COABgblf1C(op_DZ8iAZOCBD(op_W4YGzv6Whe(a,a),op_JLbD19bQDL(a)),op_NTOWxs364D(op_f6k1SAg4EE(a,a),op_2DDjHMKMc0(a,a)))\n else:\n return op_DZ8iAZOCBD(op_f6k1SAg4EE(op_rysDP5nf3Z(a,a),op_sdazOOVcIp(a,a)),op_2DDjHMKMc0(op_eewbuw0ToL(a,a),op_W4YGzv6Whe(a,a)))\n","op_count_func":"def op_count_W7eaUhjymW(a):\n if op_BjRHVeLaeN(a) > 7 or a == 273:\n count = op_count_W4YGzv6Whe(a,a)+op_count_JLbD19bQDL(a)+op_count_DZ8iAZOCBD(op_W4YGzv6Whe(a,a),op_JLbD19bQDL(a))+op_count_f6k1SAg4EE(a,a)+op_count_2DDjHMKMc0(a,a)+op_count_NTOWxs364D(op_f6k1SAg4EE(a,a),op_2DDjHMKMc0(a,a))+op_count_COABgblf1C(op_DZ8iAZOCBD(op_W4YGzv6Whe(a,a),op_JLbD19bQDL(a)),op_NTOWxs364D(op_f6k1SAg4EE(a,a),op_2DDjHMKMc0(a,a)))+op_count_BjRHVeLaeN(a)\n else:\n count = op_count_rysDP5nf3Z(a,a)+op_count_sdazOOVcIp(a,a)+op_count_f6k1SAg4EE(op_rysDP5nf3Z(a,a),op_sdazOOVcIp(a,a))+op_count_eewbuw0ToL(a,a)+op_count_W4YGzv6Whe(a,a)+op_count_2DDjHMKMc0(op_eewbuw0ToL(a,a),op_W4YGzv6Whe(a,a))+op_count_DZ8iAZOCBD(op_f6k1SAg4EE(op_rysDP5nf3Z(a,a),op_sdazOOVcIp(a,a)),op_2DDjHMKMc0(op_eewbuw0ToL(a,a),op_W4YGzv6Whe(a,a)))\n return count\n","dependencies":["W4YGzv6Whe","NTOWxs364D","rysDP5nf3Z","BjRHVeLaeN","DZ8iAZOCBD","JLbD19bQDL","sdazOOVcIp","2DDjHMKMc0","f6k1SAg4EE","eewbuw0ToL","COABgblf1C"]} +{"id":161,"func_id":"27wFxooxGf","symbol":"⊢≑≆","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊢≑≆a = { a , if (≤/a)==126 and a<49 ; ((559⨸⪁a)≧⫂∧(349⩷∴a)) , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_27wFxooxGf(a):\n if op_eLAdDNolq6(a) == 126 and a < 49:\n return a\n else:\n return op_Ph9nP6C5qx(op_g55IO6H4Gj(559,a),op_9FxExcQeMw(349,a))\n","op_count_func":"def op_count_27wFxooxGf(a):\n if op_eLAdDNolq6(a) == 126 and a < 49:\n count = 1\n else:\n count = op_count_g55IO6H4Gj(559,a)+op_count_9FxExcQeMw(349,a)+op_count_Ph9nP6C5qx(op_g55IO6H4Gj(559,a),op_9FxExcQeMw(349,a))\n return count\n","dependencies":["eLAdDNolq6","9FxExcQeMw","Ph9nP6C5qx","g55IO6H4Gj"]} +{"id":162,"func_id":"Z5m6OM72h2","symbol":"∘","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∘b = { (380-a) , if b<=483 ; (a⪐) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_Z5m6OM72h2(a, b):\n if b <= 483:\n return op_rysDP5nf3Z(380,a)\n else:\n return op_eH2TOUuTDT(a)\n","op_count_func":"def op_count_Z5m6OM72h2(a, b):\n if b <= 483:\n count = op_count_rysDP5nf3Z(380,a)\n else:\n count = op_count_eH2TOUuTDT(a)\n return count\n","dependencies":["eH2TOUuTDT","rysDP5nf3Z"]} +{"id":163,"func_id":"DE7zCoGJt9","symbol":"↞≼","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"↞≼a = { (↽≂(197⨰(a⨸⪁a))) , if (a⨸⪁373)!=224 ; (((591⋷a)≧⫂∧(a+a))⨸⪁((a⫩⊇)≦≮≮)) , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_DE7zCoGJt9(a):\n if op_g55IO6H4Gj(a,373) != 224:\n return op_u6S6b8DprG(op_eewbuw0ToL(197,op_g55IO6H4Gj(a,a)))\n else:\n return op_g55IO6H4Gj(op_Ph9nP6C5qx(op_23Mk6UjR3U(591,a),op_W4YGzv6Whe(a,a)),op_D4vGDi5EA2(op_BjRHVeLaeN(a)))\n","op_count_func":"def op_count_DE7zCoGJt9(a):\n if op_g55IO6H4Gj(a,373) != 224:\n count = op_count_g55IO6H4Gj(a,a)+op_count_eewbuw0ToL(197,op_g55IO6H4Gj(a,a))+op_count_u6S6b8DprG(op_eewbuw0ToL(197,op_g55IO6H4Gj(a,a)))+op_count_g55IO6H4Gj(a,373)\n else:\n count = op_count_23Mk6UjR3U(591,a)+op_count_W4YGzv6Whe(a,a)+op_count_Ph9nP6C5qx(op_23Mk6UjR3U(591,a),op_W4YGzv6Whe(a,a))+op_count_BjRHVeLaeN(a)+op_count_D4vGDi5EA2(op_BjRHVeLaeN(a))+op_count_g55IO6H4Gj(op_Ph9nP6C5qx(op_23Mk6UjR3U(591,a),op_W4YGzv6Whe(a,a)),op_D4vGDi5EA2(op_BjRHVeLaeN(a)))\n return count\n","dependencies":["W4YGzv6Whe","D4vGDi5EA2","23Mk6UjR3U","BjRHVeLaeN","Ph9nP6C5qx","g55IO6H4Gj","eewbuw0ToL","u6S6b8DprG"]} +{"id":164,"func_id":"WmT3o8z6ya","symbol":"⋘⨑⨽","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⋘⨑⨽ = { ((a⫡⨏a)+(a≋⫹)) , if (⊄⩳↩a)!=44 ; (⋗⩬⋾(394+a)) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_WmT3o8z6ya(a):\n if op_8w2t5hMYqp(a) != 44:\n return op_W4YGzv6Whe(op_QMFrweE19q(a,a),op_N41Kp7NANJ(a))\n else:\n return op_DpFCA1CohY(op_W4YGzv6Whe(394,a))\n","op_count_func":"def op_count_WmT3o8z6ya(a):\n if op_8w2t5hMYqp(a) != 44:\n count = op_count_QMFrweE19q(a,a)+op_count_N41Kp7NANJ(a)+op_count_W4YGzv6Whe(op_QMFrweE19q(a,a),op_N41Kp7NANJ(a))+op_count_8w2t5hMYqp(a)\n else:\n count = op_count_W4YGzv6Whe(394,a)+op_count_DpFCA1CohY(op_W4YGzv6Whe(394,a))\n return count\n","dependencies":["W4YGzv6Whe","DpFCA1CohY","N41Kp7NANJ","8w2t5hMYqp","QMFrweE19q"]} +{"id":165,"func_id":"AdZkA7nFnk","symbol":"⋅⇍","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⋅⇍b = { (≤/506) , if (b⨸⪁793)>81 ; (a⩚⊴⇥452) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_AdZkA7nFnk(a, b):\n if op_g55IO6H4Gj(b,793) > 81:\n return op_eLAdDNolq6(506)\n else:\n return op_NTOWxs364D(a,452)\n","op_count_func":"def op_count_AdZkA7nFnk(a, b):\n if op_g55IO6H4Gj(b,793) > 81:\n count = op_count_eLAdDNolq6(506)+op_count_g55IO6H4Gj(b,793)\n else:\n count = op_count_NTOWxs364D(a,452)\n return count\n","dependencies":["g55IO6H4Gj","NTOWxs364D","eLAdDNolq6"]} +{"id":166,"func_id":"HJ9erzHUuu","symbol":"⪔⊥","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪔⊥b = { (⩦⩻⨪(≤/(315⇼⇔∾a))) , if b<175 ; ((⊄⩳↩(b-b))⇼⇔∾((b⪨≂a)⊭↱(a↺b))) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_HJ9erzHUuu(a, b):\n if b < 175:\n return op_2td37pGCOC(op_eLAdDNolq6(op_tifHPKVTfV(315,a)))\n else:\n return op_tifHPKVTfV(op_8w2t5hMYqp(op_rysDP5nf3Z(b,b)),op_COABgblf1C(op_sdazOOVcIp(b,a),op_7j4O788W3g(a,b)))\n","op_count_func":"def op_count_HJ9erzHUuu(a, b):\n if b < 175:\n count = op_count_tifHPKVTfV(315,a)+op_count_eLAdDNolq6(op_tifHPKVTfV(315,a))+op_count_2td37pGCOC(op_eLAdDNolq6(op_tifHPKVTfV(315,a)))\n else:\n count = op_count_rysDP5nf3Z(b,b)+op_count_8w2t5hMYqp(op_rysDP5nf3Z(b,b))+op_count_sdazOOVcIp(b,a)+op_count_7j4O788W3g(a,b)+op_count_COABgblf1C(op_sdazOOVcIp(b,a),op_7j4O788W3g(a,b))+op_count_tifHPKVTfV(op_8w2t5hMYqp(op_rysDP5nf3Z(b,b)),op_COABgblf1C(op_sdazOOVcIp(b,a),op_7j4O788W3g(a,b)))\n return count\n","dependencies":["eLAdDNolq6","rysDP5nf3Z","7j4O788W3g","tifHPKVTfV","8w2t5hMYqp","sdazOOVcIp","2td37pGCOC","COABgblf1C"]} +{"id":167,"func_id":"vRio1gEz1j","symbol":"⇩","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇩ = { (a+93) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_vRio1gEz1j(a):\n return op_W4YGzv6Whe(a,93)\n","op_count_func":"def op_count_vRio1gEz1j(a):\n count = op_count_W4YGzv6Whe(a,93)\n return count\n","dependencies":["W4YGzv6Whe"]} +{"id":168,"func_id":"HrjLwUk87U","symbol":"⪚","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪚b = { (((317⩚⊴⇥a)⋝⋈⪟(518-95))⊉≛↸((97⪐)⩷∴(b⇼⇔∾a))) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_HrjLwUk87U(a, b):\n return op_DZ8iAZOCBD(op_2DDjHMKMc0(op_NTOWxs364D(317,a),op_rysDP5nf3Z(518,95)),op_9FxExcQeMw(op_eH2TOUuTDT(97),op_tifHPKVTfV(b,a)))\n","op_count_func":"def op_count_HrjLwUk87U(a, b):\n count = op_count_NTOWxs364D(317,a)+op_count_rysDP5nf3Z(518,95)+op_count_2DDjHMKMc0(op_NTOWxs364D(317,a),op_rysDP5nf3Z(518,95))+op_count_eH2TOUuTDT(97)+op_count_tifHPKVTfV(b,a)+op_count_9FxExcQeMw(op_eH2TOUuTDT(97),op_tifHPKVTfV(b,a))+op_count_DZ8iAZOCBD(op_2DDjHMKMc0(op_NTOWxs364D(317,a),op_rysDP5nf3Z(518,95)),op_9FxExcQeMw(op_eH2TOUuTDT(97),op_tifHPKVTfV(b,a)))\n return count\n","dependencies":["9FxExcQeMw","rysDP5nf3Z","NTOWxs364D","DZ8iAZOCBD","tifHPKVTfV","eH2TOUuTDT","2DDjHMKMc0"]} +{"id":169,"func_id":"Ikt5ks8PT7","symbol":"⩧⪆","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩧⪆b = { (a⨰b) , if a==228 ; (-b) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_Ikt5ks8PT7(a, b):\n if a == 228:\n return op_eewbuw0ToL(a,b)\n else:\n return op_t8gj7n24qd(b)\n","op_count_func":"def op_count_Ikt5ks8PT7(a, b):\n if a == 228:\n count = op_count_eewbuw0ToL(a,b)\n else:\n count = op_count_t8gj7n24qd(b)\n return count\n","dependencies":["eewbuw0ToL","t8gj7n24qd"]} +{"id":170,"func_id":"SdCjLnB6rR","symbol":"⫚⫇","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫚⫇ = { ((⨞⊢87)⨸⪁((⩦⩻⨪a)≧⫂∧a)) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_SdCjLnB6rR(a):\n return op_g55IO6H4Gj(op_xUOZtlo3hN(87),op_Ph9nP6C5qx(op_2td37pGCOC(a),a))\n","op_count_func":"def op_count_SdCjLnB6rR(a):\n count = op_count_xUOZtlo3hN(87)+op_count_2td37pGCOC(a)+op_count_Ph9nP6C5qx(op_2td37pGCOC(a),a)+op_count_g55IO6H4Gj(op_xUOZtlo3hN(87),op_Ph9nP6C5qx(op_2td37pGCOC(a),a))\n return count\n","dependencies":["Ph9nP6C5qx","xUOZtlo3hN","g55IO6H4Gj","2td37pGCOC"]} +{"id":171,"func_id":"umQnsF7QlU","symbol":"⪕","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪕b = { (⩦⩻⨪(∥⊫(b⋥≓≎a))) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_umQnsF7QlU(a, b):\n return op_2td37pGCOC(op_P8v4zCKN1o(op_Qy55tPpLXF(b,a)))\n","op_count_func":"def op_count_umQnsF7QlU(a, b):\n count = op_count_Qy55tPpLXF(b,a)+op_count_P8v4zCKN1o(op_Qy55tPpLXF(b,a))+op_count_2td37pGCOC(op_P8v4zCKN1o(op_Qy55tPpLXF(b,a)))\n return count\n","dependencies":["P8v4zCKN1o","2td37pGCOC","Qy55tPpLXF"]} +{"id":172,"func_id":"IqGBaFP0uj","symbol":"⊓⋫","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊓⋫ = { (((a⪨≂a)⨳⩥⨓(⩦⩻⨪230))⪒(a⋝⋈⪟(542⫡⨏384))) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_IqGBaFP0uj(a):\n return op_f6k1SAg4EE(op_nCS4ZIUYfx(op_sdazOOVcIp(a,a),op_2td37pGCOC(230)),op_2DDjHMKMc0(a,op_QMFrweE19q(542,384)))\n","op_count_func":"def op_count_IqGBaFP0uj(a):\n count = op_count_sdazOOVcIp(a,a)+op_count_2td37pGCOC(230)+op_count_nCS4ZIUYfx(op_sdazOOVcIp(a,a),op_2td37pGCOC(230))+op_count_QMFrweE19q(542,384)+op_count_2DDjHMKMc0(a,op_QMFrweE19q(542,384))+op_count_f6k1SAg4EE(op_nCS4ZIUYfx(op_sdazOOVcIp(a,a),op_2td37pGCOC(230)),op_2DDjHMKMc0(a,op_QMFrweE19q(542,384)))\n return count\n","dependencies":["2td37pGCOC","sdazOOVcIp","2DDjHMKMc0","f6k1SAg4EE","nCS4ZIUYfx","QMFrweE19q"]} +{"id":173,"func_id":"apS25hmuAe","symbol":"≅≯⇸","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≅≯⇸a = { ((471⫡⨏a)⫌⩹⨱) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_apS25hmuAe(a):\n return op_EBcxylXtPf(op_QMFrweE19q(471,a))\n","op_count_func":"def op_count_apS25hmuAe(a):\n count = op_count_QMFrweE19q(471,a)+op_count_EBcxylXtPf(op_QMFrweE19q(471,a))\n return count\n","dependencies":["EBcxylXtPf","QMFrweE19q"]} +{"id":174,"func_id":"SpZWOsLKZJ","symbol":"⊚⫡⫭","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊚⫡⫭ = { (((∥⊫a)≧⫂∧(≉a))⪨≂((177-a)≋⫹)) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_SpZWOsLKZJ(a):\n return op_sdazOOVcIp(op_Ph9nP6C5qx(op_P8v4zCKN1o(a),op_e1ybzncUwg(a)),op_N41Kp7NANJ(op_rysDP5nf3Z(177,a)))\n","op_count_func":"def op_count_SpZWOsLKZJ(a):\n count = op_count_P8v4zCKN1o(a)+op_count_e1ybzncUwg(a)+op_count_Ph9nP6C5qx(op_P8v4zCKN1o(a),op_e1ybzncUwg(a))+op_count_rysDP5nf3Z(177,a)+op_count_N41Kp7NANJ(op_rysDP5nf3Z(177,a))+op_count_sdazOOVcIp(op_Ph9nP6C5qx(op_P8v4zCKN1o(a),op_e1ybzncUwg(a)),op_N41Kp7NANJ(op_rysDP5nf3Z(177,a)))\n return count\n","dependencies":["P8v4zCKN1o","rysDP5nf3Z","e1ybzncUwg","N41Kp7NANJ","sdazOOVcIp","Ph9nP6C5qx"]} +{"id":175,"func_id":"FyVja0WsTP","symbol":"⊱⇼⊻","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊱⇼⊻b = { ((a⫌⩹⨱)⪐) , if b<551 ; ((135⋥≓≎a)⋷(166+a)) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_FyVja0WsTP(a, b):\n if b < 551:\n return op_eH2TOUuTDT(op_EBcxylXtPf(a))\n else:\n return op_23Mk6UjR3U(op_Qy55tPpLXF(135,a),op_W4YGzv6Whe(166,a))\n","op_count_func":"def op_count_FyVja0WsTP(a, b):\n if b < 551:\n count = op_count_EBcxylXtPf(a)+op_count_eH2TOUuTDT(op_EBcxylXtPf(a))\n else:\n count = op_count_Qy55tPpLXF(135,a)+op_count_W4YGzv6Whe(166,a)+op_count_23Mk6UjR3U(op_Qy55tPpLXF(135,a),op_W4YGzv6Whe(166,a))\n return count\n","dependencies":["W4YGzv6Whe","Qy55tPpLXF","23Mk6UjR3U","eH2TOUuTDT","EBcxylXtPf"]} +{"id":176,"func_id":"nFAOW8KTqp","symbol":"∷","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∷ = { ((-(a⋝⋈⪟a))≦≮≮) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_nFAOW8KTqp(a):\n return op_D4vGDi5EA2(op_t8gj7n24qd(op_2DDjHMKMc0(a,a)))\n","op_count_func":"def op_count_nFAOW8KTqp(a):\n count = op_count_2DDjHMKMc0(a,a)+op_count_t8gj7n24qd(op_2DDjHMKMc0(a,a))+op_count_D4vGDi5EA2(op_t8gj7n24qd(op_2DDjHMKMc0(a,a)))\n return count\n","dependencies":["D4vGDi5EA2","t8gj7n24qd","2DDjHMKMc0"]} +{"id":177,"func_id":"6iOiAJX1F8","symbol":"⩪∧⨌","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⩪∧⨌a = { (∥⊫a) , if ((a⋷517)==285 and (a⪒780)<=108) ; ((a↺a)⨸⪁(a⨸⪁a)) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_6iOiAJX1F8(a):\n if (op_23Mk6UjR3U(a,517) == 285 and op_f6k1SAg4EE(a,780) <= 108):\n return op_P8v4zCKN1o(a)\n else:\n return op_g55IO6H4Gj(op_7j4O788W3g(a,a),op_g55IO6H4Gj(a,a))\n","op_count_func":"def op_count_6iOiAJX1F8(a):\n if (op_23Mk6UjR3U(a,517) == 285 and op_f6k1SAg4EE(a,780) <= 108):\n count = op_count_P8v4zCKN1o(a)+op_count_23Mk6UjR3U(a,517)+op_count_f6k1SAg4EE(a,780)\n else:\n count = op_count_7j4O788W3g(a,a)+op_count_g55IO6H4Gj(a,a)+op_count_g55IO6H4Gj(op_7j4O788W3g(a,a),op_g55IO6H4Gj(a,a))\n return count\n","dependencies":["P8v4zCKN1o","23Mk6UjR3U","7j4O788W3g","f6k1SAg4EE","g55IO6H4Gj"]} +{"id":178,"func_id":"9bazX3JMtO","symbol":"↹⊜","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a↹⊜b = { (((a⊠≄⫣)⩷∴(b-a))⩷∴((a⋷b)⇼⇔∾(b⪐))) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_9bazX3JMtO(a, b):\n return op_9FxExcQeMw(op_9FxExcQeMw(op_DIvbN7qnHd(a),op_rysDP5nf3Z(b,a)),op_tifHPKVTfV(op_23Mk6UjR3U(a,b),op_eH2TOUuTDT(b)))\n","op_count_func":"def op_count_9bazX3JMtO(a, b):\n count = op_count_DIvbN7qnHd(a)+op_count_rysDP5nf3Z(b,a)+op_count_9FxExcQeMw(op_DIvbN7qnHd(a),op_rysDP5nf3Z(b,a))+op_count_23Mk6UjR3U(a,b)+op_count_eH2TOUuTDT(b)+op_count_tifHPKVTfV(op_23Mk6UjR3U(a,b),op_eH2TOUuTDT(b))+op_count_9FxExcQeMw(op_9FxExcQeMw(op_DIvbN7qnHd(a),op_rysDP5nf3Z(b,a)),op_tifHPKVTfV(op_23Mk6UjR3U(a,b),op_eH2TOUuTDT(b)))\n return count\n","dependencies":["9FxExcQeMw","rysDP5nf3Z","23Mk6UjR3U","tifHPKVTfV","eH2TOUuTDT","DIvbN7qnHd"]} +{"id":179,"func_id":"B3sABdIn96","symbol":"⪹","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⪹ = { ((402⫡⨏a)⩷∴(≉a)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_B3sABdIn96(a):\n return op_9FxExcQeMw(op_QMFrweE19q(402,a),op_e1ybzncUwg(a))\n","op_count_func":"def op_count_B3sABdIn96(a):\n count = op_count_QMFrweE19q(402,a)+op_count_e1ybzncUwg(a)+op_count_9FxExcQeMw(op_QMFrweE19q(402,a),op_e1ybzncUwg(a))\n return count\n","dependencies":["9FxExcQeMw","e1ybzncUwg","QMFrweE19q"]} +{"id":180,"func_id":"C6VvDP6HwP","symbol":"⪑⩈","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⪑⩈ = { (((a⫡⨏a)⩚⊴⇥(477⪨≂185))⇼⇔∾(⩦⩻⨪(a∲⫓a))) , if (a⨰851)>=379 ; (((a⩷∴a)⩤)⨰a) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_C6VvDP6HwP(a):\n if op_eewbuw0ToL(a,851) >= 379:\n return op_tifHPKVTfV(op_NTOWxs364D(op_QMFrweE19q(a,a),op_sdazOOVcIp(477,185)),op_2td37pGCOC(op_i8ToyICDmI(a,a)))\n else:\n return op_eewbuw0ToL(op_Z2TMIBDE3Q(op_9FxExcQeMw(a,a)),a)\n","op_count_func":"def op_count_C6VvDP6HwP(a):\n if op_eewbuw0ToL(a,851) >= 379:\n count = op_count_QMFrweE19q(a,a)+op_count_sdazOOVcIp(477,185)+op_count_NTOWxs364D(op_QMFrweE19q(a,a),op_sdazOOVcIp(477,185))+op_count_i8ToyICDmI(a,a)+op_count_2td37pGCOC(op_i8ToyICDmI(a,a))+op_count_tifHPKVTfV(op_NTOWxs364D(op_QMFrweE19q(a,a),op_sdazOOVcIp(477,185)),op_2td37pGCOC(op_i8ToyICDmI(a,a)))+op_count_eewbuw0ToL(a,851)\n else:\n count = op_count_9FxExcQeMw(a,a)+op_count_Z2TMIBDE3Q(op_9FxExcQeMw(a,a))+op_count_eewbuw0ToL(op_Z2TMIBDE3Q(op_9FxExcQeMw(a,a)),a)\n return count\n","dependencies":["9FxExcQeMw","NTOWxs364D","tifHPKVTfV","sdazOOVcIp","Z2TMIBDE3Q","i8ToyICDmI","eewbuw0ToL","2td37pGCOC","QMFrweE19q"]} +{"id":181,"func_id":"ZcwmYACASQ","symbol":"⫍⨯↯","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫍⨯↯ = { ((a⋥≓≎a)⋷(a⋝⋈⪟337)) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_ZcwmYACASQ(a):\n return op_23Mk6UjR3U(op_Qy55tPpLXF(a,a),op_2DDjHMKMc0(a,337))\n","op_count_func":"def op_count_ZcwmYACASQ(a):\n count = op_count_Qy55tPpLXF(a,a)+op_count_2DDjHMKMc0(a,337)+op_count_23Mk6UjR3U(op_Qy55tPpLXF(a,a),op_2DDjHMKMc0(a,337))\n return count\n","dependencies":["23Mk6UjR3U","2DDjHMKMc0","Qy55tPpLXF"]} +{"id":182,"func_id":"2ufhKmSs5H","symbol":"⪎⩰","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⪎⩰ = { (17≋⫹) , if a>=326 and a!=597 ; (((a⪒a)⫌⩹⨱)⊭↱(⋗⩬⋾(756⪨≂a))) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_2ufhKmSs5H(a):\n if a >= 326 and a != 597:\n return op_N41Kp7NANJ(17)\n else:\n return op_COABgblf1C(op_EBcxylXtPf(op_f6k1SAg4EE(a,a)),op_DpFCA1CohY(op_sdazOOVcIp(756,a)))\n","op_count_func":"def op_count_2ufhKmSs5H(a):\n if a >= 326 and a != 597:\n count = op_count_N41Kp7NANJ(17)\n else:\n count = op_count_f6k1SAg4EE(a,a)+op_count_EBcxylXtPf(op_f6k1SAg4EE(a,a))+op_count_sdazOOVcIp(756,a)+op_count_DpFCA1CohY(op_sdazOOVcIp(756,a))+op_count_COABgblf1C(op_EBcxylXtPf(op_f6k1SAg4EE(a,a)),op_DpFCA1CohY(op_sdazOOVcIp(756,a)))\n return count\n","dependencies":["DpFCA1CohY","N41Kp7NANJ","sdazOOVcIp","EBcxylXtPf","f6k1SAg4EE","COABgblf1C"]} +{"id":183,"func_id":"nhYeJWJD5X","symbol":"∇⊂⋱","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∇⊂⋱b = { (b⪒b) , if a<143 ; ((⨑⩽⪐a)⋷(∥⊫(a⨳⩥⨓a))) , else }","definition_type":"branch_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_nhYeJWJD5X(a, b):\n if a < 143:\n return op_f6k1SAg4EE(b,b)\n else:\n return op_23Mk6UjR3U(op_AF7qkfDlqP(a),op_P8v4zCKN1o(op_nCS4ZIUYfx(a,a)))\n","op_count_func":"def op_count_nhYeJWJD5X(a, b):\n if a < 143:\n count = op_count_f6k1SAg4EE(b,b)\n else:\n count = op_count_AF7qkfDlqP(a)+op_count_nCS4ZIUYfx(a,a)+op_count_P8v4zCKN1o(op_nCS4ZIUYfx(a,a))+op_count_23Mk6UjR3U(op_AF7qkfDlqP(a),op_P8v4zCKN1o(op_nCS4ZIUYfx(a,a)))\n return count\n","dependencies":["P8v4zCKN1o","23Mk6UjR3U","f6k1SAg4EE","AF7qkfDlqP","nCS4ZIUYfx"]} +{"id":184,"func_id":"g7Hmc5v1ko","symbol":"⩌⋺","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩌⋺b = { ((⨞⊢(b⨵⪆b))∲⫓((a⪨≂b)⪨≂(b⩷∴919))) , if (b⫡⨏102)>364 and (-b)==524 ; (b⇼⇔∾((a+a)⩚⊴⇥(-a))) , else }","definition_type":"branch_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_g7Hmc5v1ko(a, b):\n if op_QMFrweE19q(b,102) > 364 and op_t8gj7n24qd(b) == 524:\n return op_i8ToyICDmI(op_xUOZtlo3hN(op_2DQ55sFlQl(b,b)),op_sdazOOVcIp(op_sdazOOVcIp(a,b),op_9FxExcQeMw(b,919)))\n else:\n return op_tifHPKVTfV(b,op_NTOWxs364D(op_W4YGzv6Whe(a,a),op_t8gj7n24qd(a)))\n","op_count_func":"def op_count_g7Hmc5v1ko(a, b):\n if op_QMFrweE19q(b,102) > 364 and op_t8gj7n24qd(b) == 524:\n count = op_count_2DQ55sFlQl(b,b)+op_count_xUOZtlo3hN(op_2DQ55sFlQl(b,b))+op_count_sdazOOVcIp(a,b)+op_count_9FxExcQeMw(b,919)+op_count_sdazOOVcIp(op_sdazOOVcIp(a,b),op_9FxExcQeMw(b,919))+op_count_i8ToyICDmI(op_xUOZtlo3hN(op_2DQ55sFlQl(b,b)),op_sdazOOVcIp(op_sdazOOVcIp(a,b),op_9FxExcQeMw(b,919)))+op_count_QMFrweE19q(b,102)+op_count_t8gj7n24qd(b)\n else:\n count = op_count_W4YGzv6Whe(a,a)+op_count_t8gj7n24qd(a)+op_count_NTOWxs364D(op_W4YGzv6Whe(a,a),op_t8gj7n24qd(a))+op_count_tifHPKVTfV(b,op_NTOWxs364D(op_W4YGzv6Whe(a,a),op_t8gj7n24qd(a)))\n return count\n","dependencies":["9FxExcQeMw","W4YGzv6Whe","NTOWxs364D","tifHPKVTfV","sdazOOVcIp","2DQ55sFlQl","t8gj7n24qd","xUOZtlo3hN","i8ToyICDmI","QMFrweE19q"]} +{"id":185,"func_id":"kuIXHzHcAH","symbol":"⪨⊡","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪨⊡b = { (⨑⩽⪐(b⨁⊸⫻)) , if (⨑⩽⪐b)>42 ; ((a⨰b)⪠⩆⊳) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_kuIXHzHcAH(a, b):\n if op_AF7qkfDlqP(b) > 42:\n return op_AF7qkfDlqP(op_glklzrTFfD(b))\n else:\n return op_JLbD19bQDL(op_eewbuw0ToL(a,b))\n","op_count_func":"def op_count_kuIXHzHcAH(a, b):\n if op_AF7qkfDlqP(b) > 42:\n count = op_count_glklzrTFfD(b)+op_count_AF7qkfDlqP(op_glklzrTFfD(b))+op_count_AF7qkfDlqP(b)\n else:\n count = op_count_eewbuw0ToL(a,b)+op_count_JLbD19bQDL(op_eewbuw0ToL(a,b))\n return count\n","dependencies":["JLbD19bQDL","glklzrTFfD","eewbuw0ToL","AF7qkfDlqP"]} +{"id":186,"func_id":"KPf6cnQVty","symbol":"∺≝⩲","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∺≝⩲b = { (((b⪨≂b)⨁⊸⫻)⨵⪆(a⫩⊇)) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_KPf6cnQVty(a, b):\n return op_2DQ55sFlQl(op_glklzrTFfD(op_sdazOOVcIp(b,b)),op_BjRHVeLaeN(a))\n","op_count_func":"def op_count_KPf6cnQVty(a, b):\n count = op_count_sdazOOVcIp(b,b)+op_count_glklzrTFfD(op_sdazOOVcIp(b,b))+op_count_BjRHVeLaeN(a)+op_count_2DQ55sFlQl(op_glklzrTFfD(op_sdazOOVcIp(b,b)),op_BjRHVeLaeN(a))\n return count\n","dependencies":["BjRHVeLaeN","glklzrTFfD","sdazOOVcIp","2DQ55sFlQl"]} +{"id":187,"func_id":"LxFB4K6j0n","symbol":"⊹≧⊝","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊹≧⊝ = { (((∥⊫a)⊭↱(a⩚⊴⇥a))⊉≛↸(⪲⇎(⪲⇎a))) , if a!=566 ; (-((a∲⫓a)⨸⪁(a⨰a))) , else }","definition_type":"branch_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_LxFB4K6j0n(a):\n if a != 566:\n return op_DZ8iAZOCBD(op_COABgblf1C(op_P8v4zCKN1o(a),op_NTOWxs364D(a,a)),op_XPYlsWDdGa(op_XPYlsWDdGa(a)))\n else:\n return op_t8gj7n24qd(op_g55IO6H4Gj(op_i8ToyICDmI(a,a),op_eewbuw0ToL(a,a)))\n","op_count_func":"def op_count_LxFB4K6j0n(a):\n if a != 566:\n count = op_count_P8v4zCKN1o(a)+op_count_NTOWxs364D(a,a)+op_count_COABgblf1C(op_P8v4zCKN1o(a),op_NTOWxs364D(a,a))+op_count_XPYlsWDdGa(a)+op_count_XPYlsWDdGa(op_XPYlsWDdGa(a))+op_count_DZ8iAZOCBD(op_COABgblf1C(op_P8v4zCKN1o(a),op_NTOWxs364D(a,a)),op_XPYlsWDdGa(op_XPYlsWDdGa(a)))\n else:\n count = op_count_i8ToyICDmI(a,a)+op_count_eewbuw0ToL(a,a)+op_count_g55IO6H4Gj(op_i8ToyICDmI(a,a),op_eewbuw0ToL(a,a))+op_count_t8gj7n24qd(op_g55IO6H4Gj(op_i8ToyICDmI(a,a),op_eewbuw0ToL(a,a)))\n return count\n","dependencies":["NTOWxs364D","P8v4zCKN1o","XPYlsWDdGa","DZ8iAZOCBD","t8gj7n24qd","g55IO6H4Gj","eewbuw0ToL","i8ToyICDmI","COABgblf1C"]} +{"id":188,"func_id":"YbVcJGFEVW","symbol":"≃","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a≃b = { (((13⋥≓≎b)⋷(a⇼⇔∾b))⨁⊸⫻) , if ((b⨁⊸⫻)>=162 or (b⪠⩆⊳)<=569) ; ((-(17⋷a))↺((a⩷∴a)⊭↱(b∲⫓a))) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_YbVcJGFEVW(a, b):\n if (op_glklzrTFfD(b) >= 162 or op_JLbD19bQDL(b) <= 569):\n return op_glklzrTFfD(op_23Mk6UjR3U(op_Qy55tPpLXF(13,b),op_tifHPKVTfV(a,b)))\n else:\n return op_7j4O788W3g(op_t8gj7n24qd(op_23Mk6UjR3U(17,a)),op_COABgblf1C(op_9FxExcQeMw(a,a),op_i8ToyICDmI(b,a)))\n","op_count_func":"def op_count_YbVcJGFEVW(a, b):\n if (op_glklzrTFfD(b) >= 162 or op_JLbD19bQDL(b) <= 569):\n count = op_count_Qy55tPpLXF(13,b)+op_count_tifHPKVTfV(a,b)+op_count_23Mk6UjR3U(op_Qy55tPpLXF(13,b),op_tifHPKVTfV(a,b))+op_count_glklzrTFfD(op_23Mk6UjR3U(op_Qy55tPpLXF(13,b),op_tifHPKVTfV(a,b)))+op_count_glklzrTFfD(b)+op_count_JLbD19bQDL(b)\n else:\n count = op_count_23Mk6UjR3U(17,a)+op_count_t8gj7n24qd(op_23Mk6UjR3U(17,a))+op_count_9FxExcQeMw(a,a)+op_count_i8ToyICDmI(b,a)+op_count_COABgblf1C(op_9FxExcQeMw(a,a),op_i8ToyICDmI(b,a))+op_count_7j4O788W3g(op_t8gj7n24qd(op_23Mk6UjR3U(17,a)),op_COABgblf1C(op_9FxExcQeMw(a,a),op_i8ToyICDmI(b,a)))\n return count\n","dependencies":["9FxExcQeMw","Qy55tPpLXF","23Mk6UjR3U","JLbD19bQDL","7j4O788W3g","glklzrTFfD","tifHPKVTfV","t8gj7n24qd","i8ToyICDmI","COABgblf1C"]} +{"id":189,"func_id":"FonBHBYJbU","symbol":"⇽⩪","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇽⩪ = { (((≉88)⨰(⨑⩽⪐a))⨸⪁((a+95)⇼⇔∾(a⋷a))) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_FonBHBYJbU(a):\n return op_g55IO6H4Gj(op_eewbuw0ToL(op_e1ybzncUwg(88),op_AF7qkfDlqP(a)),op_tifHPKVTfV(op_W4YGzv6Whe(a,95),op_23Mk6UjR3U(a,a)))\n","op_count_func":"def op_count_FonBHBYJbU(a):\n count = op_count_e1ybzncUwg(88)+op_count_AF7qkfDlqP(a)+op_count_eewbuw0ToL(op_e1ybzncUwg(88),op_AF7qkfDlqP(a))+op_count_W4YGzv6Whe(a,95)+op_count_23Mk6UjR3U(a,a)+op_count_tifHPKVTfV(op_W4YGzv6Whe(a,95),op_23Mk6UjR3U(a,a))+op_count_g55IO6H4Gj(op_eewbuw0ToL(op_e1ybzncUwg(88),op_AF7qkfDlqP(a)),op_tifHPKVTfV(op_W4YGzv6Whe(a,95),op_23Mk6UjR3U(a,a)))\n return count\n","dependencies":["W4YGzv6Whe","e1ybzncUwg","23Mk6UjR3U","tifHPKVTfV","g55IO6H4Gj","eewbuw0ToL","AF7qkfDlqP"]} +{"id":190,"func_id":"8n5YIzOsVS","symbol":"⫠↝⫳","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫠↝⫳ = { (((a⨸⪁a)⩷∴(⩦⩻⨪a))⫡⨏a) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_8n5YIzOsVS(a):\n return op_QMFrweE19q(op_9FxExcQeMw(op_g55IO6H4Gj(a,a),op_2td37pGCOC(a)),a)\n","op_count_func":"def op_count_8n5YIzOsVS(a):\n count = op_count_g55IO6H4Gj(a,a)+op_count_2td37pGCOC(a)+op_count_9FxExcQeMw(op_g55IO6H4Gj(a,a),op_2td37pGCOC(a))+op_count_QMFrweE19q(op_9FxExcQeMw(op_g55IO6H4Gj(a,a),op_2td37pGCOC(a)),a)\n return count\n","dependencies":["9FxExcQeMw","g55IO6H4Gj","2td37pGCOC","QMFrweE19q"]} +{"id":191,"func_id":"9xnGDUPbC6","symbol":"⫲","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫲ = { ((272⩚⊴⇥36)⊉≛↸(⨑⩽⪐a)) , if (⊄⩳↩a)<13 ; ((a⩚⊴⇥a)⋝⋈⪟(533⋥≓≎a)) , else }","definition_type":"branch_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_9xnGDUPbC6(a):\n if op_8w2t5hMYqp(a) < 13:\n return op_DZ8iAZOCBD(op_NTOWxs364D(272,36),op_AF7qkfDlqP(a))\n else:\n return op_2DDjHMKMc0(op_NTOWxs364D(a,a),op_Qy55tPpLXF(533,a))\n","op_count_func":"def op_count_9xnGDUPbC6(a):\n if op_8w2t5hMYqp(a) < 13:\n count = op_count_NTOWxs364D(272,36)+op_count_AF7qkfDlqP(a)+op_count_DZ8iAZOCBD(op_NTOWxs364D(272,36),op_AF7qkfDlqP(a))+op_count_8w2t5hMYqp(a)\n else:\n count = op_count_NTOWxs364D(a,a)+op_count_Qy55tPpLXF(533,a)+op_count_2DDjHMKMc0(op_NTOWxs364D(a,a),op_Qy55tPpLXF(533,a))\n return count\n","dependencies":["NTOWxs364D","Qy55tPpLXF","DZ8iAZOCBD","8w2t5hMYqp","2DDjHMKMc0","AF7qkfDlqP"]} +{"id":192,"func_id":"2MzE1hQ0cz","symbol":"∩⋅","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∩⋅ = { (a⋥≓≎44) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_2MzE1hQ0cz(a):\n return op_Qy55tPpLXF(a,44)\n","op_count_func":"def op_count_2MzE1hQ0cz(a):\n count = op_count_Qy55tPpLXF(a,44)\n return count\n","dependencies":["Qy55tPpLXF"]} +{"id":193,"func_id":"eRqsBgTDFp","symbol":"⪒⊣⊆","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪒⊣⊆b = { (b⪨≂a) , if a<=17 ; (a+a) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_eRqsBgTDFp(a, b):\n if a <= 17:\n return op_sdazOOVcIp(b,a)\n else:\n return op_W4YGzv6Whe(a,a)\n","op_count_func":"def op_count_eRqsBgTDFp(a, b):\n if a <= 17:\n count = op_count_sdazOOVcIp(b,a)\n else:\n count = op_count_W4YGzv6Whe(a,a)\n return count\n","dependencies":["sdazOOVcIp","W4YGzv6Whe"]} +{"id":194,"func_id":"u7fv1HBiaC","symbol":"⩦⊞","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⩦⊞a = { (⨑⩽⪐a) , if a>=405 ; ((≤/395)⋥≓≎(a↺a)) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_u7fv1HBiaC(a):\n if a >= 405:\n return op_AF7qkfDlqP(a)\n else:\n return op_Qy55tPpLXF(op_eLAdDNolq6(395),op_7j4O788W3g(a,a))\n","op_count_func":"def op_count_u7fv1HBiaC(a):\n if a >= 405:\n count = op_count_AF7qkfDlqP(a)\n else:\n count = op_count_eLAdDNolq6(395)+op_count_7j4O788W3g(a,a)+op_count_Qy55tPpLXF(op_eLAdDNolq6(395),op_7j4O788W3g(a,a))\n return count\n","dependencies":["eLAdDNolq6","Qy55tPpLXF","7j4O788W3g","AF7qkfDlqP"]} +{"id":195,"func_id":"gx7XJ7hdpj","symbol":"⫸⇳","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⫸⇳b = { (((494⋳⪒b)⇼⇔∾(⋗⩬⋾a))↺((b⊦⊿)⨸⪁(b⨵⪆b))) , if a==116 ; (-((a⨰a)⊠≄⫣)) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_gx7XJ7hdpj(a, b):\n if a == 116:\n return op_7j4O788W3g(op_tifHPKVTfV(op_12rbrZMWeM(494,b),op_DpFCA1CohY(a)),op_g55IO6H4Gj(op_14qkJME0vr(b),op_2DQ55sFlQl(b,b)))\n else:\n return op_t8gj7n24qd(op_DIvbN7qnHd(op_eewbuw0ToL(a,a)))\n","op_count_func":"def op_count_gx7XJ7hdpj(a, b):\n if a == 116:\n count = op_count_12rbrZMWeM(494,b)+op_count_DpFCA1CohY(a)+op_count_tifHPKVTfV(op_12rbrZMWeM(494,b),op_DpFCA1CohY(a))+op_count_14qkJME0vr(b)+op_count_2DQ55sFlQl(b,b)+op_count_g55IO6H4Gj(op_14qkJME0vr(b),op_2DQ55sFlQl(b,b))+op_count_7j4O788W3g(op_tifHPKVTfV(op_12rbrZMWeM(494,b),op_DpFCA1CohY(a)),op_g55IO6H4Gj(op_14qkJME0vr(b),op_2DQ55sFlQl(b,b)))\n else:\n count = op_count_eewbuw0ToL(a,a)+op_count_DIvbN7qnHd(op_eewbuw0ToL(a,a))+op_count_t8gj7n24qd(op_DIvbN7qnHd(op_eewbuw0ToL(a,a)))\n return count\n","dependencies":["DpFCA1CohY","7j4O788W3g","tifHPKVTfV","2DQ55sFlQl","DIvbN7qnHd","12rbrZMWeM","t8gj7n24qd","14qkJME0vr","g55IO6H4Gj","eewbuw0ToL"]} +{"id":196,"func_id":"AYdpE9sXAk","symbol":"⨂⪏⇭","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⨂⪏⇭a = { (a⨰((85⩚⊴⇥a)⫌⩹⨱)) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_AYdpE9sXAk(a):\n return op_eewbuw0ToL(a,op_EBcxylXtPf(op_NTOWxs364D(85,a)))\n","op_count_func":"def op_count_AYdpE9sXAk(a):\n count = op_count_NTOWxs364D(85,a)+op_count_EBcxylXtPf(op_NTOWxs364D(85,a))+op_count_eewbuw0ToL(a,op_EBcxylXtPf(op_NTOWxs364D(85,a)))\n return count\n","dependencies":["eewbuw0ToL","NTOWxs364D","EBcxylXtPf"]} +{"id":197,"func_id":"6MpZysEj17","symbol":"⋆⋳","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⋆⋳ = { ((a⊠≄⫣)⩷∴(a↺a)) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_6MpZysEj17(a):\n return op_9FxExcQeMw(op_DIvbN7qnHd(a),op_7j4O788W3g(a,a))\n","op_count_func":"def op_count_6MpZysEj17(a):\n count = op_count_DIvbN7qnHd(a)+op_count_7j4O788W3g(a,a)+op_count_9FxExcQeMw(op_DIvbN7qnHd(a),op_7j4O788W3g(a,a))\n return count\n","dependencies":["9FxExcQeMw","7j4O788W3g","DIvbN7qnHd"]} +{"id":198,"func_id":"JclMnS0uGI","symbol":"⨔⇊","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨔⇊b = { (((a⊦⊿)⩷∴(b⊉≛↸b))⋥≓≎(b⪒(51∲⫓b))) , if (b≋⫹)>106 ; b , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_JclMnS0uGI(a, b):\n if op_N41Kp7NANJ(b) > 106:\n return op_Qy55tPpLXF(op_9FxExcQeMw(op_14qkJME0vr(a),op_DZ8iAZOCBD(b,b)),op_f6k1SAg4EE(b,op_i8ToyICDmI(51,b)))\n else:\n return b\n","op_count_func":"def op_count_JclMnS0uGI(a, b):\n if op_N41Kp7NANJ(b) > 106:\n count = op_count_14qkJME0vr(a)+op_count_DZ8iAZOCBD(b,b)+op_count_9FxExcQeMw(op_14qkJME0vr(a),op_DZ8iAZOCBD(b,b))+op_count_i8ToyICDmI(51,b)+op_count_f6k1SAg4EE(b,op_i8ToyICDmI(51,b))+op_count_Qy55tPpLXF(op_9FxExcQeMw(op_14qkJME0vr(a),op_DZ8iAZOCBD(b,b)),op_f6k1SAg4EE(b,op_i8ToyICDmI(51,b)))+op_count_N41Kp7NANJ(b)\n else:\n count = 1\n return count\n","dependencies":["9FxExcQeMw","Qy55tPpLXF","N41Kp7NANJ","DZ8iAZOCBD","f6k1SAg4EE","14qkJME0vr","i8ToyICDmI"]} +{"id":199,"func_id":"HiPekx5b7W","symbol":"⨜⨶","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨜⨶b = { (((107⋳⪒a)⨳⩥⨓(b⋳⪒a))⫩⊇) , if (b>512 or (b⊦⊿)==395) ; (((b⨳⩥⨓b)⇼⇔∾(a⨸⪁b))⫡⨏((b∲⫓b)≋⫹)) , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_HiPekx5b7W(a, b):\n if (b > 512 or op_14qkJME0vr(b) == 395):\n return op_BjRHVeLaeN(op_nCS4ZIUYfx(op_12rbrZMWeM(107,a),op_12rbrZMWeM(b,a)))\n else:\n return op_QMFrweE19q(op_tifHPKVTfV(op_nCS4ZIUYfx(b,b),op_g55IO6H4Gj(a,b)),op_N41Kp7NANJ(op_i8ToyICDmI(b,b)))\n","op_count_func":"def op_count_HiPekx5b7W(a, b):\n if (b > 512 or op_14qkJME0vr(b) == 395):\n count = op_count_12rbrZMWeM(107,a)+op_count_12rbrZMWeM(b,a)+op_count_nCS4ZIUYfx(op_12rbrZMWeM(107,a),op_12rbrZMWeM(b,a))+op_count_BjRHVeLaeN(op_nCS4ZIUYfx(op_12rbrZMWeM(107,a),op_12rbrZMWeM(b,a)))+op_count_14qkJME0vr(b)\n else:\n count = op_count_nCS4ZIUYfx(b,b)+op_count_g55IO6H4Gj(a,b)+op_count_tifHPKVTfV(op_nCS4ZIUYfx(b,b),op_g55IO6H4Gj(a,b))+op_count_i8ToyICDmI(b,b)+op_count_N41Kp7NANJ(op_i8ToyICDmI(b,b))+op_count_QMFrweE19q(op_tifHPKVTfV(op_nCS4ZIUYfx(b,b),op_g55IO6H4Gj(a,b)),op_N41Kp7NANJ(op_i8ToyICDmI(b,b)))\n return count\n","dependencies":["N41Kp7NANJ","BjRHVeLaeN","tifHPKVTfV","12rbrZMWeM","14qkJME0vr","g55IO6H4Gj","i8ToyICDmI","nCS4ZIUYfx","QMFrweE19q"]} +{"id":200,"func_id":"z4E1FaHLuy","symbol":"⫟","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⫟a = { (((-a)⪨≂(a⨸⪁a))≧⫂∧((a⩷∴a)⨰(a⫡⨏a))) , if (a⫌⩹⨱)>=11 ; (((a+263)⋝⋈⪟(a⨳⩥⨓a))⪒((a⋥≓≎a)⫩⊇)) , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_z4E1FaHLuy(a):\n if op_EBcxylXtPf(a) >= 11:\n return op_Ph9nP6C5qx(op_sdazOOVcIp(op_t8gj7n24qd(a),op_g55IO6H4Gj(a,a)),op_eewbuw0ToL(op_9FxExcQeMw(a,a),op_QMFrweE19q(a,a)))\n else:\n return op_f6k1SAg4EE(op_2DDjHMKMc0(op_W4YGzv6Whe(a,263),op_nCS4ZIUYfx(a,a)),op_BjRHVeLaeN(op_Qy55tPpLXF(a,a)))\n","op_count_func":"def op_count_z4E1FaHLuy(a):\n if op_EBcxylXtPf(a) >= 11:\n count = op_count_t8gj7n24qd(a)+op_count_g55IO6H4Gj(a,a)+op_count_sdazOOVcIp(op_t8gj7n24qd(a),op_g55IO6H4Gj(a,a))+op_count_9FxExcQeMw(a,a)+op_count_QMFrweE19q(a,a)+op_count_eewbuw0ToL(op_9FxExcQeMw(a,a),op_QMFrweE19q(a,a))+op_count_Ph9nP6C5qx(op_sdazOOVcIp(op_t8gj7n24qd(a),op_g55IO6H4Gj(a,a)),op_eewbuw0ToL(op_9FxExcQeMw(a,a),op_QMFrweE19q(a,a)))+op_count_EBcxylXtPf(a)\n else:\n count = op_count_W4YGzv6Whe(a,263)+op_count_nCS4ZIUYfx(a,a)+op_count_2DDjHMKMc0(op_W4YGzv6Whe(a,263),op_nCS4ZIUYfx(a,a))+op_count_Qy55tPpLXF(a,a)+op_count_BjRHVeLaeN(op_Qy55tPpLXF(a,a))+op_count_f6k1SAg4EE(op_2DDjHMKMc0(op_W4YGzv6Whe(a,263),op_nCS4ZIUYfx(a,a)),op_BjRHVeLaeN(op_Qy55tPpLXF(a,a)))\n return count\n","dependencies":["9FxExcQeMw","W4YGzv6Whe","Qy55tPpLXF","BjRHVeLaeN","sdazOOVcIp","Ph9nP6C5qx","t8gj7n24qd","EBcxylXtPf","f6k1SAg4EE","2DDjHMKMc0","g55IO6H4Gj","eewbuw0ToL","nCS4ZIUYfx","QMFrweE19q"]} +{"id":201,"func_id":"nlCqmYiOvY","symbol":"⨽⪊≇","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⨽⪊≇ = { ((a⇋≉)⪨≂(a+216)) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_nlCqmYiOvY(a):\n return op_sdazOOVcIp(op_XIabStNQrY(a),op_W4YGzv6Whe(a,216))\n","op_count_func":"def op_count_nlCqmYiOvY(a):\n count = op_count_XIabStNQrY(a)+op_count_W4YGzv6Whe(a,216)+op_count_sdazOOVcIp(op_XIabStNQrY(a),op_W4YGzv6Whe(a,216))\n return count\n","dependencies":["W4YGzv6Whe","sdazOOVcIp","XIabStNQrY"]} +{"id":202,"func_id":"5twsqlHp2o","symbol":"⊢","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊢b = { (((225⫩⊇)⊉≛↸(∥⊫a))⨵⪆(25⊉≛↸(b⋥≓≎47))) , if (a≦≮≮)==364 ; (((b⊦⊿)⪨≂(⩦⩻⨪b))↺((⨞⊢a)⪨≂(-1))) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_5twsqlHp2o(a, b):\n if op_D4vGDi5EA2(a) == 364:\n return op_2DQ55sFlQl(op_DZ8iAZOCBD(op_BjRHVeLaeN(225),op_P8v4zCKN1o(a)),op_DZ8iAZOCBD(25,op_Qy55tPpLXF(b,47)))\n else:\n return op_7j4O788W3g(op_sdazOOVcIp(op_14qkJME0vr(b),op_2td37pGCOC(b)),op_sdazOOVcIp(op_xUOZtlo3hN(a),op_t8gj7n24qd(1)))\n","op_count_func":"def op_count_5twsqlHp2o(a, b):\n if op_D4vGDi5EA2(a) == 364:\n count = op_count_BjRHVeLaeN(225)+op_count_P8v4zCKN1o(a)+op_count_DZ8iAZOCBD(op_BjRHVeLaeN(225),op_P8v4zCKN1o(a))+op_count_Qy55tPpLXF(b,47)+op_count_DZ8iAZOCBD(25,op_Qy55tPpLXF(b,47))+op_count_2DQ55sFlQl(op_DZ8iAZOCBD(op_BjRHVeLaeN(225),op_P8v4zCKN1o(a)),op_DZ8iAZOCBD(25,op_Qy55tPpLXF(b,47)))+op_count_D4vGDi5EA2(a)\n else:\n count = op_count_14qkJME0vr(b)+op_count_2td37pGCOC(b)+op_count_sdazOOVcIp(op_14qkJME0vr(b),op_2td37pGCOC(b))+op_count_xUOZtlo3hN(a)+op_count_t8gj7n24qd(1)+op_count_sdazOOVcIp(op_xUOZtlo3hN(a),op_t8gj7n24qd(1))+op_count_7j4O788W3g(op_sdazOOVcIp(op_14qkJME0vr(b),op_2td37pGCOC(b)),op_sdazOOVcIp(op_xUOZtlo3hN(a),op_t8gj7n24qd(1)))\n return count\n","dependencies":["P8v4zCKN1o","Qy55tPpLXF","BjRHVeLaeN","DZ8iAZOCBD","7j4O788W3g","sdazOOVcIp","2DQ55sFlQl","t8gj7n24qd","xUOZtlo3hN","14qkJME0vr","D4vGDi5EA2","2td37pGCOC"]} +{"id":203,"func_id":"rFxw8gIMmB","symbol":"⨶","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⨶ = { ((a⋥≓≎303)⪒(a⋥≓≎537)) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_rFxw8gIMmB(a):\n return op_f6k1SAg4EE(op_Qy55tPpLXF(a,303),op_Qy55tPpLXF(a,537))\n","op_count_func":"def op_count_rFxw8gIMmB(a):\n count = op_count_Qy55tPpLXF(a,303)+op_count_Qy55tPpLXF(a,537)+op_count_f6k1SAg4EE(op_Qy55tPpLXF(a,303),op_Qy55tPpLXF(a,537))\n return count\n","dependencies":["f6k1SAg4EE","Qy55tPpLXF"]} +{"id":204,"func_id":"BX1lVwlMe0","symbol":"⇟⨁⪰","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇟⨁⪰ = { (⨞⊢(a⋝⋈⪟a)) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_BX1lVwlMe0(a):\n return op_xUOZtlo3hN(op_2DDjHMKMc0(a,a))\n","op_count_func":"def op_count_BX1lVwlMe0(a):\n count = op_count_2DDjHMKMc0(a,a)+op_count_xUOZtlo3hN(op_2DDjHMKMc0(a,a))\n return count\n","dependencies":["2DDjHMKMc0","xUOZtlo3hN"]} +{"id":205,"func_id":"kbkesczE7y","symbol":"≬⋮","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a≬⋮b = { (((-a)∲⫓(b⇋≉))↺(∥⊫(b-b))) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_kbkesczE7y(a, b):\n return op_7j4O788W3g(op_i8ToyICDmI(op_t8gj7n24qd(a),op_XIabStNQrY(b)),op_P8v4zCKN1o(op_rysDP5nf3Z(b,b)))\n","op_count_func":"def op_count_kbkesczE7y(a, b):\n count = op_count_t8gj7n24qd(a)+op_count_XIabStNQrY(b)+op_count_i8ToyICDmI(op_t8gj7n24qd(a),op_XIabStNQrY(b))+op_count_rysDP5nf3Z(b,b)+op_count_P8v4zCKN1o(op_rysDP5nf3Z(b,b))+op_count_7j4O788W3g(op_i8ToyICDmI(op_t8gj7n24qd(a),op_XIabStNQrY(b)),op_P8v4zCKN1o(op_rysDP5nf3Z(b,b)))\n return count\n","dependencies":["P8v4zCKN1o","rysDP5nf3Z","7j4O788W3g","XIabStNQrY","t8gj7n24qd","i8ToyICDmI"]} +{"id":206,"func_id":"aSik1wnThz","symbol":"⨩∲⋌","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⨩∲⋌a = { ((759≧⫂∧(236-a))⩤) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_aSik1wnThz(a):\n return op_Z2TMIBDE3Q(op_Ph9nP6C5qx(759,op_rysDP5nf3Z(236,a)))\n","op_count_func":"def op_count_aSik1wnThz(a):\n count = op_count_rysDP5nf3Z(236,a)+op_count_Ph9nP6C5qx(759,op_rysDP5nf3Z(236,a))+op_count_Z2TMIBDE3Q(op_Ph9nP6C5qx(759,op_rysDP5nf3Z(236,a)))\n return count\n","dependencies":["rysDP5nf3Z","Ph9nP6C5qx","Z2TMIBDE3Q"]} +{"id":207,"func_id":"pRsWfj4Fpp","symbol":"∡","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∡a = { ((a≦≮≮)⊉≛↸(a⋝⋈⪟a)) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_pRsWfj4Fpp(a):\n return op_DZ8iAZOCBD(op_D4vGDi5EA2(a),op_2DDjHMKMc0(a,a))\n","op_count_func":"def op_count_pRsWfj4Fpp(a):\n count = op_count_D4vGDi5EA2(a)+op_count_2DDjHMKMc0(a,a)+op_count_DZ8iAZOCBD(op_D4vGDi5EA2(a),op_2DDjHMKMc0(a,a))\n return count\n","dependencies":["D4vGDi5EA2","DZ8iAZOCBD","2DDjHMKMc0"]} +{"id":208,"func_id":"a3N2hFLK0J","symbol":"∴≳≥","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∴��≥ = { (⨞⊢a) , if (⋗⩬⋾a)==641 ; (a⨸⪁a) , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_a3N2hFLK0J(a):\n if op_DpFCA1CohY(a) == 641:\n return op_xUOZtlo3hN(a)\n else:\n return op_g55IO6H4Gj(a,a)\n","op_count_func":"def op_count_a3N2hFLK0J(a):\n if op_DpFCA1CohY(a) == 641:\n count = op_count_xUOZtlo3hN(a)+op_count_DpFCA1CohY(a)\n else:\n count = op_count_g55IO6H4Gj(a,a)\n return count\n","dependencies":["g55IO6H4Gj","DpFCA1CohY","xUOZtlo3hN"]} +{"id":209,"func_id":"MmTdOpaElr","symbol":"⨱∎","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⨱∎ = { (a⇼⇔∾a) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_MmTdOpaElr(a):\n return op_tifHPKVTfV(a,a)\n","op_count_func":"def op_count_MmTdOpaElr(a):\n count = op_count_tifHPKVTfV(a,a)\n return count\n","dependencies":["tifHPKVTfV"]} +{"id":210,"func_id":"hrf7POJlIJ","symbol":"∴","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∴b = { ((∥⊫(22⋷b))⨸⪁a) }","definition_type":"simple_definition","priority":21,"associativity_direction":"left","op_compute_func":"def op_hrf7POJlIJ(a, b):\n return op_g55IO6H4Gj(op_P8v4zCKN1o(op_23Mk6UjR3U(22,b)),a)\n","op_count_func":"def op_count_hrf7POJlIJ(a, b):\n count = op_count_23Mk6UjR3U(22,b)+op_count_P8v4zCKN1o(op_23Mk6UjR3U(22,b))+op_count_g55IO6H4Gj(op_P8v4zCKN1o(op_23Mk6UjR3U(22,b)),a)\n return count\n","dependencies":["g55IO6H4Gj","P8v4zCKN1o","23Mk6UjR3U"]} +{"id":211,"func_id":"liw5iZPkLH","symbol":"⨡↴","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⨡↴a = { (∥⊫(a+181)) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_liw5iZPkLH(a):\n return op_P8v4zCKN1o(op_W4YGzv6Whe(a,181))\n","op_count_func":"def op_count_liw5iZPkLH(a):\n count = op_count_W4YGzv6Whe(a,181)+op_count_P8v4zCKN1o(op_W4YGzv6Whe(a,181))\n return count\n","dependencies":["W4YGzv6Whe","P8v4zCKN1o"]} +{"id":212,"func_id":"oRDoc9rAEX","symbol":"⊋≦⊧","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊋≦⊧b = { (((24⊉≛↸a)⊉≛↸(⩦⩻⨪b))⊉≛↸((a⊠≄⫣)⪨≂(b⇼⇔∾a))) , if a<=128 ; (((a⇼⇔∾b)⨁⊸⫻)⇼⇔∾((22⋳⪒a)⨰(a≧⫂∧a))) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_oRDoc9rAEX(a, b):\n if a <= 128:\n return op_DZ8iAZOCBD(op_DZ8iAZOCBD(op_DZ8iAZOCBD(24,a),op_2td37pGCOC(b)),op_sdazOOVcIp(op_DIvbN7qnHd(a),op_tifHPKVTfV(b,a)))\n else:\n return op_tifHPKVTfV(op_glklzrTFfD(op_tifHPKVTfV(a,b)),op_eewbuw0ToL(op_12rbrZMWeM(22,a),op_Ph9nP6C5qx(a,a)))\n","op_count_func":"def op_count_oRDoc9rAEX(a, b):\n if a <= 128:\n count = op_count_DZ8iAZOCBD(24,a)+op_count_2td37pGCOC(b)+op_count_DZ8iAZOCBD(op_DZ8iAZOCBD(24,a),op_2td37pGCOC(b))+op_count_DIvbN7qnHd(a)+op_count_tifHPKVTfV(b,a)+op_count_sdazOOVcIp(op_DIvbN7qnHd(a),op_tifHPKVTfV(b,a))+op_count_DZ8iAZOCBD(op_DZ8iAZOCBD(op_DZ8iAZOCBD(24,a),op_2td37pGCOC(b)),op_sdazOOVcIp(op_DIvbN7qnHd(a),op_tifHPKVTfV(b,a)))\n else:\n count = op_count_tifHPKVTfV(a,b)+op_count_glklzrTFfD(op_tifHPKVTfV(a,b))+op_count_12rbrZMWeM(22,a)+op_count_Ph9nP6C5qx(a,a)+op_count_eewbuw0ToL(op_12rbrZMWeM(22,a),op_Ph9nP6C5qx(a,a))+op_count_tifHPKVTfV(op_glklzrTFfD(op_tifHPKVTfV(a,b)),op_eewbuw0ToL(op_12rbrZMWeM(22,a),op_Ph9nP6C5qx(a,a)))\n return count\n","dependencies":["DZ8iAZOCBD","tifHPKVTfV","sdazOOVcIp","glklzrTFfD","DIvbN7qnHd","12rbrZMWeM","Ph9nP6C5qx","eewbuw0ToL","2td37pGCOC"]} +{"id":213,"func_id":"bx9Z9DAK5y","symbol":"⇾⩊⇾","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⇾⩊⇾a = { (⊄⩳↩((a+259)⫡⨏(a⫩⊇))) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_bx9Z9DAK5y(a):\n return op_8w2t5hMYqp(op_QMFrweE19q(op_W4YGzv6Whe(a,259),op_BjRHVeLaeN(a)))\n","op_count_func":"def op_count_bx9Z9DAK5y(a):\n count = op_count_W4YGzv6Whe(a,259)+op_count_BjRHVeLaeN(a)+op_count_QMFrweE19q(op_W4YGzv6Whe(a,259),op_BjRHVeLaeN(a))+op_count_8w2t5hMYqp(op_QMFrweE19q(op_W4YGzv6Whe(a,259),op_BjRHVeLaeN(a)))\n return count\n","dependencies":["W4YGzv6Whe","BjRHVeLaeN","8w2t5hMYqp","QMFrweE19q"]} +{"id":214,"func_id":"KFSx94NKJn","symbol":"⩒⫫","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩒⫫b = { (((195⪨≂263)⪨≂(b⇋≉))⨵⪆((82⫩⊇)⨁⊸⫻)) , if (a⫌⩹⨱)<47 ; (((b⇼⇔∾a)-(a⪨≂a))⩚⊴⇥((⨑⩽⪐a)⨰(b⨳⩥⨓a))) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_KFSx94NKJn(a, b):\n if op_EBcxylXtPf(a) < 47:\n return op_2DQ55sFlQl(op_sdazOOVcIp(op_sdazOOVcIp(195,263),op_XIabStNQrY(b)),op_glklzrTFfD(op_BjRHVeLaeN(82)))\n else:\n return op_NTOWxs364D(op_rysDP5nf3Z(op_tifHPKVTfV(b,a),op_sdazOOVcIp(a,a)),op_eewbuw0ToL(op_AF7qkfDlqP(a),op_nCS4ZIUYfx(b,a)))\n","op_count_func":"def op_count_KFSx94NKJn(a, b):\n if op_EBcxylXtPf(a) < 47:\n count = op_count_sdazOOVcIp(195,263)+op_count_XIabStNQrY(b)+op_count_sdazOOVcIp(op_sdazOOVcIp(195,263),op_XIabStNQrY(b))+op_count_BjRHVeLaeN(82)+op_count_glklzrTFfD(op_BjRHVeLaeN(82))+op_count_2DQ55sFlQl(op_sdazOOVcIp(op_sdazOOVcIp(195,263),op_XIabStNQrY(b)),op_glklzrTFfD(op_BjRHVeLaeN(82)))+op_count_EBcxylXtPf(a)\n else:\n count = op_count_tifHPKVTfV(b,a)+op_count_sdazOOVcIp(a,a)+op_count_rysDP5nf3Z(op_tifHPKVTfV(b,a),op_sdazOOVcIp(a,a))+op_count_AF7qkfDlqP(a)+op_count_nCS4ZIUYfx(b,a)+op_count_eewbuw0ToL(op_AF7qkfDlqP(a),op_nCS4ZIUYfx(b,a))+op_count_NTOWxs364D(op_rysDP5nf3Z(op_tifHPKVTfV(b,a),op_sdazOOVcIp(a,a)),op_eewbuw0ToL(op_AF7qkfDlqP(a),op_nCS4ZIUYfx(b,a)))\n return count\n","dependencies":["NTOWxs364D","rysDP5nf3Z","BjRHVeLaeN","XIabStNQrY","glklzrTFfD","tifHPKVTfV","sdazOOVcIp","2DQ55sFlQl","EBcxylXtPf","nCS4ZIUYfx","eewbuw0ToL","AF7qkfDlqP"]} +{"id":215,"func_id":"uOZ1tnYMDE","symbol":"⩏⊷≩","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⩏⊷≩a = { ((a⋳⪒20)⋷(a⋳⪒17)) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_uOZ1tnYMDE(a):\n return op_23Mk6UjR3U(op_12rbrZMWeM(a,20),op_12rbrZMWeM(a,17))\n","op_count_func":"def op_count_uOZ1tnYMDE(a):\n count = op_count_12rbrZMWeM(a,20)+op_count_12rbrZMWeM(a,17)+op_count_23Mk6UjR3U(op_12rbrZMWeM(a,20),op_12rbrZMWeM(a,17))\n return count\n","dependencies":["23Mk6UjR3U","12rbrZMWeM"]} +{"id":216,"func_id":"ljTHtUsqzn","symbol":"≀↧⇸","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≀↧⇸a = { (⪲⇎(a⋷a)) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_ljTHtUsqzn(a):\n return op_XPYlsWDdGa(op_23Mk6UjR3U(a,a))\n","op_count_func":"def op_count_ljTHtUsqzn(a):\n count = op_count_23Mk6UjR3U(a,a)+op_count_XPYlsWDdGa(op_23Mk6UjR3U(a,a))\n return count\n","dependencies":["XPYlsWDdGa","23Mk6UjR3U"]} +{"id":217,"func_id":"PxiHyQbrIp","symbol":"⊁⨺","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊁⨺a = { (((⨞⊢a)⋷(3↺a))⨵⪆((⪲⇎a)-(≉a))) , if a>5 ; (((a↺a)⨳⩥⨓(⩦⩻⨪a))⨳⩥⨓((a∲⫓a)⫡⨏(≉a))) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_PxiHyQbrIp(a):\n if a > 5:\n return op_2DQ55sFlQl(op_23Mk6UjR3U(op_xUOZtlo3hN(a),op_7j4O788W3g(3,a)),op_rysDP5nf3Z(op_XPYlsWDdGa(a),op_e1ybzncUwg(a)))\n else:\n return op_nCS4ZIUYfx(op_nCS4ZIUYfx(op_7j4O788W3g(a,a),op_2td37pGCOC(a)),op_QMFrweE19q(op_i8ToyICDmI(a,a),op_e1ybzncUwg(a)))\n","op_count_func":"def op_count_PxiHyQbrIp(a):\n if a > 5:\n count = op_count_xUOZtlo3hN(a)+op_count_7j4O788W3g(3,a)+op_count_23Mk6UjR3U(op_xUOZtlo3hN(a),op_7j4O788W3g(3,a))+op_count_XPYlsWDdGa(a)+op_count_e1ybzncUwg(a)+op_count_rysDP5nf3Z(op_XPYlsWDdGa(a),op_e1ybzncUwg(a))+op_count_2DQ55sFlQl(op_23Mk6UjR3U(op_xUOZtlo3hN(a),op_7j4O788W3g(3,a)),op_rysDP5nf3Z(op_XPYlsWDdGa(a),op_e1ybzncUwg(a)))\n else:\n count = op_count_7j4O788W3g(a,a)+op_count_2td37pGCOC(a)+op_count_nCS4ZIUYfx(op_7j4O788W3g(a,a),op_2td37pGCOC(a))+op_count_i8ToyICDmI(a,a)+op_count_e1ybzncUwg(a)+op_count_QMFrweE19q(op_i8ToyICDmI(a,a),op_e1ybzncUwg(a))+op_count_nCS4ZIUYfx(op_nCS4ZIUYfx(op_7j4O788W3g(a,a),op_2td37pGCOC(a)),op_QMFrweE19q(op_i8ToyICDmI(a,a),op_e1ybzncUwg(a)))\n return count\n","dependencies":["rysDP5nf3Z","e1ybzncUwg","XPYlsWDdGa","23Mk6UjR3U","7j4O788W3g","2td37pGCOC","2DQ55sFlQl","xUOZtlo3hN","i8ToyICDmI","nCS4ZIUYfx","QMFrweE19q"]} +{"id":218,"func_id":"3Oe9XWJUTD","symbol":"⊝⪿⪼","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊝⪿⪼b = { ((⊄⩳↩(480⩚⊴⇥a))⫡⨏((a⨰b)⋥≓≎(-b))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_3Oe9XWJUTD(a, b):\n return op_QMFrweE19q(op_8w2t5hMYqp(op_NTOWxs364D(480,a)),op_Qy55tPpLXF(op_eewbuw0ToL(a,b),op_t8gj7n24qd(b)))\n","op_count_func":"def op_count_3Oe9XWJUTD(a, b):\n count = op_count_NTOWxs364D(480,a)+op_count_8w2t5hMYqp(op_NTOWxs364D(480,a))+op_count_eewbuw0ToL(a,b)+op_count_t8gj7n24qd(b)+op_count_Qy55tPpLXF(op_eewbuw0ToL(a,b),op_t8gj7n24qd(b))+op_count_QMFrweE19q(op_8w2t5hMYqp(op_NTOWxs364D(480,a)),op_Qy55tPpLXF(op_eewbuw0ToL(a,b),op_t8gj7n24qd(b)))\n return count\n","dependencies":["NTOWxs364D","Qy55tPpLXF","8w2t5hMYqp","t8gj7n24qd","eewbuw0ToL","QMFrweE19q"]} +{"id":219,"func_id":"Bmrmz2XGnR","symbol":"≚⊃≕","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a≚⊃≕b = { (-((⊄⩳↩b)⪨≂(a⩷∴b))) , if ((b⫡⨏524)<690 or (⨞⊢a)>=395) ; ((⊄⩳↩(b⋥≓≎a))⋥≓≎((a↺a)⪨≂(479⨸⪁a))) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_Bmrmz2XGnR(a, b):\n if (op_QMFrweE19q(b,524) < 690 or op_xUOZtlo3hN(a) >= 395):\n return op_t8gj7n24qd(op_sdazOOVcIp(op_8w2t5hMYqp(b),op_9FxExcQeMw(a,b)))\n else:\n return op_Qy55tPpLXF(op_8w2t5hMYqp(op_Qy55tPpLXF(b,a)),op_sdazOOVcIp(op_7j4O788W3g(a,a),op_g55IO6H4Gj(479,a)))\n","op_count_func":"def op_count_Bmrmz2XGnR(a, b):\n if (op_QMFrweE19q(b,524) < 690 or op_xUOZtlo3hN(a) >= 395):\n count = op_count_8w2t5hMYqp(b)+op_count_9FxExcQeMw(a,b)+op_count_sdazOOVcIp(op_8w2t5hMYqp(b),op_9FxExcQeMw(a,b))+op_count_t8gj7n24qd(op_sdazOOVcIp(op_8w2t5hMYqp(b),op_9FxExcQeMw(a,b)))+op_count_QMFrweE19q(b,524)+op_count_xUOZtlo3hN(a)\n else:\n count = op_count_Qy55tPpLXF(b,a)+op_count_8w2t5hMYqp(op_Qy55tPpLXF(b,a))+op_count_7j4O788W3g(a,a)+op_count_g55IO6H4Gj(479,a)+op_count_sdazOOVcIp(op_7j4O788W3g(a,a),op_g55IO6H4Gj(479,a))+op_count_Qy55tPpLXF(op_8w2t5hMYqp(op_Qy55tPpLXF(b,a)),op_sdazOOVcIp(op_7j4O788W3g(a,a),op_g55IO6H4Gj(479,a)))\n return count\n","dependencies":["9FxExcQeMw","Qy55tPpLXF","7j4O788W3g","sdazOOVcIp","8w2t5hMYqp","t8gj7n24qd","xUOZtlo3hN","g55IO6H4Gj","QMFrweE19q"]} +{"id":220,"func_id":"bQ67fsrMVf","symbol":"⨝⨆","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⨝⨆a = { (209⇼⇔∾a) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_bQ67fsrMVf(a):\n return op_tifHPKVTfV(209,a)\n","op_count_func":"def op_count_bQ67fsrMVf(a):\n count = op_count_tifHPKVTfV(209,a)\n return count\n","dependencies":["tifHPKVTfV"]} +{"id":221,"func_id":"DmTXOeWf9t","symbol":"⊲⩕⊾","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊲⩕⊾b = { (((a⊉≛↸b)⊭↱(⨑⩽⪐b))⫡⨏((a⫩⊇)⋷(a⊉≛↸b))) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_DmTXOeWf9t(a, b):\n return op_QMFrweE19q(op_COABgblf1C(op_DZ8iAZOCBD(a,b),op_AF7qkfDlqP(b)),op_23Mk6UjR3U(op_BjRHVeLaeN(a),op_DZ8iAZOCBD(a,b)))\n","op_count_func":"def op_count_DmTXOeWf9t(a, b):\n count = op_count_DZ8iAZOCBD(a,b)+op_count_AF7qkfDlqP(b)+op_count_COABgblf1C(op_DZ8iAZOCBD(a,b),op_AF7qkfDlqP(b))+op_count_BjRHVeLaeN(a)+op_count_DZ8iAZOCBD(a,b)+op_count_23Mk6UjR3U(op_BjRHVeLaeN(a),op_DZ8iAZOCBD(a,b))+op_count_QMFrweE19q(op_COABgblf1C(op_DZ8iAZOCBD(a,b),op_AF7qkfDlqP(b)),op_23Mk6UjR3U(op_BjRHVeLaeN(a),op_DZ8iAZOCBD(a,b)))\n return count\n","dependencies":["23Mk6UjR3U","DZ8iAZOCBD","BjRHVeLaeN","QMFrweE19q","AF7qkfDlqP","COABgblf1C"]} +{"id":222,"func_id":"dwb5p0fa6d","symbol":"⊎←↗","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊎←↗ = { (a⊭↱340) , if (a⪨≂940)!=203 ; (a⊭↱a) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_dwb5p0fa6d(a):\n if op_sdazOOVcIp(a,940) != 203:\n return op_COABgblf1C(a,340)\n else:\n return op_COABgblf1C(a,a)\n","op_count_func":"def op_count_dwb5p0fa6d(a):\n if op_sdazOOVcIp(a,940) != 203:\n count = op_count_COABgblf1C(a,340)+op_count_sdazOOVcIp(a,940)\n else:\n count = op_count_COABgblf1C(a,a)\n return count\n","dependencies":["sdazOOVcIp","COABgblf1C"]} +{"id":223,"func_id":"6o9Blt3TJ6","symbol":"⫰⋱","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⫰⋱b = { ((a+b)⨳⩥⨓(b⋥≓≎b)) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_6o9Blt3TJ6(a, b):\n return op_nCS4ZIUYfx(op_W4YGzv6Whe(a,b),op_Qy55tPpLXF(b,b))\n","op_count_func":"def op_count_6o9Blt3TJ6(a, b):\n count = op_count_W4YGzv6Whe(a,b)+op_count_Qy55tPpLXF(b,b)+op_count_nCS4ZIUYfx(op_W4YGzv6Whe(a,b),op_Qy55tPpLXF(b,b))\n return count\n","dependencies":["W4YGzv6Whe","nCS4ZIUYfx","Qy55tPpLXF"]} +{"id":224,"func_id":"Y7wcNGrDQJ","symbol":"⩵∡","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩵∡b = { ((b⇼⇔∾a)⩚⊴⇥(a⨁⊸⫻)) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_Y7wcNGrDQJ(a, b):\n return op_NTOWxs364D(op_tifHPKVTfV(b,a),op_glklzrTFfD(a))\n","op_count_func":"def op_count_Y7wcNGrDQJ(a, b):\n count = op_count_tifHPKVTfV(b,a)+op_count_glklzrTFfD(a)+op_count_NTOWxs364D(op_tifHPKVTfV(b,a),op_glklzrTFfD(a))\n return count\n","dependencies":["NTOWxs364D","glklzrTFfD","tifHPKVTfV"]} +{"id":225,"func_id":"U6pG0PXrV3","symbol":"⊖","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊖a = { (((a⇼⇔∾a)⨳⩥⨓(a≦≮≮))∲⫓a) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_U6pG0PXrV3(a):\n return op_i8ToyICDmI(op_nCS4ZIUYfx(op_tifHPKVTfV(a,a),op_D4vGDi5EA2(a)),a)\n","op_count_func":"def op_count_U6pG0PXrV3(a):\n count = op_count_tifHPKVTfV(a,a)+op_count_D4vGDi5EA2(a)+op_count_nCS4ZIUYfx(op_tifHPKVTfV(a,a),op_D4vGDi5EA2(a))+op_count_i8ToyICDmI(op_nCS4ZIUYfx(op_tifHPKVTfV(a,a),op_D4vGDi5EA2(a)),a)\n return count\n","dependencies":["tifHPKVTfV","i8ToyICDmI","D4vGDi5EA2","nCS4ZIUYfx"]} +{"id":226,"func_id":"ZNVVrZ94lY","symbol":"⪁⇼","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⪁⇼a = { ((a⨵⪆a)⪨≂(a⇼⇔∾a)) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_ZNVVrZ94lY(a):\n return op_sdazOOVcIp(op_2DQ55sFlQl(a,a),op_tifHPKVTfV(a,a))\n","op_count_func":"def op_count_ZNVVrZ94lY(a):\n count = op_count_2DQ55sFlQl(a,a)+op_count_tifHPKVTfV(a,a)+op_count_sdazOOVcIp(op_2DQ55sFlQl(a,a),op_tifHPKVTfV(a,a))\n return count\n","dependencies":["sdazOOVcIp","2DQ55sFlQl","tifHPKVTfV"]} +{"id":227,"func_id":"1aApVXNlOP","symbol":"⩇∃⫛","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩇∃⫛b = { (((b⊉≛↸a)⩤)⨰((362⩷∴b)⋥≓≎(↽≂a))) , if (a⊦⊿)>7 and b<=506 and (-a)==737 ; (((b⩤)⪒(b≧⫂∧a))⋝⋈⪟((a⨵⪆a)-(≉a))) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_1aApVXNlOP(a, b):\n if op_14qkJME0vr(a) > 7 and b <= 506 and op_t8gj7n24qd(a) == 737:\n return op_eewbuw0ToL(op_Z2TMIBDE3Q(op_DZ8iAZOCBD(b,a)),op_Qy55tPpLXF(op_9FxExcQeMw(362,b),op_u6S6b8DprG(a)))\n else:\n return op_2DDjHMKMc0(op_f6k1SAg4EE(op_Z2TMIBDE3Q(b),op_Ph9nP6C5qx(b,a)),op_rysDP5nf3Z(op_2DQ55sFlQl(a,a),op_e1ybzncUwg(a)))\n","op_count_func":"def op_count_1aApVXNlOP(a, b):\n if op_14qkJME0vr(a) > 7 and b <= 506 and op_t8gj7n24qd(a) == 737:\n count = op_count_DZ8iAZOCBD(b,a)+op_count_Z2TMIBDE3Q(op_DZ8iAZOCBD(b,a))+op_count_9FxExcQeMw(362,b)+op_count_u6S6b8DprG(a)+op_count_Qy55tPpLXF(op_9FxExcQeMw(362,b),op_u6S6b8DprG(a))+op_count_eewbuw0ToL(op_Z2TMIBDE3Q(op_DZ8iAZOCBD(b,a)),op_Qy55tPpLXF(op_9FxExcQeMw(362,b),op_u6S6b8DprG(a)))+op_count_14qkJME0vr(a)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_Z2TMIBDE3Q(b)+op_count_Ph9nP6C5qx(b,a)+op_count_f6k1SAg4EE(op_Z2TMIBDE3Q(b),op_Ph9nP6C5qx(b,a))+op_count_2DQ55sFlQl(a,a)+op_count_e1ybzncUwg(a)+op_count_rysDP5nf3Z(op_2DQ55sFlQl(a,a),op_e1ybzncUwg(a))+op_count_2DDjHMKMc0(op_f6k1SAg4EE(op_Z2TMIBDE3Q(b),op_Ph9nP6C5qx(b,a)),op_rysDP5nf3Z(op_2DQ55sFlQl(a,a),op_e1ybzncUwg(a)))\n return count\n","dependencies":["9FxExcQeMw","rysDP5nf3Z","e1ybzncUwg","Qy55tPpLXF","DZ8iAZOCBD","2DQ55sFlQl","t8gj7n24qd","2DDjHMKMc0","Z2TMIBDE3Q","14qkJME0vr","f6k1SAg4EE","Ph9nP6C5qx","eewbuw0ToL","u6S6b8DprG"]} +{"id":228,"func_id":"vg4gO5BX6G","symbol":"⊨","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊨b = { (⨞⊢(b⪠⩆⊳)) , if a<=416 ; (⨑⩽⪐(a⩚⊴⇥a)) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_vg4gO5BX6G(a, b):\n if a <= 416:\n return op_xUOZtlo3hN(op_JLbD19bQDL(b))\n else:\n return op_AF7qkfDlqP(op_NTOWxs364D(a,a))\n","op_count_func":"def op_count_vg4gO5BX6G(a, b):\n if a <= 416:\n count = op_count_JLbD19bQDL(b)+op_count_xUOZtlo3hN(op_JLbD19bQDL(b))\n else:\n count = op_count_NTOWxs364D(a,a)+op_count_AF7qkfDlqP(op_NTOWxs364D(a,a))\n return count\n","dependencies":["NTOWxs364D","JLbD19bQDL","xUOZtlo3hN","AF7qkfDlqP"]} +{"id":229,"func_id":"t4WUHVGj7f","symbol":"⫭","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⫭ = { (⨞⊢((a⨸⪁147)⩚⊴⇥(a⋝⋈⪟a))) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_t4WUHVGj7f(a):\n return op_xUOZtlo3hN(op_NTOWxs364D(op_g55IO6H4Gj(a,147),op_2DDjHMKMc0(a,a)))\n","op_count_func":"def op_count_t4WUHVGj7f(a):\n count = op_count_g55IO6H4Gj(a,147)+op_count_2DDjHMKMc0(a,a)+op_count_NTOWxs364D(op_g55IO6H4Gj(a,147),op_2DDjHMKMc0(a,a))+op_count_xUOZtlo3hN(op_NTOWxs364D(op_g55IO6H4Gj(a,147),op_2DDjHMKMc0(a,a)))\n return count\n","dependencies":["NTOWxs364D","2DDjHMKMc0","xUOZtlo3hN","g55IO6H4Gj"]} +{"id":230,"func_id":"MXaNJeIAZ3","symbol":"↡","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"↡a = { (((772⨳⩥⨓159)⪨≂(a⋷a))↺(⊄⩳↩(⋗⩬⋾a))) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_MXaNJeIAZ3(a):\n return op_7j4O788W3g(op_sdazOOVcIp(op_nCS4ZIUYfx(772,159),op_23Mk6UjR3U(a,a)),op_8w2t5hMYqp(op_DpFCA1CohY(a)))\n","op_count_func":"def op_count_MXaNJeIAZ3(a):\n count = op_count_nCS4ZIUYfx(772,159)+op_count_23Mk6UjR3U(a,a)+op_count_sdazOOVcIp(op_nCS4ZIUYfx(772,159),op_23Mk6UjR3U(a,a))+op_count_DpFCA1CohY(a)+op_count_8w2t5hMYqp(op_DpFCA1CohY(a))+op_count_7j4O788W3g(op_sdazOOVcIp(op_nCS4ZIUYfx(772,159),op_23Mk6UjR3U(a,a)),op_8w2t5hMYqp(op_DpFCA1CohY(a)))\n return count\n","dependencies":["DpFCA1CohY","23Mk6UjR3U","7j4O788W3g","8w2t5hMYqp","sdazOOVcIp","nCS4ZIUYfx"]} +{"id":231,"func_id":"86A5ENbKR9","symbol":"⪸","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⪸a = { (((220⪨≂51)⇼⇔∾(a⫡⨏303))⋷((a⨸⪁a)⋥≓≎(⨑⩽⪐a))) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_86A5ENbKR9(a):\n return op_23Mk6UjR3U(op_tifHPKVTfV(op_sdazOOVcIp(220,51),op_QMFrweE19q(a,303)),op_Qy55tPpLXF(op_g55IO6H4Gj(a,a),op_AF7qkfDlqP(a)))\n","op_count_func":"def op_count_86A5ENbKR9(a):\n count = op_count_sdazOOVcIp(220,51)+op_count_QMFrweE19q(a,303)+op_count_tifHPKVTfV(op_sdazOOVcIp(220,51),op_QMFrweE19q(a,303))+op_count_g55IO6H4Gj(a,a)+op_count_AF7qkfDlqP(a)+op_count_Qy55tPpLXF(op_g55IO6H4Gj(a,a),op_AF7qkfDlqP(a))+op_count_23Mk6UjR3U(op_tifHPKVTfV(op_sdazOOVcIp(220,51),op_QMFrweE19q(a,303)),op_Qy55tPpLXF(op_g55IO6H4Gj(a,a),op_AF7qkfDlqP(a)))\n return count\n","dependencies":["Qy55tPpLXF","23Mk6UjR3U","tifHPKVTfV","sdazOOVcIp","g55IO6H4Gj","AF7qkfDlqP","QMFrweE19q"]} +{"id":232,"func_id":"VwlE7vj6HS","symbol":"↯⫤","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a↯⫤ = { (((-a)⋝⋈⪟(a⨳⩥⨓a))⨸⪁((a⨁⊸⫻)⇼⇔∾(a+a))) , if (a⋷221)!=277 ; (((300⪐)⨁⊸⫻)⇼⇔∾(a≧⫂∧(26≧⫂∧87))) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_VwlE7vj6HS(a):\n if op_23Mk6UjR3U(a,221) != 277:\n return op_g55IO6H4Gj(op_2DDjHMKMc0(op_t8gj7n24qd(a),op_nCS4ZIUYfx(a,a)),op_tifHPKVTfV(op_glklzrTFfD(a),op_W4YGzv6Whe(a,a)))\n else:\n return op_tifHPKVTfV(op_glklzrTFfD(op_eH2TOUuTDT(300)),op_Ph9nP6C5qx(a,op_Ph9nP6C5qx(26,87)))\n","op_count_func":"def op_count_VwlE7vj6HS(a):\n if op_23Mk6UjR3U(a,221) != 277:\n count = op_count_t8gj7n24qd(a)+op_count_nCS4ZIUYfx(a,a)+op_count_2DDjHMKMc0(op_t8gj7n24qd(a),op_nCS4ZIUYfx(a,a))+op_count_glklzrTFfD(a)+op_count_W4YGzv6Whe(a,a)+op_count_tifHPKVTfV(op_glklzrTFfD(a),op_W4YGzv6Whe(a,a))+op_count_g55IO6H4Gj(op_2DDjHMKMc0(op_t8gj7n24qd(a),op_nCS4ZIUYfx(a,a)),op_tifHPKVTfV(op_glklzrTFfD(a),op_W4YGzv6Whe(a,a)))+op_count_23Mk6UjR3U(a,221)\n else:\n count = op_count_eH2TOUuTDT(300)+op_count_glklzrTFfD(op_eH2TOUuTDT(300))+op_count_Ph9nP6C5qx(26,87)+op_count_Ph9nP6C5qx(a,op_Ph9nP6C5qx(26,87))+op_count_tifHPKVTfV(op_glklzrTFfD(op_eH2TOUuTDT(300)),op_Ph9nP6C5qx(a,op_Ph9nP6C5qx(26,87)))\n return count\n","dependencies":["W4YGzv6Whe","23Mk6UjR3U","tifHPKVTfV","glklzrTFfD","eH2TOUuTDT","t8gj7n24qd","2DDjHMKMc0","Ph9nP6C5qx","g55IO6H4Gj","nCS4ZIUYfx"]} +{"id":233,"func_id":"wztAlM01eG","symbol":"↸⊣","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"↸⊣a = { ((⊄⩳↩a)↺(a≋⫹)) , if (⪲⇎a)<33 ; ((a⪒a)⊉≛↸(a⋳⪒a)) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_wztAlM01eG(a):\n if op_XPYlsWDdGa(a) < 33:\n return op_7j4O788W3g(op_8w2t5hMYqp(a),op_N41Kp7NANJ(a))\n else:\n return op_DZ8iAZOCBD(op_f6k1SAg4EE(a,a),op_12rbrZMWeM(a,a))\n","op_count_func":"def op_count_wztAlM01eG(a):\n if op_XPYlsWDdGa(a) < 33:\n count = op_count_8w2t5hMYqp(a)+op_count_N41Kp7NANJ(a)+op_count_7j4O788W3g(op_8w2t5hMYqp(a),op_N41Kp7NANJ(a))+op_count_XPYlsWDdGa(a)\n else:\n count = op_count_f6k1SAg4EE(a,a)+op_count_12rbrZMWeM(a,a)+op_count_DZ8iAZOCBD(op_f6k1SAg4EE(a,a),op_12rbrZMWeM(a,a))\n return count\n","dependencies":["N41Kp7NANJ","XPYlsWDdGa","7j4O788W3g","DZ8iAZOCBD","8w2t5hMYqp","12rbrZMWeM","f6k1SAg4EE"]} +{"id":234,"func_id":"8cLx32lpNA","symbol":"∌","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∌b = { (248↺a) , if (a≋⫹)>=60 ; (-b) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_8cLx32lpNA(a, b):\n if op_N41Kp7NANJ(a) >= 60:\n return op_7j4O788W3g(248,a)\n else:\n return op_t8gj7n24qd(b)\n","op_count_func":"def op_count_8cLx32lpNA(a, b):\n if op_N41Kp7NANJ(a) >= 60:\n count = op_count_7j4O788W3g(248,a)+op_count_N41Kp7NANJ(a)\n else:\n count = op_count_t8gj7n24qd(b)\n return count\n","dependencies":["N41Kp7NANJ","7j4O788W3g","t8gj7n24qd"]} +{"id":235,"func_id":"j9kHMeSvPp","symbol":"⪭","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⪭b = { (⨞⊢a) , if a<649 ; (b⊭↱b) , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_j9kHMeSvPp(a, b):\n if a < 649:\n return op_xUOZtlo3hN(a)\n else:\n return op_COABgblf1C(b,b)\n","op_count_func":"def op_count_j9kHMeSvPp(a, b):\n if a < 649:\n count = op_count_xUOZtlo3hN(a)\n else:\n count = op_count_COABgblf1C(b,b)\n return count\n","dependencies":["COABgblf1C","xUOZtlo3hN"]} +{"id":236,"func_id":"rXAclfmB4M","symbol":"⊤⊝","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊤⊝a = { (a⪨≂700) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_rXAclfmB4M(a):\n return op_sdazOOVcIp(a,700)\n","op_count_func":"def op_count_rXAclfmB4M(a):\n count = op_count_sdazOOVcIp(a,700)\n return count\n","dependencies":["sdazOOVcIp"]} +{"id":237,"func_id":"bF6eod5Gvf","symbol":"→⨶⪴","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a→⨶⪴b = { (a⩷∴b) , if b<109 ; (⊄⩳↩b) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_bF6eod5Gvf(a, b):\n if b < 109:\n return op_9FxExcQeMw(a,b)\n else:\n return op_8w2t5hMYqp(b)\n","op_count_func":"def op_count_bF6eod5Gvf(a, b):\n if b < 109:\n count = op_count_9FxExcQeMw(a,b)\n else:\n count = op_count_8w2t5hMYqp(b)\n return count\n","dependencies":["8w2t5hMYqp","9FxExcQeMw"]} +{"id":238,"func_id":"s3Fd5m9Dh2","symbol":"⊬⨰","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⊬⨰b = { ((a⋷528)⨳⩥⨓(b⨸⪁b)) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_s3Fd5m9Dh2(a, b):\n return op_nCS4ZIUYfx(op_23Mk6UjR3U(a,528),op_g55IO6H4Gj(b,b))\n","op_count_func":"def op_count_s3Fd5m9Dh2(a, b):\n count = op_count_23Mk6UjR3U(a,528)+op_count_g55IO6H4Gj(b,b)+op_count_nCS4ZIUYfx(op_23Mk6UjR3U(a,528),op_g55IO6H4Gj(b,b))\n return count\n","dependencies":["23Mk6UjR3U","g55IO6H4Gj","nCS4ZIUYfx"]} +{"id":239,"func_id":"YSKBFp38Pu","symbol":"⇤","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⇤b = { (((b-523)⇼⇔∾(⨞⊢a))⫡⨏((⪲⇎a)⨵⪆(336⋝⋈⪟a))) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_YSKBFp38Pu(a, b):\n return op_QMFrweE19q(op_tifHPKVTfV(op_rysDP5nf3Z(b,523),op_xUOZtlo3hN(a)),op_2DQ55sFlQl(op_XPYlsWDdGa(a),op_2DDjHMKMc0(336,a)))\n","op_count_func":"def op_count_YSKBFp38Pu(a, b):\n count = op_count_rysDP5nf3Z(b,523)+op_count_xUOZtlo3hN(a)+op_count_tifHPKVTfV(op_rysDP5nf3Z(b,523),op_xUOZtlo3hN(a))+op_count_XPYlsWDdGa(a)+op_count_2DDjHMKMc0(336,a)+op_count_2DQ55sFlQl(op_XPYlsWDdGa(a),op_2DDjHMKMc0(336,a))+op_count_QMFrweE19q(op_tifHPKVTfV(op_rysDP5nf3Z(b,523),op_xUOZtlo3hN(a)),op_2DQ55sFlQl(op_XPYlsWDdGa(a),op_2DDjHMKMc0(336,a)))\n return count\n","dependencies":["rysDP5nf3Z","XPYlsWDdGa","tifHPKVTfV","2DQ55sFlQl","2DDjHMKMc0","xUOZtlo3hN","QMFrweE19q"]} +{"id":240,"func_id":"LkLIoiE525","symbol":"⇯⋐","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇯⋐ = { (((a↺a)⊉≛↸(∥⊫a))⨰((17⫡⨏a)⇼⇔∾a)) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_LkLIoiE525(a):\n return op_eewbuw0ToL(op_DZ8iAZOCBD(op_7j4O788W3g(a,a),op_P8v4zCKN1o(a)),op_tifHPKVTfV(op_QMFrweE19q(17,a),a))\n","op_count_func":"def op_count_LkLIoiE525(a):\n count = op_count_7j4O788W3g(a,a)+op_count_P8v4zCKN1o(a)+op_count_DZ8iAZOCBD(op_7j4O788W3g(a,a),op_P8v4zCKN1o(a))+op_count_QMFrweE19q(17,a)+op_count_tifHPKVTfV(op_QMFrweE19q(17,a),a)+op_count_eewbuw0ToL(op_DZ8iAZOCBD(op_7j4O788W3g(a,a),op_P8v4zCKN1o(a)),op_tifHPKVTfV(op_QMFrweE19q(17,a),a))\n return count\n","dependencies":["P8v4zCKN1o","DZ8iAZOCBD","7j4O788W3g","tifHPKVTfV","eewbuw0ToL","QMFrweE19q"]} +{"id":241,"func_id":"OKKcZfAt5B","symbol":"≝⊿","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a≝⊿b = { ((82⋳⪒b)⋳⪒a) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_OKKcZfAt5B(a, b):\n return op_12rbrZMWeM(op_12rbrZMWeM(82,b),a)\n","op_count_func":"def op_count_OKKcZfAt5B(a, b):\n count = op_count_12rbrZMWeM(82,b)+op_count_12rbrZMWeM(op_12rbrZMWeM(82,b),a)\n return count\n","dependencies":["12rbrZMWeM"]} +{"id":242,"func_id":"USyYr0JgAa","symbol":"⪹","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⪹a = { (a⇼⇔∾180) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_USyYr0JgAa(a):\n return op_tifHPKVTfV(a,180)\n","op_count_func":"def op_count_USyYr0JgAa(a):\n count = op_count_tifHPKVTfV(a,180)\n return count\n","dependencies":["tifHPKVTfV"]} +{"id":243,"func_id":"QvoQhV0rrE","symbol":"∠⫱","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∠⫱b = { ((⨑⩽⪐a)↺(617⊉≛↸a)) , if (≤/b)<=3 ; (b⇼⇔∾a) , else }","definition_type":"branch_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_QvoQhV0rrE(a, b):\n if op_eLAdDNolq6(b) <= 3:\n return op_7j4O788W3g(op_AF7qkfDlqP(a),op_DZ8iAZOCBD(617,a))\n else:\n return op_tifHPKVTfV(b,a)\n","op_count_func":"def op_count_QvoQhV0rrE(a, b):\n if op_eLAdDNolq6(b) <= 3:\n count = op_count_AF7qkfDlqP(a)+op_count_DZ8iAZOCBD(617,a)+op_count_7j4O788W3g(op_AF7qkfDlqP(a),op_DZ8iAZOCBD(617,a))+op_count_eLAdDNolq6(b)\n else:\n count = op_count_tifHPKVTfV(b,a)\n return count\n","dependencies":["eLAdDNolq6","DZ8iAZOCBD","7j4O788W3g","tifHPKVTfV","AF7qkfDlqP"]} +{"id":244,"func_id":"ztP7wcbY7m","symbol":"∈","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∈ = { ((⊄⩳↩250)-(a⊦⊿)) , if ((⪲⇎a)>320 or (a⪒777)>25 or a!=39) ; a , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_ztP7wcbY7m(a):\n if (op_XPYlsWDdGa(a) > 320 or op_f6k1SAg4EE(a,777) > 25 or a != 39):\n return op_rysDP5nf3Z(op_8w2t5hMYqp(250),op_14qkJME0vr(a))\n else:\n return a\n","op_count_func":"def op_count_ztP7wcbY7m(a):\n if (op_XPYlsWDdGa(a) > 320 or op_f6k1SAg4EE(a,777) > 25 or a != 39):\n count = op_count_8w2t5hMYqp(250)+op_count_14qkJME0vr(a)+op_count_rysDP5nf3Z(op_8w2t5hMYqp(250),op_14qkJME0vr(a))+op_count_XPYlsWDdGa(a)+op_count_f6k1SAg4EE(a,777)\n else:\n count = 1\n return count\n","dependencies":["rysDP5nf3Z","XPYlsWDdGa","8w2t5hMYqp","f6k1SAg4EE","14qkJME0vr"]} +{"id":245,"func_id":"ocnLzx9CaJ","symbol":"⩼⇪↪","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩼⇪↪b = { ((a⪐)-(b⫡⨏b)) , if (a⫩⊇)!=96 ; (148⨵⪆(a⩷∴b)) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_ocnLzx9CaJ(a, b):\n if op_BjRHVeLaeN(a) != 96:\n return op_rysDP5nf3Z(op_eH2TOUuTDT(a),op_QMFrweE19q(b,b))\n else:\n return op_2DQ55sFlQl(148,op_9FxExcQeMw(a,b))\n","op_count_func":"def op_count_ocnLzx9CaJ(a, b):\n if op_BjRHVeLaeN(a) != 96:\n count = op_count_eH2TOUuTDT(a)+op_count_QMFrweE19q(b,b)+op_count_rysDP5nf3Z(op_eH2TOUuTDT(a),op_QMFrweE19q(b,b))+op_count_BjRHVeLaeN(a)\n else:\n count = op_count_9FxExcQeMw(a,b)+op_count_2DQ55sFlQl(148,op_9FxExcQeMw(a,b))\n return count\n","dependencies":["9FxExcQeMw","rysDP5nf3Z","BjRHVeLaeN","eH2TOUuTDT","2DQ55sFlQl","QMFrweE19q"]} +{"id":246,"func_id":"7qqUquhhSb","symbol":"⩉⊫⨁","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⩉⊫⨁ = { (331↺a) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_7qqUquhhSb(a):\n return op_7j4O788W3g(331,a)\n","op_count_func":"def op_count_7qqUquhhSb(a):\n count = op_count_7j4O788W3g(331,a)\n return count\n","dependencies":["7j4O788W3g"]} +{"id":247,"func_id":"D3AQDKkPcf","symbol":"∷","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∷b = { (a⩚⊴⇥673) , if (b⩷∴24)<=112 ; (a↺b) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_D3AQDKkPcf(a, b):\n if op_9FxExcQeMw(b,24) <= 112:\n return op_NTOWxs364D(a,673)\n else:\n return op_7j4O788W3g(a,b)\n","op_count_func":"def op_count_D3AQDKkPcf(a, b):\n if op_9FxExcQeMw(b,24) <= 112:\n count = op_count_NTOWxs364D(a,673)+op_count_9FxExcQeMw(b,24)\n else:\n count = op_count_7j4O788W3g(a,b)\n return count\n","dependencies":["9FxExcQeMw","NTOWxs364D","7j4O788W3g"]} +{"id":248,"func_id":"3nqY3DE9mg","symbol":"⊍","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊍ = { (⊄⩳↩(⨑⩽⪐(a⋳⪒a))) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_3nqY3DE9mg(a):\n return op_8w2t5hMYqp(op_AF7qkfDlqP(op_12rbrZMWeM(a,a)))\n","op_count_func":"def op_count_3nqY3DE9mg(a):\n count = op_count_12rbrZMWeM(a,a)+op_count_AF7qkfDlqP(op_12rbrZMWeM(a,a))+op_count_8w2t5hMYqp(op_AF7qkfDlqP(op_12rbrZMWeM(a,a)))\n return count\n","dependencies":["8w2t5hMYqp","AF7qkfDlqP","12rbrZMWeM"]} +{"id":249,"func_id":"4JB6nKBMSY","symbol":"⇴","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⇴b = { ((185⊭↱a)⪨≂(b⩚⊴⇥a)) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_4JB6nKBMSY(a, b):\n return op_sdazOOVcIp(op_COABgblf1C(185,a),op_NTOWxs364D(b,a))\n","op_count_func":"def op_count_4JB6nKBMSY(a, b):\n count = op_count_COABgblf1C(185,a)+op_count_NTOWxs364D(b,a)+op_count_sdazOOVcIp(op_COABgblf1C(185,a),op_NTOWxs364D(b,a))\n return count\n","dependencies":["sdazOOVcIp","NTOWxs364D","COABgblf1C"]} +{"id":250,"func_id":"cWQsF5MvuD","symbol":"⨌↪","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⨌↪ = { (⊄⩳↩((a∲⫓a)⨵⪆(a⫡⨏a))) }","definition_type":"simple_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_cWQsF5MvuD(a):\n return op_8w2t5hMYqp(op_2DQ55sFlQl(op_i8ToyICDmI(a,a),op_QMFrweE19q(a,a)))\n","op_count_func":"def op_count_cWQsF5MvuD(a):\n count = op_count_i8ToyICDmI(a,a)+op_count_QMFrweE19q(a,a)+op_count_2DQ55sFlQl(op_i8ToyICDmI(a,a),op_QMFrweE19q(a,a))+op_count_8w2t5hMYqp(op_2DQ55sFlQl(op_i8ToyICDmI(a,a),op_QMFrweE19q(a,a)))\n return count\n","dependencies":["8w2t5hMYqp","2DQ55sFlQl","i8ToyICDmI","QMFrweE19q"]} +{"id":251,"func_id":"KbjG8mgYpV","symbol":"∠↢","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a∠↢b = { (a⊭↱((159⨳⩥⨓16)-(b⨸⪁a))) , if (b==488 or (⨞⊢a)==254) ; (⪲⇎((-b)⫡⨏(b⩚⊴⇥a))) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_KbjG8mgYpV(a, b):\n if (b == 488 or op_xUOZtlo3hN(a) == 254):\n return op_COABgblf1C(a,op_rysDP5nf3Z(op_nCS4ZIUYfx(159,16),op_g55IO6H4Gj(b,a)))\n else:\n return op_XPYlsWDdGa(op_QMFrweE19q(op_t8gj7n24qd(b),op_NTOWxs364D(b,a)))\n","op_count_func":"def op_count_KbjG8mgYpV(a, b):\n if (b == 488 or op_xUOZtlo3hN(a) == 254):\n count = op_count_nCS4ZIUYfx(159,16)+op_count_g55IO6H4Gj(b,a)+op_count_rysDP5nf3Z(op_nCS4ZIUYfx(159,16),op_g55IO6H4Gj(b,a))+op_count_COABgblf1C(a,op_rysDP5nf3Z(op_nCS4ZIUYfx(159,16),op_g55IO6H4Gj(b,a)))+op_count_xUOZtlo3hN(a)\n else:\n count = op_count_t8gj7n24qd(b)+op_count_NTOWxs364D(b,a)+op_count_QMFrweE19q(op_t8gj7n24qd(b),op_NTOWxs364D(b,a))+op_count_XPYlsWDdGa(op_QMFrweE19q(op_t8gj7n24qd(b),op_NTOWxs364D(b,a)))\n return count\n","dependencies":["rysDP5nf3Z","NTOWxs364D","XPYlsWDdGa","t8gj7n24qd","xUOZtlo3hN","g55IO6H4Gj","QMFrweE19q","nCS4ZIUYfx","COABgblf1C"]} +{"id":252,"func_id":"59igzFyhWz","symbol":"∵≐","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a∵≐ = { ((a⊉≛↸31)⋳⪒(101+a)) , if a<=828 ; ((⊄⩳↩a)≧⫂∧(a≧⫂∧a)) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_59igzFyhWz(a):\n if a <= 828:\n return op_12rbrZMWeM(op_DZ8iAZOCBD(a,31),op_W4YGzv6Whe(101,a))\n else:\n return op_Ph9nP6C5qx(op_8w2t5hMYqp(a),op_Ph9nP6C5qx(a,a))\n","op_count_func":"def op_count_59igzFyhWz(a):\n if a <= 828:\n count = op_count_DZ8iAZOCBD(a,31)+op_count_W4YGzv6Whe(101,a)+op_count_12rbrZMWeM(op_DZ8iAZOCBD(a,31),op_W4YGzv6Whe(101,a))\n else:\n count = op_count_8w2t5hMYqp(a)+op_count_Ph9nP6C5qx(a,a)+op_count_Ph9nP6C5qx(op_8w2t5hMYqp(a),op_Ph9nP6C5qx(a,a))\n return count\n","dependencies":["W4YGzv6Whe","DZ8iAZOCBD","8w2t5hMYqp","Ph9nP6C5qx","12rbrZMWeM"]} +{"id":253,"func_id":"fv3ZujxkQL","symbol":"⊿∆","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊿∆ = { (a⩚⊴⇥a) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_fv3ZujxkQL(a):\n return op_NTOWxs364D(a,a)\n","op_count_func":"def op_count_fv3ZujxkQL(a):\n count = op_count_NTOWxs364D(a,a)\n return count\n","dependencies":["NTOWxs364D"]} +{"id":254,"func_id":"fOIeswaMU4","symbol":"⩟","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⩟ = { (⊄⩳↩((a⋳⪒a)+(155⋥≓≎a))) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_fOIeswaMU4(a):\n return op_8w2t5hMYqp(op_W4YGzv6Whe(op_12rbrZMWeM(a,a),op_Qy55tPpLXF(155,a)))\n","op_count_func":"def op_count_fOIeswaMU4(a):\n count = op_count_12rbrZMWeM(a,a)+op_count_Qy55tPpLXF(155,a)+op_count_W4YGzv6Whe(op_12rbrZMWeM(a,a),op_Qy55tPpLXF(155,a))+op_count_8w2t5hMYqp(op_W4YGzv6Whe(op_12rbrZMWeM(a,a),op_Qy55tPpLXF(155,a)))\n return count\n","dependencies":["W4YGzv6Whe","Qy55tPpLXF","8w2t5hMYqp","12rbrZMWeM"]} +{"id":255,"func_id":"DbCuESL50I","symbol":"⋼∭⪍","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⋼∭⪍a = { (≉((a∲⫓a)⪨≂(a⪒a))) , if (↽≂a)>481 ; (↽≂((↽≂435)≧⫂∧(↽≂a))) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_DbCuESL50I(a):\n if op_u6S6b8DprG(a) > 481:\n return op_e1ybzncUwg(op_sdazOOVcIp(op_i8ToyICDmI(a,a),op_f6k1SAg4EE(a,a)))\n else:\n return op_u6S6b8DprG(op_Ph9nP6C5qx(op_u6S6b8DprG(435),op_u6S6b8DprG(a)))\n","op_count_func":"def op_count_DbCuESL50I(a):\n if op_u6S6b8DprG(a) > 481:\n count = op_count_i8ToyICDmI(a,a)+op_count_f6k1SAg4EE(a,a)+op_count_sdazOOVcIp(op_i8ToyICDmI(a,a),op_f6k1SAg4EE(a,a))+op_count_e1ybzncUwg(op_sdazOOVcIp(op_i8ToyICDmI(a,a),op_f6k1SAg4EE(a,a)))+op_count_u6S6b8DprG(a)\n else:\n count = op_count_u6S6b8DprG(435)+op_count_u6S6b8DprG(a)+op_count_Ph9nP6C5qx(op_u6S6b8DprG(435),op_u6S6b8DprG(a))+op_count_u6S6b8DprG(op_Ph9nP6C5qx(op_u6S6b8DprG(435),op_u6S6b8DprG(a)))\n return count\n","dependencies":["e1ybzncUwg","sdazOOVcIp","Ph9nP6C5qx","f6k1SAg4EE","i8ToyICDmI","u6S6b8DprG"]} +{"id":256,"func_id":"pB6Fcnrjim","symbol":"⇙⪊","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⇙⪊a = { (633⊠≄⫣) , if (⩦⩻⨪a)>538 ; (a-a) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_pB6Fcnrjim(a):\n if op_2td37pGCOC(a) > 538:\n return op_DIvbN7qnHd(633)\n else:\n return op_rysDP5nf3Z(a,a)\n","op_count_func":"def op_count_pB6Fcnrjim(a):\n if op_2td37pGCOC(a) > 538:\n count = op_count_DIvbN7qnHd(633)+op_count_2td37pGCOC(a)\n else:\n count = op_count_rysDP5nf3Z(a,a)\n return count\n","dependencies":["DIvbN7qnHd","2td37pGCOC","rysDP5nf3Z"]} +{"id":257,"func_id":"bPywburJMS","symbol":"↼⊘⨖","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a↼⊘⨖b = { (-a) , if (∥⊫b)==149 ; (b⩷∴95) , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_bPywburJMS(a, b):\n if op_P8v4zCKN1o(b) == 149:\n return op_t8gj7n24qd(a)\n else:\n return op_9FxExcQeMw(b,95)\n","op_count_func":"def op_count_bPywburJMS(a, b):\n if op_P8v4zCKN1o(b) == 149:\n count = op_count_t8gj7n24qd(a)+op_count_P8v4zCKN1o(b)\n else:\n count = op_count_9FxExcQeMw(b,95)\n return count\n","dependencies":["9FxExcQeMw","P8v4zCKN1o","t8gj7n24qd"]} +{"id":258,"func_id":"Noe24qw2ks","symbol":"⨐","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⨐b = { (↽≂a) , if (a⨵⪆301)>43 ; (b⫡⨏a) , else }","definition_type":"branch_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_Noe24qw2ks(a, b):\n if op_2DQ55sFlQl(a,301) > 43:\n return op_u6S6b8DprG(a)\n else:\n return op_QMFrweE19q(b,a)\n","op_count_func":"def op_count_Noe24qw2ks(a, b):\n if op_2DQ55sFlQl(a,301) > 43:\n count = op_count_u6S6b8DprG(a)+op_count_2DQ55sFlQl(a,301)\n else:\n count = op_count_QMFrweE19q(b,a)\n return count\n","dependencies":["u6S6b8DprG","2DQ55sFlQl","QMFrweE19q"]} +{"id":259,"func_id":"0kmYd0q39Y","symbol":"⩦","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩦b = { (a⊉≛↸((a≋⫹)⫡⨏(b⨸⪁45))) }","definition_type":"simple_definition","priority":23,"associativity_direction":"left","op_compute_func":"def op_0kmYd0q39Y(a, b):\n return op_DZ8iAZOCBD(a,op_QMFrweE19q(op_N41Kp7NANJ(a),op_g55IO6H4Gj(b,45)))\n","op_count_func":"def op_count_0kmYd0q39Y(a, b):\n count = op_count_N41Kp7NANJ(a)+op_count_g55IO6H4Gj(b,45)+op_count_QMFrweE19q(op_N41Kp7NANJ(a),op_g55IO6H4Gj(b,45))+op_count_DZ8iAZOCBD(a,op_QMFrweE19q(op_N41Kp7NANJ(a),op_g55IO6H4Gj(b,45)))\n return count\n","dependencies":["N41Kp7NANJ","DZ8iAZOCBD","g55IO6H4Gj","QMFrweE19q"]} +{"id":260,"func_id":"k7HXdKtiEU","symbol":"⊲⪭","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊲⪭a = { (⨞⊢(a∲⫓0)) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_k7HXdKtiEU(a):\n return op_xUOZtlo3hN(op_i8ToyICDmI(a,0))\n","op_count_func":"def op_count_k7HXdKtiEU(a):\n count = op_count_i8ToyICDmI(a,0)+op_count_xUOZtlo3hN(op_i8ToyICDmI(a,0))\n return count\n","dependencies":["i8ToyICDmI","xUOZtlo3hN"]} +{"id":261,"func_id":"RHru8klgy8","symbol":"⊈","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⊈a = { (a⋳⪒a) , if a==61 ; (⨞⊢a) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_RHru8klgy8(a):\n if a == 61:\n return op_12rbrZMWeM(a,a)\n else:\n return op_xUOZtlo3hN(a)\n","op_count_func":"def op_count_RHru8klgy8(a):\n if a == 61:\n count = op_count_12rbrZMWeM(a,a)\n else:\n count = op_count_xUOZtlo3hN(a)\n return count\n","dependencies":["12rbrZMWeM","xUOZtlo3hN"]} +{"id":262,"func_id":"tfWHHpNKUN","symbol":"⇖","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⇖a = { (221⨵⪆a) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_tfWHHpNKUN(a):\n return op_2DQ55sFlQl(221,a)\n","op_count_func":"def op_count_tfWHHpNKUN(a):\n count = op_count_2DQ55sFlQl(221,a)\n return count\n","dependencies":["2DQ55sFlQl"]} +{"id":263,"func_id":"YjI8oCXuph","symbol":"⫇","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⫇a = { (((a⋥≓≎a)⋷(a⋳⪒a))≋⫹) , if a>62 ; (a-((a⨵⪆101)⪒(786∲⫓a))) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_YjI8oCXuph(a):\n if a > 62:\n return op_N41Kp7NANJ(op_23Mk6UjR3U(op_Qy55tPpLXF(a,a),op_12rbrZMWeM(a,a)))\n else:\n return op_rysDP5nf3Z(a,op_f6k1SAg4EE(op_2DQ55sFlQl(a,101),op_i8ToyICDmI(786,a)))\n","op_count_func":"def op_count_YjI8oCXuph(a):\n if a > 62:\n count = op_count_Qy55tPpLXF(a,a)+op_count_12rbrZMWeM(a,a)+op_count_23Mk6UjR3U(op_Qy55tPpLXF(a,a),op_12rbrZMWeM(a,a))+op_count_N41Kp7NANJ(op_23Mk6UjR3U(op_Qy55tPpLXF(a,a),op_12rbrZMWeM(a,a)))\n else:\n count = op_count_2DQ55sFlQl(a,101)+op_count_i8ToyICDmI(786,a)+op_count_f6k1SAg4EE(op_2DQ55sFlQl(a,101),op_i8ToyICDmI(786,a))+op_count_rysDP5nf3Z(a,op_f6k1SAg4EE(op_2DQ55sFlQl(a,101),op_i8ToyICDmI(786,a)))\n return count\n","dependencies":["rysDP5nf3Z","Qy55tPpLXF","N41Kp7NANJ","23Mk6UjR3U","2DQ55sFlQl","12rbrZMWeM","f6k1SAg4EE","i8ToyICDmI"]} +{"id":264,"func_id":"QiR2Oyf5Xj","symbol":"∷≠","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"∷≠a = { (71↺a) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_QiR2Oyf5Xj(a):\n return op_7j4O788W3g(71,a)\n","op_count_func":"def op_count_QiR2Oyf5Xj(a):\n count = op_count_7j4O788W3g(71,a)\n return count\n","dependencies":["7j4O788W3g"]} +{"id":265,"func_id":"5JYyxRJd4f","symbol":"⇞","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⇞ = { (a≧⫂∧((a⩷∴a)⨸⪁(a-a))) , if a<7 ; ((⨞⊢(a∲⫓a))⫡⨏(a⊉≛↸(a⇼⇔∾a))) , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_5JYyxRJd4f(a):\n if a < 7:\n return op_Ph9nP6C5qx(a,op_g55IO6H4Gj(op_9FxExcQeMw(a,a),op_rysDP5nf3Z(a,a)))\n else:\n return op_QMFrweE19q(op_xUOZtlo3hN(op_i8ToyICDmI(a,a)),op_DZ8iAZOCBD(a,op_tifHPKVTfV(a,a)))\n","op_count_func":"def op_count_5JYyxRJd4f(a):\n if a < 7:\n count = op_count_9FxExcQeMw(a,a)+op_count_rysDP5nf3Z(a,a)+op_count_g55IO6H4Gj(op_9FxExcQeMw(a,a),op_rysDP5nf3Z(a,a))+op_count_Ph9nP6C5qx(a,op_g55IO6H4Gj(op_9FxExcQeMw(a,a),op_rysDP5nf3Z(a,a)))\n else:\n count = op_count_i8ToyICDmI(a,a)+op_count_xUOZtlo3hN(op_i8ToyICDmI(a,a))+op_count_tifHPKVTfV(a,a)+op_count_DZ8iAZOCBD(a,op_tifHPKVTfV(a,a))+op_count_QMFrweE19q(op_xUOZtlo3hN(op_i8ToyICDmI(a,a)),op_DZ8iAZOCBD(a,op_tifHPKVTfV(a,a)))\n return count\n","dependencies":["9FxExcQeMw","rysDP5nf3Z","DZ8iAZOCBD","tifHPKVTfV","Ph9nP6C5qx","xUOZtlo3hN","g55IO6H4Gj","i8ToyICDmI","QMFrweE19q"]} +{"id":266,"func_id":"61wBmkZwlr","symbol":"≋","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"≋a = { (a↺a) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_61wBmkZwlr(a):\n return op_7j4O788W3g(a,a)\n","op_count_func":"def op_count_61wBmkZwlr(a):\n count = op_count_7j4O788W3g(a,a)\n return count\n","dependencies":["7j4O788W3g"]} +{"id":267,"func_id":"iuk5sVOGFA","symbol":"⪣⫩","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⪣⫩ = { ((a⋥≓≎a)⋷(a+a)) , if a>=275 ; ((a∲⫓a)≧⫂∧(⪲⇎693)) , else }","definition_type":"branch_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_iuk5sVOGFA(a):\n if a >= 275:\n return op_23Mk6UjR3U(op_Qy55tPpLXF(a,a),op_W4YGzv6Whe(a,a))\n else:\n return op_Ph9nP6C5qx(op_i8ToyICDmI(a,a),op_XPYlsWDdGa(693))\n","op_count_func":"def op_count_iuk5sVOGFA(a):\n if a >= 275:\n count = op_count_Qy55tPpLXF(a,a)+op_count_W4YGzv6Whe(a,a)+op_count_23Mk6UjR3U(op_Qy55tPpLXF(a,a),op_W4YGzv6Whe(a,a))\n else:\n count = op_count_i8ToyICDmI(a,a)+op_count_XPYlsWDdGa(693)+op_count_Ph9nP6C5qx(op_i8ToyICDmI(a,a),op_XPYlsWDdGa(693))\n return count\n","dependencies":["W4YGzv6Whe","Qy55tPpLXF","XPYlsWDdGa","23Mk6UjR3U","Ph9nP6C5qx","i8ToyICDmI"]} +{"id":268,"func_id":"2Wsdkap16l","symbol":"⩹","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a⩹b = { (b-((b⨳⩥⨓b)⨸⪁(1⋝⋈⪟b))) , if (b⇋≉)!=246 ; (((a⇋≉)⨰(a⋷a))⋳⪒((a⩚⊴⇥a)⨳⩥⨓(a≧⫂∧a))) , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_2Wsdkap16l(a, b):\n if op_XIabStNQrY(b) != 246:\n return op_rysDP5nf3Z(b,op_g55IO6H4Gj(op_nCS4ZIUYfx(b,b),op_2DDjHMKMc0(1,b)))\n else:\n return op_12rbrZMWeM(op_eewbuw0ToL(op_XIabStNQrY(a),op_23Mk6UjR3U(a,a)),op_nCS4ZIUYfx(op_NTOWxs364D(a,a),op_Ph9nP6C5qx(a,a)))\n","op_count_func":"def op_count_2Wsdkap16l(a, b):\n if op_XIabStNQrY(b) != 246:\n count = op_count_nCS4ZIUYfx(b,b)+op_count_2DDjHMKMc0(1,b)+op_count_g55IO6H4Gj(op_nCS4ZIUYfx(b,b),op_2DDjHMKMc0(1,b))+op_count_rysDP5nf3Z(b,op_g55IO6H4Gj(op_nCS4ZIUYfx(b,b),op_2DDjHMKMc0(1,b)))+op_count_XIabStNQrY(b)\n else:\n count = op_count_XIabStNQrY(a)+op_count_23Mk6UjR3U(a,a)+op_count_eewbuw0ToL(op_XIabStNQrY(a),op_23Mk6UjR3U(a,a))+op_count_NTOWxs364D(a,a)+op_count_Ph9nP6C5qx(a,a)+op_count_nCS4ZIUYfx(op_NTOWxs364D(a,a),op_Ph9nP6C5qx(a,a))+op_count_12rbrZMWeM(op_eewbuw0ToL(op_XIabStNQrY(a),op_23Mk6UjR3U(a,a)),op_nCS4ZIUYfx(op_NTOWxs364D(a,a),op_Ph9nP6C5qx(a,a)))\n return count\n","dependencies":["rysDP5nf3Z","NTOWxs364D","23Mk6UjR3U","XIabStNQrY","2DDjHMKMc0","12rbrZMWeM","Ph9nP6C5qx","g55IO6H4Gj","eewbuw0ToL","nCS4ZIUYfx"]} +{"id":269,"func_id":"40aOVDgCDB","symbol":"⊢","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a⊢ = { a , if a<=675 ; (a⩚⊴⇥126) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_40aOVDgCDB(a):\n if a <= 675:\n return a\n else:\n return op_NTOWxs364D(a,126)\n","op_count_func":"def op_count_40aOVDgCDB(a):\n if a <= 675:\n count = 1\n else:\n count = op_count_NTOWxs364D(a,126)\n return count\n","dependencies":["NTOWxs364D"]} +{"id":270,"func_id":"RygbFNSyEJ","symbol":"≦↸","n_ary":2,"unary_position":null,"n_order":1,"is_base":null,"definition":"a≦↸b = { (((≤/a)⋳⪒(b⊉≛↸a))⋝⋈⪟((a⇋≉)⨸⪁(≉a))) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_RygbFNSyEJ(a, b):\n return op_2DDjHMKMc0(op_12rbrZMWeM(op_eLAdDNolq6(a),op_DZ8iAZOCBD(b,a)),op_g55IO6H4Gj(op_XIabStNQrY(a),op_e1ybzncUwg(a)))\n","op_count_func":"def op_count_RygbFNSyEJ(a, b):\n count = op_count_eLAdDNolq6(a)+op_count_DZ8iAZOCBD(b,a)+op_count_12rbrZMWeM(op_eLAdDNolq6(a),op_DZ8iAZOCBD(b,a))+op_count_XIabStNQrY(a)+op_count_e1ybzncUwg(a)+op_count_g55IO6H4Gj(op_XIabStNQrY(a),op_e1ybzncUwg(a))+op_count_2DDjHMKMc0(op_12rbrZMWeM(op_eLAdDNolq6(a),op_DZ8iAZOCBD(b,a)),op_g55IO6H4Gj(op_XIabStNQrY(a),op_e1ybzncUwg(a)))\n return count\n","dependencies":["eLAdDNolq6","e1ybzncUwg","DZ8iAZOCBD","XIabStNQrY","12rbrZMWeM","2DDjHMKMc0","g55IO6H4Gj"]} +{"id":271,"func_id":"uPb5QRN0te","symbol":"↫","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a↫ = { (a∲⫓a) , if (-a)>=333 ; (a⨵⪆a) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_uPb5QRN0te(a):\n if op_t8gj7n24qd(a) >= 333:\n return op_i8ToyICDmI(a,a)\n else:\n return op_2DQ55sFlQl(a,a)\n","op_count_func":"def op_count_uPb5QRN0te(a):\n if op_t8gj7n24qd(a) >= 333:\n count = op_count_i8ToyICDmI(a,a)+op_count_t8gj7n24qd(a)\n else:\n count = op_count_2DQ55sFlQl(a,a)\n return count\n","dependencies":["i8ToyICDmI","2DQ55sFlQl","t8gj7n24qd"]} +{"id":272,"func_id":"VJ330n2nnx","symbol":"↬⩅∪","n_ary":1,"unary_position":"postfix","n_order":1,"is_base":null,"definition":"a↬⩅∪ = { (a≦≮≮) , if (↽≂a)!=185 or a>=376 or a<=585 ; (a⋷a) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_VJ330n2nnx(a):\n if op_u6S6b8DprG(a) != 185 or a >= 376 or a <= 585:\n return op_D4vGDi5EA2(a)\n else:\n return op_23Mk6UjR3U(a,a)\n","op_count_func":"def op_count_VJ330n2nnx(a):\n if op_u6S6b8DprG(a) != 185 or a >= 376 or a <= 585:\n count = op_count_D4vGDi5EA2(a)+op_count_u6S6b8DprG(a)\n else:\n count = op_count_23Mk6UjR3U(a,a)\n return count\n","dependencies":["D4vGDi5EA2","23Mk6UjR3U","u6S6b8DprG"]} +{"id":273,"func_id":"WkeUrDK8WX","symbol":"⩰","n_ary":1,"unary_position":"prefix","n_order":1,"is_base":null,"definition":"⩰a = { (((a⨸⪁500)⩤)+(a∲⫓(⨞⊢a))) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_WkeUrDK8WX(a):\n return op_W4YGzv6Whe(op_Z2TMIBDE3Q(op_g55IO6H4Gj(a,500)),op_i8ToyICDmI(a,op_xUOZtlo3hN(a)))\n","op_count_func":"def op_count_WkeUrDK8WX(a):\n count = op_count_g55IO6H4Gj(a,500)+op_count_Z2TMIBDE3Q(op_g55IO6H4Gj(a,500))+op_count_xUOZtlo3hN(a)+op_count_i8ToyICDmI(a,op_xUOZtlo3hN(a))+op_count_W4YGzv6Whe(op_Z2TMIBDE3Q(op_g55IO6H4Gj(a,500)),op_i8ToyICDmI(a,op_xUOZtlo3hN(a)))\n return count\n","dependencies":["W4YGzv6Whe","xUOZtlo3hN","Z2TMIBDE3Q","g55IO6H4Gj","i8ToyICDmI"]} +{"id":274,"func_id":"hTbEZDJLEm","symbol":"∟","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a∟ = { ((58∺≝⩲a)⇌⫙⪟(a⊪)) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_hTbEZDJLEm(a):\n return op_AFVx7xoS7T(op_KPf6cnQVty(58,a),op_zVYPLywUTj(a))\n","op_count_func":"def op_count_hTbEZDJLEm(a):\n count = op_count_KPf6cnQVty(58,a)+op_count_zVYPLywUTj(a)+op_count_AFVx7xoS7T(op_KPf6cnQVty(58,a),op_zVYPLywUTj(a))\n return count\n","dependencies":["KPf6cnQVty","zVYPLywUTj","AFVx7xoS7T"]} +{"id":275,"func_id":"RZ5CV9rWsJ","symbol":"⩖⊿","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⩖⊿b = { ((b⪔⊥a)⪮%⊝(a∌125)) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_RZ5CV9rWsJ(a, b):\n return op_IWmyXbctLI(op_HJ9erzHUuu(b,a),op_8cLx32lpNA(a,125))\n","op_count_func":"def op_count_RZ5CV9rWsJ(a, b):\n count = op_count_HJ9erzHUuu(b,a)+op_count_8cLx32lpNA(a,125)+op_count_IWmyXbctLI(op_HJ9erzHUuu(b,a),op_8cLx32lpNA(a,125))\n return count\n","dependencies":["HJ9erzHUuu","IWmyXbctLI","8cLx32lpNA"]} +{"id":276,"func_id":"3DZMoQKiUl","symbol":"≱⇩⩕","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"≱⇩⩕a = { (((a⋳⪒a)⊭∹↮)⇌⫙⪟a) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_3DZMoQKiUl(a):\n return op_AFVx7xoS7T(op_xNBdhnnwKq(op_12rbrZMWeM(a,a)),a)\n","op_count_func":"def op_count_3DZMoQKiUl(a):\n count = op_count_12rbrZMWeM(a,a)+op_count_xNBdhnnwKq(op_12rbrZMWeM(a,a))+op_count_AFVx7xoS7T(op_xNBdhnnwKq(op_12rbrZMWeM(a,a)),a)\n return count\n","dependencies":["AFVx7xoS7T","12rbrZMWeM","xNBdhnnwKq"]} +{"id":277,"func_id":"9samAPKr6k","symbol":"⨽∌","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨽∌b = { ((≦∁(b⪮%⊝b))⪇≇⋚((b⇤a)≧⫂∧(⫇a))) }","definition_type":"simple_definition","priority":23,"associativity_direction":"left","op_compute_func":"def op_9samAPKr6k(a, b):\n return op_3sJ7IOPOlU(op_9ICcGScMcE(op_IWmyXbctLI(b,b)),op_Ph9nP6C5qx(op_YSKBFp38Pu(b,a),op_YjI8oCXuph(a)))\n","op_count_func":"def op_count_9samAPKr6k(a, b):\n count = op_count_IWmyXbctLI(b,b)+op_count_9ICcGScMcE(op_IWmyXbctLI(b,b))+op_count_YSKBFp38Pu(b,a)+op_count_YjI8oCXuph(a)+op_count_Ph9nP6C5qx(op_YSKBFp38Pu(b,a),op_YjI8oCXuph(a))+op_count_3sJ7IOPOlU(op_9ICcGScMcE(op_IWmyXbctLI(b,b)),op_Ph9nP6C5qx(op_YSKBFp38Pu(b,a),op_YjI8oCXuph(a)))\n return count\n","dependencies":["YjI8oCXuph","9ICcGScMcE","3sJ7IOPOlU","Ph9nP6C5qx","IWmyXbctLI","YSKBFp38Pu"]} +{"id":278,"func_id":"5GqDbVmqXU","symbol":"⩁","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⩁ = { ((↩a)∌(a↺a)) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_5GqDbVmqXU(a):\n return op_8cLx32lpNA(op_jLgFTUHLKL(a),op_7j4O788W3g(a,a))\n","op_count_func":"def op_count_5GqDbVmqXU(a):\n count = op_count_jLgFTUHLKL(a)+op_count_7j4O788W3g(a,a)+op_count_8cLx32lpNA(op_jLgFTUHLKL(a),op_7j4O788W3g(a,a))\n return count\n","dependencies":["7j4O788W3g","jLgFTUHLKL","8cLx32lpNA"]} +{"id":279,"func_id":"wxb3vTeyAj","symbol":"⫶⊄≣","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⫶⊄≣a = { (≤/((a⨽a)⊍)) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_wxb3vTeyAj(a):\n return op_eLAdDNolq6(op_3nqY3DE9mg(op_8HhzD0ZcuI(a,a)))\n","op_count_func":"def op_count_wxb3vTeyAj(a):\n count = op_count_8HhzD0ZcuI(a,a)+op_count_3nqY3DE9mg(op_8HhzD0ZcuI(a,a))+op_count_eLAdDNolq6(op_3nqY3DE9mg(op_8HhzD0ZcuI(a,a)))\n return count\n","dependencies":["eLAdDNolq6","3nqY3DE9mg","8HhzD0ZcuI"]} +{"id":280,"func_id":"F4yD0voBRQ","symbol":"⇣⩺⋵","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⇣⩺⋵b = { (((a⩨565)∺≝⩲(5⨸⪁a))⩚⊴⇥(↯⪼(a⋳⪒b))) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_F4yD0voBRQ(a, b):\n return op_NTOWxs364D(op_KPf6cnQVty(op_2DlMacCsIx(a,565),op_g55IO6H4Gj(5,a)),op_8jW3W4yZS5(op_12rbrZMWeM(a,b)))\n","op_count_func":"def op_count_F4yD0voBRQ(a, b):\n count = op_count_2DlMacCsIx(a,565)+op_count_g55IO6H4Gj(5,a)+op_count_KPf6cnQVty(op_2DlMacCsIx(a,565),op_g55IO6H4Gj(5,a))+op_count_12rbrZMWeM(a,b)+op_count_8jW3W4yZS5(op_12rbrZMWeM(a,b))+op_count_NTOWxs364D(op_KPf6cnQVty(op_2DlMacCsIx(a,565),op_g55IO6H4Gj(5,a)),op_8jW3W4yZS5(op_12rbrZMWeM(a,b)))\n return count\n","dependencies":["NTOWxs364D","KPf6cnQVty","8jW3W4yZS5","12rbrZMWeM","g55IO6H4Gj","2DlMacCsIx"]} +{"id":281,"func_id":"vkpjKywKVM","symbol":"⇮⋭","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⇮⋭b = { (((⊖b)⊢)≎⊠⪸((a≃b)⇼⇔∾(47∇⊂⋱106))) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_vkpjKywKVM(a, b):\n return op_bJkvcejdHO(op_40aOVDgCDB(op_U6pG0PXrV3(b)),op_tifHPKVTfV(op_YbVcJGFEVW(a,b),op_nhYeJWJD5X(47,106)))\n","op_count_func":"def op_count_vkpjKywKVM(a, b):\n count = op_count_U6pG0PXrV3(b)+op_count_40aOVDgCDB(op_U6pG0PXrV3(b))+op_count_YbVcJGFEVW(a,b)+op_count_nhYeJWJD5X(47,106)+op_count_tifHPKVTfV(op_YbVcJGFEVW(a,b),op_nhYeJWJD5X(47,106))+op_count_bJkvcejdHO(op_40aOVDgCDB(op_U6pG0PXrV3(b)),op_tifHPKVTfV(op_YbVcJGFEVW(a,b),op_nhYeJWJD5X(47,106)))\n return count\n","dependencies":["nhYeJWJD5X","U6pG0PXrV3","tifHPKVTfV","bJkvcejdHO","40aOVDgCDB","YbVcJGFEVW"]} +{"id":282,"func_id":"ukq6epAj5P","symbol":"∋","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a∋b = { ((≋a)∠↢(b⪄a)) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_ukq6epAj5P(a, b):\n return op_KbjG8mgYpV(op_61wBmkZwlr(a),op_SUmda5xLS4(b,a))\n","op_count_func":"def op_count_ukq6epAj5P(a, b):\n count = op_count_61wBmkZwlr(a)+op_count_SUmda5xLS4(b,a)+op_count_KbjG8mgYpV(op_61wBmkZwlr(a),op_SUmda5xLS4(b,a))\n return count\n","dependencies":["SUmda5xLS4","61wBmkZwlr","KbjG8mgYpV"]} +{"id":283,"func_id":"cHh1gJQ2o6","symbol":"⩘","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⩘b = { (((b⋷b)↼⊘⨖(a⊢6))∺≝⩲((a⪒⊣⊆619)≃(a⊪))) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_cHh1gJQ2o6(a, b):\n return op_KPf6cnQVty(op_bPywburJMS(op_23Mk6UjR3U(b,b),op_5twsqlHp2o(a,6)),op_YbVcJGFEVW(op_eRqsBgTDFp(a,619),op_zVYPLywUTj(a)))\n","op_count_func":"def op_count_cHh1gJQ2o6(a, b):\n count = op_count_23Mk6UjR3U(b,b)+op_count_5twsqlHp2o(a,6)+op_count_bPywburJMS(op_23Mk6UjR3U(b,b),op_5twsqlHp2o(a,6))+op_count_eRqsBgTDFp(a,619)+op_count_zVYPLywUTj(a)+op_count_YbVcJGFEVW(op_eRqsBgTDFp(a,619),op_zVYPLywUTj(a))+op_count_KPf6cnQVty(op_bPywburJMS(op_23Mk6UjR3U(b,b),op_5twsqlHp2o(a,6)),op_YbVcJGFEVW(op_eRqsBgTDFp(a,619),op_zVYPLywUTj(a)))\n return count\n","dependencies":["23Mk6UjR3U","eRqsBgTDFp","zVYPLywUTj","bPywburJMS","KPf6cnQVty","YbVcJGFEVW","5twsqlHp2o"]} +{"id":284,"func_id":"grXIztHqDa","symbol":"⪃↞⩐","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⪃↞⩐ = { ((a→⨶⪴a)≠≀(a↪⪝)) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_grXIztHqDa(a):\n return op_IwW236VD4Y(op_bF6eod5Gvf(a,a),op_l07mrZUIn9(a))\n","op_count_func":"def op_count_grXIztHqDa(a):\n count = op_count_bF6eod5Gvf(a,a)+op_count_l07mrZUIn9(a)+op_count_IwW236VD4Y(op_bF6eod5Gvf(a,a),op_l07mrZUIn9(a))\n return count\n","dependencies":["IwW236VD4Y","bF6eod5Gvf","l07mrZUIn9"]} +{"id":285,"func_id":"Z5CJsN7DuW","symbol":"↨⩢⫨","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"↨⩢⫨a = { (((211⨐a)⇌⫙⪟(↯⪼a))⊘) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_Z5CJsN7DuW(a):\n return op_gu96TGCTMs(op_AFVx7xoS7T(op_Noe24qw2ks(211,a),op_8jW3W4yZS5(a)))\n","op_count_func":"def op_count_Z5CJsN7DuW(a):\n count = op_count_Noe24qw2ks(211,a)+op_count_8jW3W4yZS5(a)+op_count_AFVx7xoS7T(op_Noe24qw2ks(211,a),op_8jW3W4yZS5(a))+op_count_gu96TGCTMs(op_AFVx7xoS7T(op_Noe24qw2ks(211,a),op_8jW3W4yZS5(a)))\n return count\n","dependencies":["Noe24qw2ks","gu96TGCTMs","8jW3W4yZS5","AFVx7xoS7T"]} +{"id":286,"func_id":"03sUfWo75k","symbol":"⊟⇱","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⊟⇱ = { (a⪮%⊝a) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_03sUfWo75k(a):\n return op_IWmyXbctLI(a,a)\n","op_count_func":"def op_count_03sUfWo75k(a):\n count = op_count_IWmyXbctLI(a,a)\n return count\n","dependencies":["IWmyXbctLI"]} +{"id":287,"func_id":"BThhyOhh10","symbol":"↑","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a↑ = { ((a∲⫓a)⇄(262⊭∹↮)) }","definition_type":"simple_definition","priority":21,"associativity_direction":"left","op_compute_func":"def op_BThhyOhh10(a):\n return op_3EYGwJThht(op_i8ToyICDmI(a,a),op_xNBdhnnwKq(262))\n","op_count_func":"def op_count_BThhyOhh10(a):\n count = op_count_i8ToyICDmI(a,a)+op_count_xNBdhnnwKq(262)+op_count_3EYGwJThht(op_i8ToyICDmI(a,a),op_xNBdhnnwKq(262))\n return count\n","dependencies":["i8ToyICDmI","3EYGwJThht","xNBdhnnwKq"]} +{"id":288,"func_id":"wvHyciQT5X","symbol":"⩘","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⩘ = { (≦∁(a⫚↹⊑129)) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_wvHyciQT5X(a):\n return op_9ICcGScMcE(op_dfKe02y8D2(a,129))\n","op_count_func":"def op_count_wvHyciQT5X(a):\n count = op_count_dfKe02y8D2(a,129)+op_count_9ICcGScMcE(op_dfKe02y8D2(a,129))\n return count\n","dependencies":["9ICcGScMcE","dfKe02y8D2"]} +{"id":289,"func_id":"Loh9y4A90B","symbol":"⇚⪠","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⇚⪠ = { ((a∘(a∈))*a) }","definition_type":"simple_definition","priority":21,"associativity_direction":"left","op_compute_func":"def op_Loh9y4A90B(a):\n return op_9HNa5Wba9A(op_Z5m6OM72h2(a,op_ztP7wcbY7m(a)),a)\n","op_count_func":"def op_count_Loh9y4A90B(a):\n count = op_count_ztP7wcbY7m(a)+op_count_Z5m6OM72h2(a,op_ztP7wcbY7m(a))+op_count_9HNa5Wba9A(op_Z5m6OM72h2(a,op_ztP7wcbY7m(a)),a)\n return count\n","dependencies":["Z5m6OM72h2","9HNa5Wba9A","ztP7wcbY7m"]} +{"id":290,"func_id":"k4iM1060OG","symbol":"∀⊥⇻","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a∀⊥⇻ = { ((a∠⫱a)/(a⊝⪿⪼a)) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_k4iM1060OG(a):\n return op_XhwjNDsVaA(op_QvoQhV0rrE(a,a),op_3Oe9XWJUTD(a,a))\n","op_count_func":"def op_count_k4iM1060OG(a):\n count = op_count_QvoQhV0rrE(a,a)+op_count_3Oe9XWJUTD(a,a)+op_count_XhwjNDsVaA(op_QvoQhV0rrE(a,a),op_3Oe9XWJUTD(a,a))\n return count\n","dependencies":["QvoQhV0rrE","XhwjNDsVaA","3Oe9XWJUTD"]} +{"id":291,"func_id":"6NJAcO2OWT","symbol":"⪛⨧","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⪛⨧a = { (a+a) , if (a⪠⩆⊳)>=98 ; (a≫≃) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_6NJAcO2OWT(a):\n if op_JLbD19bQDL(a) >= 98:\n return op_W4YGzv6Whe(a,a)\n else:\n return op_X99M06cbEe(a)\n","op_count_func":"def op_count_6NJAcO2OWT(a):\n if op_JLbD19bQDL(a) >= 98:\n count = op_count_W4YGzv6Whe(a,a)+op_count_JLbD19bQDL(a)\n else:\n count = op_count_X99M06cbEe(a)\n return count\n","dependencies":["JLbD19bQDL","W4YGzv6Whe","X99M06cbEe"]} +{"id":292,"func_id":"7YooWSwCyH","symbol":"∪⫐","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a∪⫐b = { ((a⋝⋈⪟b)⨎a) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_7YooWSwCyH(a, b):\n return op_rJVOvQCfKK(op_2DDjHMKMc0(a,b),a)\n","op_count_func":"def op_count_7YooWSwCyH(a, b):\n count = op_count_2DDjHMKMc0(a,b)+op_count_rJVOvQCfKK(op_2DDjHMKMc0(a,b),a)\n return count\n","dependencies":["rJVOvQCfKK","2DDjHMKMc0"]} +{"id":293,"func_id":"s1XTVnmDOJ","symbol":"≓∲","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a≓∲b = { (≦∁(a⨜⨶(a⨳⩥⨓a))) , if ((⋃b)>775 or (a⊢476)>56) ; (((a⨜⨶b)⇤(77/135))-a) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_s1XTVnmDOJ(a, b):\n if (op_3mBM5G4a3l(b) > 775 or op_5twsqlHp2o(a,476) > 56):\n return op_9ICcGScMcE(op_HiPekx5b7W(a,op_nCS4ZIUYfx(a,a)))\n else:\n return op_rysDP5nf3Z(op_YSKBFp38Pu(op_HiPekx5b7W(a,b),op_XhwjNDsVaA(77,135)),a)\n","op_count_func":"def op_count_s1XTVnmDOJ(a, b):\n if (op_3mBM5G4a3l(b) > 775 or op_5twsqlHp2o(a,476) > 56):\n count = op_count_nCS4ZIUYfx(a,a)+op_count_HiPekx5b7W(a,op_nCS4ZIUYfx(a,a))+op_count_9ICcGScMcE(op_HiPekx5b7W(a,op_nCS4ZIUYfx(a,a)))+op_count_3mBM5G4a3l(b)+op_count_5twsqlHp2o(a,476)\n else:\n count = op_count_HiPekx5b7W(a,b)+op_count_XhwjNDsVaA(77,135)+op_count_YSKBFp38Pu(op_HiPekx5b7W(a,b),op_XhwjNDsVaA(77,135))+op_count_rysDP5nf3Z(op_YSKBFp38Pu(op_HiPekx5b7W(a,b),op_XhwjNDsVaA(77,135)),a)\n return count\n","dependencies":["HiPekx5b7W","rysDP5nf3Z","9ICcGScMcE","XhwjNDsVaA","3mBM5G4a3l","5twsqlHp2o","nCS4ZIUYfx","YSKBFp38Pu"]} +{"id":294,"func_id":"XwDhCwWbUn","symbol":"⇜⊴","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⇜⊴a = { (↩(∓⪦(a≃a))) , if ((a∐⫣)>271 and (a∴779)<=132) ; ((a↢(a⨔⇊a))⊲⩕⊾((a∝a)⊉↱≁(a⊭↱19))) , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_XwDhCwWbUn(a):\n if (op_4CyGpkTkEk(a) > 271 and op_hrf7POJlIJ(a,779) <= 132):\n return op_jLgFTUHLKL(op_D309nIvmXG(op_YbVcJGFEVW(a,a)))\n else:\n return op_DmTXOeWf9t(op_WR6HLWljOP(a,op_JclMnS0uGI(a,a)),op_w2P8NbNXyL(op_cTDWOvIxvz(a,a),op_COABgblf1C(a,19)))\n","op_count_func":"def op_count_XwDhCwWbUn(a):\n if (op_4CyGpkTkEk(a) > 271 and op_hrf7POJlIJ(a,779) <= 132):\n count = op_count_YbVcJGFEVW(a,a)+op_count_D309nIvmXG(op_YbVcJGFEVW(a,a))+op_count_jLgFTUHLKL(op_D309nIvmXG(op_YbVcJGFEVW(a,a)))+op_count_4CyGpkTkEk(a)+op_count_hrf7POJlIJ(a,779)\n else:\n count = op_count_JclMnS0uGI(a,a)+op_count_WR6HLWljOP(a,op_JclMnS0uGI(a,a))+op_count_cTDWOvIxvz(a,a)+op_count_COABgblf1C(a,19)+op_count_w2P8NbNXyL(op_cTDWOvIxvz(a,a),op_COABgblf1C(a,19))+op_count_DmTXOeWf9t(op_WR6HLWljOP(a,op_JclMnS0uGI(a,a)),op_w2P8NbNXyL(op_cTDWOvIxvz(a,a),op_COABgblf1C(a,19)))\n return count\n","dependencies":["WR6HLWljOP","JclMnS0uGI","D309nIvmXG","w2P8NbNXyL","YbVcJGFEVW","DmTXOeWf9t","4CyGpkTkEk","cTDWOvIxvz","jLgFTUHLKL","COABgblf1C","hrf7POJlIJ"]} +{"id":295,"func_id":"Qtd6bqUJcN","symbol":"≪","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"≪a = { ((431⫃⨇a)⪣⫩) , if (a⊍)!=211 or (a⇐≅)==294 ; (↔(a⇼⇔∾a)) , else }","definition_type":"branch_definition","priority":24,"associativity_direction":"right","op_compute_func":"def op_Qtd6bqUJcN(a):\n if op_3nqY3DE9mg(a) != 211 or op_wEfv7U73WA(a) == 294:\n return op_iuk5sVOGFA(op_09Ly4LVMIf(431,a))\n else:\n return op_ruOEQAzv1W(op_tifHPKVTfV(a,a))\n","op_count_func":"def op_count_Qtd6bqUJcN(a):\n if op_3nqY3DE9mg(a) != 211 or op_wEfv7U73WA(a) == 294:\n count = op_count_09Ly4LVMIf(431,a)+op_count_iuk5sVOGFA(op_09Ly4LVMIf(431,a))+op_count_3nqY3DE9mg(a)+op_count_wEfv7U73WA(a)\n else:\n count = op_count_tifHPKVTfV(a,a)+op_count_ruOEQAzv1W(op_tifHPKVTfV(a,a))\n return count\n","dependencies":["3nqY3DE9mg","09Ly4LVMIf","wEfv7U73WA","tifHPKVTfV","ruOEQAzv1W","iuk5sVOGFA"]} +{"id":296,"func_id":"diKm42VcIt","symbol":"⇉⇉","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⇉⇉ = { (⪸(⨞⊢(a≦↸a))) , if (a⪣⫩)!=30 ; (a%(⪲⇎(a⇌⫙⪟156))) , else }","definition_type":"branch_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_diKm42VcIt(a):\n if op_iuk5sVOGFA(a) != 30:\n return op_86A5ENbKR9(op_xUOZtlo3hN(op_RygbFNSyEJ(a,a)))\n else:\n return op_k8jYdgA6NY(a,op_XPYlsWDdGa(op_AFVx7xoS7T(a,156)))\n","op_count_func":"def op_count_diKm42VcIt(a):\n if op_iuk5sVOGFA(a) != 30:\n count = op_count_RygbFNSyEJ(a,a)+op_count_xUOZtlo3hN(op_RygbFNSyEJ(a,a))+op_count_86A5ENbKR9(op_xUOZtlo3hN(op_RygbFNSyEJ(a,a)))+op_count_iuk5sVOGFA(a)\n else:\n count = op_count_AFVx7xoS7T(a,156)+op_count_XPYlsWDdGa(op_AFVx7xoS7T(a,156))+op_count_k8jYdgA6NY(a,op_XPYlsWDdGa(op_AFVx7xoS7T(a,156)))\n return count\n","dependencies":["RygbFNSyEJ","XPYlsWDdGa","k8jYdgA6NY","xUOZtlo3hN","AFVx7xoS7T","iuk5sVOGFA","86A5ENbKR9"]} +{"id":297,"func_id":"hyuBjUqXlG","symbol":"⪛⫼","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪛⫼b = { (((↸⊣b)⫡⨏(⊿b))⫸⊐(≦∁(↥a))) , if (a⇟⨁⪰)!=192 ; (((b⊨a)⪛b)⨐((37⪔⊥b)∴(11⫚↹⊑395))) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_hyuBjUqXlG(a, b):\n if op_BX1lVwlMe0(a) != 192:\n return op_mqXw5SEYmG(op_QMFrweE19q(op_wztAlM01eG(b),op_DO4fhlbJSI(b)),op_9ICcGScMcE(op_A8NUZmVepG(a)))\n else:\n return op_Noe24qw2ks(op_uFcxV4UQCh(op_vg4gO5BX6G(b,a),b),op_hrf7POJlIJ(op_HJ9erzHUuu(37,b),op_dfKe02y8D2(11,395)))\n","op_count_func":"def op_count_hyuBjUqXlG(a, b):\n if op_BX1lVwlMe0(a) != 192:\n count = op_count_wztAlM01eG(b)+op_count_DO4fhlbJSI(b)+op_count_QMFrweE19q(op_wztAlM01eG(b),op_DO4fhlbJSI(b))+op_count_A8NUZmVepG(a)+op_count_9ICcGScMcE(op_A8NUZmVepG(a))+op_count_mqXw5SEYmG(op_QMFrweE19q(op_wztAlM01eG(b),op_DO4fhlbJSI(b)),op_9ICcGScMcE(op_A8NUZmVepG(a)))+op_count_BX1lVwlMe0(a)\n else:\n count = op_count_vg4gO5BX6G(b,a)+op_count_uFcxV4UQCh(op_vg4gO5BX6G(b,a),b)+op_count_HJ9erzHUuu(37,b)+op_count_dfKe02y8D2(11,395)+op_count_hrf7POJlIJ(op_HJ9erzHUuu(37,b),op_dfKe02y8D2(11,395))+op_count_Noe24qw2ks(op_uFcxV4UQCh(op_vg4gO5BX6G(b,a),b),op_hrf7POJlIJ(op_HJ9erzHUuu(37,b),op_dfKe02y8D2(11,395)))\n return count\n","dependencies":["HJ9erzHUuu","9ICcGScMcE","DO4fhlbJSI","BX1lVwlMe0","Noe24qw2ks","uFcxV4UQCh","A8NUZmVepG","vg4gO5BX6G","dfKe02y8D2","hrf7POJlIJ","mqXw5SEYmG","QMFrweE19q","wztAlM01eG"]} +{"id":298,"func_id":"wscyQdcy20","symbol":"⫦⪉","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⫦⪉b = { ((a⩌⋺206)⪹) , if (a∷677)>=23 ; ((b+a)*(b⨚b)) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_wscyQdcy20(a, b):\n if op_D3AQDKkPcf(a,677) >= 23:\n return op_B3sABdIn96(op_g7Hmc5v1ko(a,206))\n else:\n return op_9HNa5Wba9A(op_W4YGzv6Whe(b,a),op_nREPSIbpBE(b,b))\n","op_count_func":"def op_count_wscyQdcy20(a, b):\n if op_D3AQDKkPcf(a,677) >= 23:\n count = op_count_g7Hmc5v1ko(a,206)+op_count_B3sABdIn96(op_g7Hmc5v1ko(a,206))+op_count_D3AQDKkPcf(a,677)\n else:\n count = op_count_W4YGzv6Whe(b,a)+op_count_nREPSIbpBE(b,b)+op_count_9HNa5Wba9A(op_W4YGzv6Whe(b,a),op_nREPSIbpBE(b,b))\n return count\n","dependencies":["W4YGzv6Whe","B3sABdIn96","9HNa5Wba9A","g7Hmc5v1ko","nREPSIbpBE","D3AQDKkPcf"]} +{"id":299,"func_id":"7p6YLioM7f","symbol":"⊅","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⊅ = { ((a⪄a)⊨(517⪚a)) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_7p6YLioM7f(a):\n return op_vg4gO5BX6G(op_SUmda5xLS4(a,a),op_HrjLwUk87U(517,a))\n","op_count_func":"def op_count_7p6YLioM7f(a):\n count = op_count_SUmda5xLS4(a,a)+op_count_HrjLwUk87U(517,a)+op_count_vg4gO5BX6G(op_SUmda5xLS4(a,a),op_HrjLwUk87U(517,a))\n return count\n","dependencies":["SUmda5xLS4","vg4gO5BX6G","HrjLwUk87U"]} +{"id":300,"func_id":"j6NVkjMzuk","symbol":"⨀⨒","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⨀⨒ = { ((a⪘⫢a)⊔(a⪘⫢a)) , if a!=184 ; ((a⩧⪆a)∙∹∝a) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_j6NVkjMzuk(a):\n if a != 184:\n return op_E4l6HwMY31(op_oacrs7FA3X(a,a),op_oacrs7FA3X(a,a))\n else:\n return op_HmxsFra2vL(op_Ikt5ks8PT7(a,a),a)\n","op_count_func":"def op_count_j6NVkjMzuk(a):\n if a != 184:\n count = op_count_oacrs7FA3X(a,a)+op_count_oacrs7FA3X(a,a)+op_count_E4l6HwMY31(op_oacrs7FA3X(a,a),op_oacrs7FA3X(a,a))\n else:\n count = op_count_Ikt5ks8PT7(a,a)+op_count_HmxsFra2vL(op_Ikt5ks8PT7(a,a),a)\n return count\n","dependencies":["E4l6HwMY31","Ikt5ks8PT7","HmxsFra2vL","oacrs7FA3X"]} +{"id":301,"func_id":"h92wMvzauj","symbol":"⨑⩅≇","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨑⩅≇b = { (((a⪇≇⋚b)⊬⨰(b⨽582))∌↝a) , if (↽≂a)<10 or (b⊭∹↮)==22 ; ((a⊲⩕⊾(↩a))⪕((a⨚243)⇌⫙⪟(b⪘⫢b))) , else }","definition_type":"branch_definition","priority":25,"associativity_direction":"left","op_compute_func":"def op_h92wMvzauj(a, b):\n if op_u6S6b8DprG(a) < 10 or op_xNBdhnnwKq(b) == 22:\n return op_9Isq31Ruls(op_s3Fd5m9Dh2(op_3sJ7IOPOlU(a,b),op_8HhzD0ZcuI(b,582)),a)\n else:\n return op_umQnsF7QlU(op_DmTXOeWf9t(a,op_jLgFTUHLKL(a)),op_AFVx7xoS7T(op_nREPSIbpBE(a,243),op_oacrs7FA3X(b,b)))\n","op_count_func":"def op_count_h92wMvzauj(a, b):\n if op_u6S6b8DprG(a) < 10 or op_xNBdhnnwKq(b) == 22:\n count = op_count_3sJ7IOPOlU(a,b)+op_count_8HhzD0ZcuI(b,582)+op_count_s3Fd5m9Dh2(op_3sJ7IOPOlU(a,b),op_8HhzD0ZcuI(b,582))+op_count_9Isq31Ruls(op_s3Fd5m9Dh2(op_3sJ7IOPOlU(a,b),op_8HhzD0ZcuI(b,582)),a)+op_count_u6S6b8DprG(a)+op_count_xNBdhnnwKq(b)\n else:\n count = op_count_jLgFTUHLKL(a)+op_count_DmTXOeWf9t(a,op_jLgFTUHLKL(a))+op_count_nREPSIbpBE(a,243)+op_count_oacrs7FA3X(b,b)+op_count_AFVx7xoS7T(op_nREPSIbpBE(a,243),op_oacrs7FA3X(b,b))+op_count_umQnsF7QlU(op_DmTXOeWf9t(a,op_jLgFTUHLKL(a)),op_AFVx7xoS7T(op_nREPSIbpBE(a,243),op_oacrs7FA3X(b,b)))\n return count\n","dependencies":["s3Fd5m9Dh2","3sJ7IOPOlU","nREPSIbpBE","9Isq31Ruls","umQnsF7QlU","8HhzD0ZcuI","u6S6b8DprG","DmTXOeWf9t","AFVx7xoS7T","jLgFTUHLKL","oacrs7FA3X","xNBdhnnwKq"]} +{"id":302,"func_id":"L95AwlJzhO","symbol":"⋖∅⋲","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⋖∅⋲ = { ((⪝⪂⫅431)⊍) , if (a∲⫓500)>7 ; ((a∽304)⫸⇳(a⊭∹↮)) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_L95AwlJzhO(a):\n if op_i8ToyICDmI(a,500) > 7:\n return op_3nqY3DE9mg(op_XTarYq4gQB(431))\n else:\n return op_gx7XJ7hdpj(op_y4ImoPnbV5(a,304),op_xNBdhnnwKq(a))\n","op_count_func":"def op_count_L95AwlJzhO(a):\n if op_i8ToyICDmI(a,500) > 7:\n count = op_count_XTarYq4gQB(431)+op_count_3nqY3DE9mg(op_XTarYq4gQB(431))+op_count_i8ToyICDmI(a,500)\n else:\n count = op_count_y4ImoPnbV5(a,304)+op_count_xNBdhnnwKq(a)+op_count_gx7XJ7hdpj(op_y4ImoPnbV5(a,304),op_xNBdhnnwKq(a))\n return count\n","dependencies":["gx7XJ7hdpj","3nqY3DE9mg","XTarYq4gQB","y4ImoPnbV5","i8ToyICDmI","xNBdhnnwKq"]} +{"id":303,"func_id":"HK0tfVPux8","symbol":"⊾⪯⋞","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⊾⪯⋞b = { ((121⊭∹↮)⊬⨰(a⨑≵⋬b)) , if (a⩟)==395 or (a⨱∎)>94 ; ((b⪘⫢b)⩒⫫(a⇤b)) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_HK0tfVPux8(a, b):\n if op_fOIeswaMU4(a) == 395 or op_MmTdOpaElr(a) > 94:\n return op_s3Fd5m9Dh2(op_xNBdhnnwKq(121),op_XnXgA4xnOs(a,b))\n else:\n return op_KFSx94NKJn(op_oacrs7FA3X(b,b),op_YSKBFp38Pu(a,b))\n","op_count_func":"def op_count_HK0tfVPux8(a, b):\n if op_fOIeswaMU4(a) == 395 or op_MmTdOpaElr(a) > 94:\n count = op_count_xNBdhnnwKq(121)+op_count_XnXgA4xnOs(a,b)+op_count_s3Fd5m9Dh2(op_xNBdhnnwKq(121),op_XnXgA4xnOs(a,b))+op_count_fOIeswaMU4(a)+op_count_MmTdOpaElr(a)\n else:\n count = op_count_oacrs7FA3X(b,b)+op_count_YSKBFp38Pu(a,b)+op_count_KFSx94NKJn(op_oacrs7FA3X(b,b),op_YSKBFp38Pu(a,b))\n return count\n","dependencies":["s3Fd5m9Dh2","KFSx94NKJn","MmTdOpaElr","XnXgA4xnOs","fOIeswaMU4","YSKBFp38Pu","oacrs7FA3X","xNBdhnnwKq"]} +{"id":304,"func_id":"sYcpBQ0cFf","symbol":"⨮↦↱","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⨮↦↱a = { ((⇾⩊⇾a)⪕(a≝⊿a)) , if (↸⊣a)>398 ; ((a↢a)⨽(⋂a)) , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_sYcpBQ0cFf(a):\n if op_wztAlM01eG(a) > 398:\n return op_umQnsF7QlU(op_bx9Z9DAK5y(a),op_OKKcZfAt5B(a,a))\n else:\n return op_8HhzD0ZcuI(op_WR6HLWljOP(a,a),op_BUOGQAYlQx(a))\n","op_count_func":"def op_count_sYcpBQ0cFf(a):\n if op_wztAlM01eG(a) > 398:\n count = op_count_bx9Z9DAK5y(a)+op_count_OKKcZfAt5B(a,a)+op_count_umQnsF7QlU(op_bx9Z9DAK5y(a),op_OKKcZfAt5B(a,a))+op_count_wztAlM01eG(a)\n else:\n count = op_count_WR6HLWljOP(a,a)+op_count_BUOGQAYlQx(a)+op_count_8HhzD0ZcuI(op_WR6HLWljOP(a,a),op_BUOGQAYlQx(a))\n return count\n","dependencies":["OKKcZfAt5B","WR6HLWljOP","umQnsF7QlU","8HhzD0ZcuI","BUOGQAYlQx","bx9Z9DAK5y","wztAlM01eG"]} +{"id":305,"func_id":"jWTQ2TZYIH","symbol":"≬⇓","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a≬⇓b = { (a⊪) , if a<=154 or (⪝⪂⫅a)>=41 ; (a⋅⇍b) , else }","definition_type":"branch_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_jWTQ2TZYIH(a, b):\n if a <= 154 or op_XTarYq4gQB(a) >= 41:\n return op_zVYPLywUTj(a)\n else:\n return op_AdZkA7nFnk(a,b)\n","op_count_func":"def op_count_jWTQ2TZYIH(a, b):\n if a <= 154 or op_XTarYq4gQB(a) >= 41:\n count = op_count_zVYPLywUTj(a)+op_count_XTarYq4gQB(a)\n else:\n count = op_count_AdZkA7nFnk(a,b)\n return count\n","dependencies":["AdZkA7nFnk","zVYPLywUTj","XTarYq4gQB"]} +{"id":306,"func_id":"CArV6hThFE","symbol":"⫲⨊","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⫲⨊ = { ((332≫≃)⪹) , if a==35 ; ((a⋘⨑⨽)⋝⋈⪟(a⪛290)) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_CArV6hThFE(a):\n if a == 35:\n return op_B3sABdIn96(op_X99M06cbEe(332))\n else:\n return op_2DDjHMKMc0(op_WmT3o8z6ya(a),op_uFcxV4UQCh(a,290))\n","op_count_func":"def op_count_CArV6hThFE(a):\n if a == 35:\n count = op_count_X99M06cbEe(332)+op_count_B3sABdIn96(op_X99M06cbEe(332))\n else:\n count = op_count_WmT3o8z6ya(a)+op_count_uFcxV4UQCh(a,290)+op_count_2DDjHMKMc0(op_WmT3o8z6ya(a),op_uFcxV4UQCh(a,290))\n return count\n","dependencies":["WmT3o8z6ya","uFcxV4UQCh","2DDjHMKMc0","B3sABdIn96","X99M06cbEe"]} +{"id":307,"func_id":"XGcMNugi78","symbol":"⫞⩸⩒","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⫞⩸⩒b = { (a⨎b) , if ((⇋↷b)>164 and (a↬⩅∪)<=12 and (b⨔⇊430)!=387) ; a , else }","definition_type":"branch_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_XGcMNugi78(a, b):\n if (op_SWo3A1KBJH(b) > 164 and op_VJ330n2nnx(a) <= 12 and op_JclMnS0uGI(b,430) != 387):\n return op_rJVOvQCfKK(a,b)\n else:\n return a\n","op_count_func":"def op_count_XGcMNugi78(a, b):\n if (op_SWo3A1KBJH(b) > 164 and op_VJ330n2nnx(a) <= 12 and op_JclMnS0uGI(b,430) != 387):\n count = op_count_rJVOvQCfKK(a,b)+op_count_SWo3A1KBJH(b)+op_count_VJ330n2nnx(a)+op_count_JclMnS0uGI(b,430)\n else:\n count = 1\n return count\n","dependencies":["VJ330n2nnx","JclMnS0uGI","SWo3A1KBJH","rJVOvQCfKK"]} +{"id":308,"func_id":"H6BK1Evt7c","symbol":"⫯","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⫯a = { ((a⩠)∠↢(⨂⪏⇭a)) , if (a≧⫂∧919)>20 ; ((a⩹a)≫≃) , else }","definition_type":"branch_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_H6BK1Evt7c(a):\n if op_Ph9nP6C5qx(a,919) > 20:\n return op_KbjG8mgYpV(op_sJAwomhLZr(a),op_AYdpE9sXAk(a))\n else:\n return op_X99M06cbEe(op_2Wsdkap16l(a,a))\n","op_count_func":"def op_count_H6BK1Evt7c(a):\n if op_Ph9nP6C5qx(a,919) > 20:\n count = op_count_sJAwomhLZr(a)+op_count_AYdpE9sXAk(a)+op_count_KbjG8mgYpV(op_sJAwomhLZr(a),op_AYdpE9sXAk(a))+op_count_Ph9nP6C5qx(a,919)\n else:\n count = op_count_2Wsdkap16l(a,a)+op_count_X99M06cbEe(op_2Wsdkap16l(a,a))\n return count\n","dependencies":["2Wsdkap16l","KbjG8mgYpV","sJAwomhLZr","Ph9nP6C5qx","AYdpE9sXAk","X99M06cbEe"]} +{"id":309,"func_id":"tGSeddj7UK","symbol":"≑≱⪘","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a≑≱⪘ = { ((⊄⩳↩(6≧⫂∧a))⩍⋽⫝̸((a⊲⩕⊾a)≦↸(a⋆⋳))) , if (a↹⊜255)>=30 or (a↯⫤)>122 ; ((a⩷∴(a⪒⊣⊆a))⨽(a⊬⫿⊭)) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_tGSeddj7UK(a):\n if op_9bazX3JMtO(a,255) >= 30 or op_VwlE7vj6HS(a) > 122:\n return op_BiWNJpBvwn(op_8w2t5hMYqp(op_Ph9nP6C5qx(6,a)),op_RygbFNSyEJ(op_DmTXOeWf9t(a,a),op_6MpZysEj17(a)))\n else:\n return op_8HhzD0ZcuI(op_9FxExcQeMw(a,op_eRqsBgTDFp(a,a)),op_v0DYgG9ikt(a))\n","op_count_func":"def op_count_tGSeddj7UK(a):\n if op_9bazX3JMtO(a,255) >= 30 or op_VwlE7vj6HS(a) > 122:\n count = op_count_Ph9nP6C5qx(6,a)+op_count_8w2t5hMYqp(op_Ph9nP6C5qx(6,a))+op_count_DmTXOeWf9t(a,a)+op_count_6MpZysEj17(a)+op_count_RygbFNSyEJ(op_DmTXOeWf9t(a,a),op_6MpZysEj17(a))+op_count_BiWNJpBvwn(op_8w2t5hMYqp(op_Ph9nP6C5qx(6,a)),op_RygbFNSyEJ(op_DmTXOeWf9t(a,a),op_6MpZysEj17(a)))+op_count_9bazX3JMtO(a,255)+op_count_VwlE7vj6HS(a)\n else:\n count = op_count_eRqsBgTDFp(a,a)+op_count_9FxExcQeMw(a,op_eRqsBgTDFp(a,a))+op_count_v0DYgG9ikt(a)+op_count_8HhzD0ZcuI(op_9FxExcQeMw(a,op_eRqsBgTDFp(a,a)),op_v0DYgG9ikt(a))\n return count\n","dependencies":["9FxExcQeMw","9bazX3JMtO","RygbFNSyEJ","VwlE7vj6HS","v0DYgG9ikt","eRqsBgTDFp","6MpZysEj17","8w2t5hMYqp","Ph9nP6C5qx","DmTXOeWf9t","8HhzD0ZcuI","BiWNJpBvwn"]} +{"id":310,"func_id":"aBQ6xLxuTc","symbol":"⇂≾⫗","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⇂≾⫗b = { (((b⩌⋺a)⩨(↔b))⪚((a⊨b)∺≝⩲b)) }","definition_type":"simple_definition","priority":28,"associativity_direction":"left","op_compute_func":"def op_aBQ6xLxuTc(a, b):\n return op_HrjLwUk87U(op_2DlMacCsIx(op_g7Hmc5v1ko(b,a),op_ruOEQAzv1W(b)),op_KPf6cnQVty(op_vg4gO5BX6G(a,b),b))\n","op_count_func":"def op_count_aBQ6xLxuTc(a, b):\n count = op_count_g7Hmc5v1ko(b,a)+op_count_ruOEQAzv1W(b)+op_count_2DlMacCsIx(op_g7Hmc5v1ko(b,a),op_ruOEQAzv1W(b))+op_count_vg4gO5BX6G(a,b)+op_count_KPf6cnQVty(op_vg4gO5BX6G(a,b),b)+op_count_HrjLwUk87U(op_2DlMacCsIx(op_g7Hmc5v1ko(b,a),op_ruOEQAzv1W(b)),op_KPf6cnQVty(op_vg4gO5BX6G(a,b),b))\n return count\n","dependencies":["g7Hmc5v1ko","KPf6cnQVty","vg4gO5BX6G","ruOEQAzv1W","2DlMacCsIx","HrjLwUk87U"]} +{"id":311,"func_id":"YbUVn0Rbpy","symbol":"⋛","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⋛b = { ((293∌(291⇼⇔∾496))⨽((52⊱⇼⊻262)%(a≝⊿a))) , if (b⇯⋐)>355 ; (((b⪨≂b)→⨶⪴(71⊪))%((197∷178)⩧⪆(b⫯⪬∳256))) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_YbUVn0Rbpy(a, b):\n if op_LkLIoiE525(b) > 355:\n return op_8HhzD0ZcuI(op_8cLx32lpNA(293,op_tifHPKVTfV(291,496)),op_k8jYdgA6NY(op_FyVja0WsTP(52,262),op_OKKcZfAt5B(a,a)))\n else:\n return op_k8jYdgA6NY(op_bF6eod5Gvf(op_sdazOOVcIp(b,b),op_zVYPLywUTj(71)),op_Ikt5ks8PT7(op_D3AQDKkPcf(197,178),op_d7ASUq0ydm(b,256)))\n","op_count_func":"def op_count_YbUVn0Rbpy(a, b):\n if op_LkLIoiE525(b) > 355:\n count = op_count_tifHPKVTfV(291,496)+op_count_8cLx32lpNA(293,op_tifHPKVTfV(291,496))+op_count_FyVja0WsTP(52,262)+op_count_OKKcZfAt5B(a,a)+op_count_k8jYdgA6NY(op_FyVja0WsTP(52,262),op_OKKcZfAt5B(a,a))+op_count_8HhzD0ZcuI(op_8cLx32lpNA(293,op_tifHPKVTfV(291,496)),op_k8jYdgA6NY(op_FyVja0WsTP(52,262),op_OKKcZfAt5B(a,a)))+op_count_LkLIoiE525(b)\n else:\n count = op_count_sdazOOVcIp(b,b)+op_count_zVYPLywUTj(71)+op_count_bF6eod5Gvf(op_sdazOOVcIp(b,b),op_zVYPLywUTj(71))+op_count_D3AQDKkPcf(197,178)+op_count_d7ASUq0ydm(b,256)+op_count_Ikt5ks8PT7(op_D3AQDKkPcf(197,178),op_d7ASUq0ydm(b,256))+op_count_k8jYdgA6NY(op_bF6eod5Gvf(op_sdazOOVcIp(b,b),op_zVYPLywUTj(71)),op_Ikt5ks8PT7(op_D3AQDKkPcf(197,178),op_d7ASUq0ydm(b,256)))\n return count\n","dependencies":["d7ASUq0ydm","OKKcZfAt5B","FyVja0WsTP","zVYPLywUTj","tifHPKVTfV","sdazOOVcIp","Ikt5ks8PT7","bF6eod5Gvf","k8jYdgA6NY","D3AQDKkPcf","8HhzD0ZcuI","LkLIoiE525","8cLx32lpNA"]} +{"id":312,"func_id":"EBhcHTkKd8","symbol":"⊆⋠","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⊆⋠a = { ((a⊨a)↯⫤) , if (≉a)>=63 ; ((⫇a)⪄(a∀⋜↑)) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_EBhcHTkKd8(a):\n if op_e1ybzncUwg(a) >= 63:\n return op_VwlE7vj6HS(op_vg4gO5BX6G(a,a))\n else:\n return op_SUmda5xLS4(op_YjI8oCXuph(a),op_KipPnG1M2J(a))\n","op_count_func":"def op_count_EBhcHTkKd8(a):\n if op_e1ybzncUwg(a) >= 63:\n count = op_count_vg4gO5BX6G(a,a)+op_count_VwlE7vj6HS(op_vg4gO5BX6G(a,a))+op_count_e1ybzncUwg(a)\n else:\n count = op_count_YjI8oCXuph(a)+op_count_KipPnG1M2J(a)+op_count_SUmda5xLS4(op_YjI8oCXuph(a),op_KipPnG1M2J(a))\n return count\n","dependencies":["YjI8oCXuph","VwlE7vj6HS","e1ybzncUwg","SUmda5xLS4","vg4gO5BX6G","KipPnG1M2J"]} +{"id":313,"func_id":"zQWRhDnn8F","symbol":"⋣","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⋣a = { ((⋼∭⪍203)⇄(≯(a⨽a))) , if (a⇩)==859 ; (↥≼⋛((⪝⪂⫅a)⪨≂(⇉-⫰26))) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_zQWRhDnn8F(a):\n if op_vRio1gEz1j(a) == 859:\n return op_3EYGwJThht(op_DbCuESL50I(203),op_keWfFq85dY(op_8HhzD0ZcuI(a,a)))\n else:\n return op_x5lMkHmzsq(op_sdazOOVcIp(op_XTarYq4gQB(a),op_IGFM8TAlm9(26)))\n","op_count_func":"def op_count_zQWRhDnn8F(a):\n if op_vRio1gEz1j(a) == 859:\n count = op_count_DbCuESL50I(203)+op_count_8HhzD0ZcuI(a,a)+op_count_keWfFq85dY(op_8HhzD0ZcuI(a,a))+op_count_3EYGwJThht(op_DbCuESL50I(203),op_keWfFq85dY(op_8HhzD0ZcuI(a,a)))+op_count_vRio1gEz1j(a)\n else:\n count = op_count_XTarYq4gQB(a)+op_count_IGFM8TAlm9(26)+op_count_sdazOOVcIp(op_XTarYq4gQB(a),op_IGFM8TAlm9(26))+op_count_x5lMkHmzsq(op_sdazOOVcIp(op_XTarYq4gQB(a),op_IGFM8TAlm9(26)))\n return count\n","dependencies":["vRio1gEz1j","x5lMkHmzsq","3EYGwJThht","DbCuESL50I","XTarYq4gQB","IGFM8TAlm9","sdazOOVcIp","8HhzD0ZcuI","keWfFq85dY"]} +{"id":314,"func_id":"UqFzSgLMvQ","symbol":"⇡","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⇡ = { (((a⇴a)⪇≇⋚(∤27))⇤((a⩍⋽⫝̸27)⩠)) }","definition_type":"simple_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_UqFzSgLMvQ(a):\n return op_YSKBFp38Pu(op_3sJ7IOPOlU(op_4JB6nKBMSY(a,a),op_k2HlF1dBQh(27)),op_sJAwomhLZr(op_BiWNJpBvwn(a,27)))\n","op_count_func":"def op_count_UqFzSgLMvQ(a):\n count = op_count_4JB6nKBMSY(a,a)+op_count_k2HlF1dBQh(27)+op_count_3sJ7IOPOlU(op_4JB6nKBMSY(a,a),op_k2HlF1dBQh(27))+op_count_BiWNJpBvwn(a,27)+op_count_sJAwomhLZr(op_BiWNJpBvwn(a,27))+op_count_YSKBFp38Pu(op_3sJ7IOPOlU(op_4JB6nKBMSY(a,a),op_k2HlF1dBQh(27)),op_sJAwomhLZr(op_BiWNJpBvwn(a,27)))\n return count\n","dependencies":["3sJ7IOPOlU","sJAwomhLZr","4JB6nKBMSY","k2HlF1dBQh","BiWNJpBvwn","YSKBFp38Pu"]} +{"id":315,"func_id":"z6LnFrNh4i","symbol":"⋕⪉⪜","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⋕⪉⪜b = { ((648⩠)⊱⇼⊻(b-a)) }","definition_type":"simple_definition","priority":24,"associativity_direction":"right","op_compute_func":"def op_z6LnFrNh4i(a, b):\n return op_FyVja0WsTP(op_sJAwomhLZr(648),op_rysDP5nf3Z(b,a))\n","op_count_func":"def op_count_z6LnFrNh4i(a, b):\n count = op_count_sJAwomhLZr(648)+op_count_rysDP5nf3Z(b,a)+op_count_FyVja0WsTP(op_sJAwomhLZr(648),op_rysDP5nf3Z(b,a))\n return count\n","dependencies":["sJAwomhLZr","FyVja0WsTP","rysDP5nf3Z"]} +{"id":316,"func_id":"RabNbG55vr","symbol":"⫣⪄⊒","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⫣⪄⊒b = { ((a⪮%⊝(153⪭a))%(⋼∭⪍(b⩚⊴⇥34))) , if b>769 ; ((∂⩏⊆(b⩟))∺≝⩲((b∝a)⋝⋈⪟(a⩌⋺b))) , else }","definition_type":"branch_definition","priority":21,"associativity_direction":"left","op_compute_func":"def op_RabNbG55vr(a, b):\n if b > 769:\n return op_k8jYdgA6NY(op_IWmyXbctLI(a,op_j9kHMeSvPp(153,a)),op_DbCuESL50I(op_NTOWxs364D(b,34)))\n else:\n return op_KPf6cnQVty(op_8WDwsbhb0R(op_fOIeswaMU4(b)),op_2DDjHMKMc0(op_cTDWOvIxvz(b,a),op_g7Hmc5v1ko(a,b)))\n","op_count_func":"def op_count_RabNbG55vr(a, b):\n if b > 769:\n count = op_count_j9kHMeSvPp(153,a)+op_count_IWmyXbctLI(a,op_j9kHMeSvPp(153,a))+op_count_NTOWxs364D(b,34)+op_count_DbCuESL50I(op_NTOWxs364D(b,34))+op_count_k8jYdgA6NY(op_IWmyXbctLI(a,op_j9kHMeSvPp(153,a)),op_DbCuESL50I(op_NTOWxs364D(b,34)))\n else:\n count = op_count_fOIeswaMU4(b)+op_count_8WDwsbhb0R(op_fOIeswaMU4(b))+op_count_cTDWOvIxvz(b,a)+op_count_g7Hmc5v1ko(a,b)+op_count_2DDjHMKMc0(op_cTDWOvIxvz(b,a),op_g7Hmc5v1ko(a,b))+op_count_KPf6cnQVty(op_8WDwsbhb0R(op_fOIeswaMU4(b)),op_2DDjHMKMc0(op_cTDWOvIxvz(b,a),op_g7Hmc5v1ko(a,b)))\n return count\n","dependencies":["NTOWxs364D","DbCuESL50I","fOIeswaMU4","g7Hmc5v1ko","KPf6cnQVty","j9kHMeSvPp","k8jYdgA6NY","2DDjHMKMc0","8WDwsbhb0R","cTDWOvIxvz","IWmyXbctLI"]} +{"id":317,"func_id":"3UMq87Qwqg","symbol":"∤↝","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"∤↝a = { a , if ((a⊬⨰244)<=56 or (⫇a)>308 or (a⨐673)<=60) ; (((↩⪖a)⩼⇪↪(57∝206))↺(↩(⊲⪭a))) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_3UMq87Qwqg(a):\n if (op_s3Fd5m9Dh2(a,244) <= 56 or op_YjI8oCXuph(a) > 308 or op_Noe24qw2ks(a,673) <= 60):\n return a\n else:\n return op_7j4O788W3g(op_ocnLzx9CaJ(op_fG6uBQFnGz(a),op_cTDWOvIxvz(57,206)),op_jLgFTUHLKL(op_k7HXdKtiEU(a)))\n","op_count_func":"def op_count_3UMq87Qwqg(a):\n if (op_s3Fd5m9Dh2(a,244) <= 56 or op_YjI8oCXuph(a) > 308 or op_Noe24qw2ks(a,673) <= 60):\n count = 1\n else:\n count = op_count_fG6uBQFnGz(a)+op_count_cTDWOvIxvz(57,206)+op_count_ocnLzx9CaJ(op_fG6uBQFnGz(a),op_cTDWOvIxvz(57,206))+op_count_k7HXdKtiEU(a)+op_count_jLgFTUHLKL(op_k7HXdKtiEU(a))+op_count_7j4O788W3g(op_ocnLzx9CaJ(op_fG6uBQFnGz(a),op_cTDWOvIxvz(57,206)),op_jLgFTUHLKL(op_k7HXdKtiEU(a)))\n return count\n","dependencies":["s3Fd5m9Dh2","YjI8oCXuph","7j4O788W3g","k7HXdKtiEU","ocnLzx9CaJ","Noe24qw2ks","fG6uBQFnGz","cTDWOvIxvz","jLgFTUHLKL"]} +{"id":318,"func_id":"YFxL8Sc2Zy","symbol":"⊖∈","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⊖∈a = { a , if (a⨝⩣∺)>=369 ; ((a⊪)⪨≂(a⇤a)) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_YFxL8Sc2Zy(a):\n if op_ancx8kZcWl(a) >= 369:\n return a\n else:\n return op_sdazOOVcIp(op_zVYPLywUTj(a),op_YSKBFp38Pu(a,a))\n","op_count_func":"def op_count_YFxL8Sc2Zy(a):\n if op_ancx8kZcWl(a) >= 369:\n count = 1\n else:\n count = op_count_zVYPLywUTj(a)+op_count_YSKBFp38Pu(a,a)+op_count_sdazOOVcIp(op_zVYPLywUTj(a),op_YSKBFp38Pu(a,a))\n return count\n","dependencies":["zVYPLywUTj","sdazOOVcIp","ancx8kZcWl","YSKBFp38Pu"]} +{"id":319,"func_id":"MRPaB8lBjK","symbol":"⇉⇱⇎","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⇉⇱⇎ = { (((a/a)⪉⨛(≯757))⪛(∷≠(-a))) }","definition_type":"simple_definition","priority":29,"associativity_direction":"left","op_compute_func":"def op_MRPaB8lBjK(a):\n return op_uFcxV4UQCh(op_EWw2JM7wp4(op_XhwjNDsVaA(a,a),op_keWfFq85dY(757)),op_QiR2Oyf5Xj(op_t8gj7n24qd(a)))\n","op_count_func":"def op_count_MRPaB8lBjK(a):\n count = op_count_XhwjNDsVaA(a,a)+op_count_keWfFq85dY(757)+op_count_EWw2JM7wp4(op_XhwjNDsVaA(a,a),op_keWfFq85dY(757))+op_count_t8gj7n24qd(a)+op_count_QiR2Oyf5Xj(op_t8gj7n24qd(a))+op_count_uFcxV4UQCh(op_EWw2JM7wp4(op_XhwjNDsVaA(a,a),op_keWfFq85dY(757)),op_QiR2Oyf5Xj(op_t8gj7n24qd(a)))\n return count\n","dependencies":["XhwjNDsVaA","QiR2Oyf5Xj","uFcxV4UQCh","EWw2JM7wp4","t8gj7n24qd","keWfFq85dY"]} +{"id":320,"func_id":"oraRL2iQuh","symbol":"⪡","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪡b = { (107%(a⩹b)) , if a>=49 ; (≀↧⇸(∂⩏⊆a)) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_oraRL2iQuh(a, b):\n if a >= 49:\n return op_k8jYdgA6NY(107,op_2Wsdkap16l(a,b))\n else:\n return op_ljTHtUsqzn(op_8WDwsbhb0R(a))\n","op_count_func":"def op_count_oraRL2iQuh(a, b):\n if a >= 49:\n count = op_count_2Wsdkap16l(a,b)+op_count_k8jYdgA6NY(107,op_2Wsdkap16l(a,b))\n else:\n count = op_count_8WDwsbhb0R(a)+op_count_ljTHtUsqzn(op_8WDwsbhb0R(a))\n return count\n","dependencies":["2Wsdkap16l","ljTHtUsqzn","k8jYdgA6NY","8WDwsbhb0R"]} +{"id":321,"func_id":"WYd1w68Nbz","symbol":"⋩≍≻","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⋩≍≻ = { (∥⊫(a⊭↱21)) , if a>=390 ; ((a⨐a)⫸⊐(a⪮%⊝a)) , else }","definition_type":"branch_definition","priority":30,"associativity_direction":"left","op_compute_func":"def op_WYd1w68Nbz(a):\n if a >= 390:\n return op_P8v4zCKN1o(op_COABgblf1C(a,21))\n else:\n return op_mqXw5SEYmG(op_Noe24qw2ks(a,a),op_IWmyXbctLI(a,a))\n","op_count_func":"def op_count_WYd1w68Nbz(a):\n if a >= 390:\n count = op_count_COABgblf1C(a,21)+op_count_P8v4zCKN1o(op_COABgblf1C(a,21))\n else:\n count = op_count_Noe24qw2ks(a,a)+op_count_IWmyXbctLI(a,a)+op_count_mqXw5SEYmG(op_Noe24qw2ks(a,a),op_IWmyXbctLI(a,a))\n return count\n","dependencies":["P8v4zCKN1o","Noe24qw2ks","mqXw5SEYmG","IWmyXbctLI","COABgblf1C"]} +{"id":322,"func_id":"CgIo77xlM2","symbol":"⫑","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⫑ = { (((a⊉≛↸377)⩼⇪↪(a∘a))⪄(841⪶≀⋏a)) , if (a⫸⊐7)<631 ; ((↓⇌(a∌a))⨌↪) , else }","definition_type":"branch_definition","priority":29,"associativity_direction":"left","op_compute_func":"def op_CgIo77xlM2(a):\n if op_mqXw5SEYmG(a,7) < 631:\n return op_SUmda5xLS4(op_ocnLzx9CaJ(op_DZ8iAZOCBD(a,377),op_Z5m6OM72h2(a,a)),op_zR4jO40bMj(841,a))\n else:\n return op_cWQsF5MvuD(op_PxpmPgHHJV(op_8cLx32lpNA(a,a)))\n","op_count_func":"def op_count_CgIo77xlM2(a):\n if op_mqXw5SEYmG(a,7) < 631:\n count = op_count_DZ8iAZOCBD(a,377)+op_count_Z5m6OM72h2(a,a)+op_count_ocnLzx9CaJ(op_DZ8iAZOCBD(a,377),op_Z5m6OM72h2(a,a))+op_count_zR4jO40bMj(841,a)+op_count_SUmda5xLS4(op_ocnLzx9CaJ(op_DZ8iAZOCBD(a,377),op_Z5m6OM72h2(a,a)),op_zR4jO40bMj(841,a))+op_count_mqXw5SEYmG(a,7)\n else:\n count = op_count_8cLx32lpNA(a,a)+op_count_PxpmPgHHJV(op_8cLx32lpNA(a,a))+op_count_cWQsF5MvuD(op_PxpmPgHHJV(op_8cLx32lpNA(a,a)))\n return count\n","dependencies":["cWQsF5MvuD","zR4jO40bMj","SUmda5xLS4","DZ8iAZOCBD","PxpmPgHHJV","ocnLzx9CaJ","Z5m6OM72h2","mqXw5SEYmG","8cLx32lpNA"]} +{"id":323,"func_id":"PoHhknlbAi","symbol":"∓⋝","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a∓⋝b = { (((a⊉≛↸a)⫸⊐(⋼∭⪍b))∩⋅) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_PoHhknlbAi(a, b):\n return op_2MzE1hQ0cz(op_mqXw5SEYmG(op_DZ8iAZOCBD(a,a),op_DbCuESL50I(b)))\n","op_count_func":"def op_count_PoHhknlbAi(a, b):\n count = op_count_DZ8iAZOCBD(a,a)+op_count_DbCuESL50I(b)+op_count_mqXw5SEYmG(op_DZ8iAZOCBD(a,a),op_DbCuESL50I(b))+op_count_2MzE1hQ0cz(op_mqXw5SEYmG(op_DZ8iAZOCBD(a,a),op_DbCuESL50I(b)))\n return count\n","dependencies":["DZ8iAZOCBD","DbCuESL50I","mqXw5SEYmG","2MzE1hQ0cz"]} +{"id":324,"func_id":"FlXk3pOYe8","symbol":"⩎⋉","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⩎⋉a = { (((a/a)∲⫓(≛a))∴((a⩨a)⨳⩥⨓(⊄⩳↩a))) , if (a⩇∃⫛268)<=24 or a==244 or (↩⪖a)>=4 ; (((a⨔⇊a)∠↢(↸⊣a))≚⊃≕((≦∁a)⨐461)) , else }","definition_type":"branch_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_FlXk3pOYe8(a):\n if op_1aApVXNlOP(a,268) <= 24 or a == 244 or op_fG6uBQFnGz(a) >= 4:\n return op_hrf7POJlIJ(op_i8ToyICDmI(op_XhwjNDsVaA(a,a),op_W7eaUhjymW(a)),op_nCS4ZIUYfx(op_2DlMacCsIx(a,a),op_8w2t5hMYqp(a)))\n else:\n return op_Bmrmz2XGnR(op_KbjG8mgYpV(op_JclMnS0uGI(a,a),op_wztAlM01eG(a)),op_Noe24qw2ks(op_9ICcGScMcE(a),461))\n","op_count_func":"def op_count_FlXk3pOYe8(a):\n if op_1aApVXNlOP(a,268) <= 24 or a == 244 or op_fG6uBQFnGz(a) >= 4:\n count = op_count_XhwjNDsVaA(a,a)+op_count_W7eaUhjymW(a)+op_count_i8ToyICDmI(op_XhwjNDsVaA(a,a),op_W7eaUhjymW(a))+op_count_2DlMacCsIx(a,a)+op_count_8w2t5hMYqp(a)+op_count_nCS4ZIUYfx(op_2DlMacCsIx(a,a),op_8w2t5hMYqp(a))+op_count_hrf7POJlIJ(op_i8ToyICDmI(op_XhwjNDsVaA(a,a),op_W7eaUhjymW(a)),op_nCS4ZIUYfx(op_2DlMacCsIx(a,a),op_8w2t5hMYqp(a)))+op_count_1aApVXNlOP(a,268)+op_count_fG6uBQFnGz(a)\n else:\n count = op_count_JclMnS0uGI(a,a)+op_count_wztAlM01eG(a)+op_count_KbjG8mgYpV(op_JclMnS0uGI(a,a),op_wztAlM01eG(a))+op_count_9ICcGScMcE(a)+op_count_Noe24qw2ks(op_9ICcGScMcE(a),461)+op_count_Bmrmz2XGnR(op_KbjG8mgYpV(op_JclMnS0uGI(a,a),op_wztAlM01eG(a)),op_Noe24qw2ks(op_9ICcGScMcE(a),461))\n return count\n","dependencies":["KbjG8mgYpV","wztAlM01eG","JclMnS0uGI","XhwjNDsVaA","W7eaUhjymW","9ICcGScMcE","fG6uBQFnGz","8w2t5hMYqp","Bmrmz2XGnR","Noe24qw2ks","1aApVXNlOP","i8ToyICDmI","nCS4ZIUYfx","2DlMacCsIx","hrf7POJlIJ"]} +{"id":325,"func_id":"WhqkvtTD3t","symbol":"⫉⨲⊜","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⫉⨲⊜b = { (b⨰120) , if b<=7 ; (a⊪) , else }","definition_type":"branch_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_WhqkvtTD3t(a, b):\n if b <= 7:\n return op_eewbuw0ToL(b,120)\n else:\n return op_zVYPLywUTj(a)\n","op_count_func":"def op_count_WhqkvtTD3t(a, b):\n if b <= 7:\n count = op_count_eewbuw0ToL(b,120)\n else:\n count = op_count_zVYPLywUTj(a)\n return count\n","dependencies":["eewbuw0ToL","zVYPLywUTj"]} +{"id":326,"func_id":"7t3wd0Fuz7","symbol":"⋥⋵⩄","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⋥⋵⩄b = { ((⩦⩻⨪a)⇌⫙⪟(b⪮%⊝b)) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_7t3wd0Fuz7(a, b):\n return op_AFVx7xoS7T(op_2td37pGCOC(a),op_IWmyXbctLI(b,b))\n","op_count_func":"def op_count_7t3wd0Fuz7(a, b):\n count = op_count_2td37pGCOC(a)+op_count_IWmyXbctLI(b,b)+op_count_AFVx7xoS7T(op_2td37pGCOC(a),op_IWmyXbctLI(b,b))\n return count\n","dependencies":["IWmyXbctLI","2td37pGCOC","AFVx7xoS7T"]} +{"id":327,"func_id":"nmZMaaE0Q9","symbol":"⇐","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⇐a = { (((⇋↷a)⋷(a⩼⇪↪a))%(↽≂(a⨚a))) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_nmZMaaE0Q9(a):\n return op_k8jYdgA6NY(op_23Mk6UjR3U(op_SWo3A1KBJH(a),op_ocnLzx9CaJ(a,a)),op_u6S6b8DprG(op_nREPSIbpBE(a,a)))\n","op_count_func":"def op_count_nmZMaaE0Q9(a):\n count = op_count_SWo3A1KBJH(a)+op_count_ocnLzx9CaJ(a,a)+op_count_23Mk6UjR3U(op_SWo3A1KBJH(a),op_ocnLzx9CaJ(a,a))+op_count_nREPSIbpBE(a,a)+op_count_u6S6b8DprG(op_nREPSIbpBE(a,a))+op_count_k8jYdgA6NY(op_23Mk6UjR3U(op_SWo3A1KBJH(a),op_ocnLzx9CaJ(a,a)),op_u6S6b8DprG(op_nREPSIbpBE(a,a)))\n return count\n","dependencies":["23Mk6UjR3U","ocnLzx9CaJ","SWo3A1KBJH","nREPSIbpBE","k8jYdgA6NY","u6S6b8DprG"]} +{"id":328,"func_id":"9tKT6PmtkH","symbol":"⫿","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⫿ = { (≦∁a) , if (⋗⩬⋾a)<1 ; (a⪒a) , else }","definition_type":"branch_definition","priority":25,"associativity_direction":"left","op_compute_func":"def op_9tKT6PmtkH(a):\n if op_DpFCA1CohY(a) < 1:\n return op_9ICcGScMcE(a)\n else:\n return op_f6k1SAg4EE(a,a)\n","op_count_func":"def op_count_9tKT6PmtkH(a):\n if op_DpFCA1CohY(a) < 1:\n count = op_count_9ICcGScMcE(a)+op_count_DpFCA1CohY(a)\n else:\n count = op_count_f6k1SAg4EE(a,a)\n return count\n","dependencies":["DpFCA1CohY","9ICcGScMcE","f6k1SAg4EE"]} +{"id":329,"func_id":"Tl3Y52tvF8","symbol":"⨵","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⨵a = { (((a∲⫓10)⫃⨇(384⊋≦⊧a))⩵∡(⨵≀≌(a⫸⇳714))) }","definition_type":"simple_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_Tl3Y52tvF8(a):\n return op_Y7wcNGrDQJ(op_09Ly4LVMIf(op_i8ToyICDmI(a,10),op_oRDoc9rAEX(384,a)),op_srAu1WTS94(op_gx7XJ7hdpj(a,714)))\n","op_count_func":"def op_count_Tl3Y52tvF8(a):\n count = op_count_i8ToyICDmI(a,10)+op_count_oRDoc9rAEX(384,a)+op_count_09Ly4LVMIf(op_i8ToyICDmI(a,10),op_oRDoc9rAEX(384,a))+op_count_gx7XJ7hdpj(a,714)+op_count_srAu1WTS94(op_gx7XJ7hdpj(a,714))+op_count_Y7wcNGrDQJ(op_09Ly4LVMIf(op_i8ToyICDmI(a,10),op_oRDoc9rAEX(384,a)),op_srAu1WTS94(op_gx7XJ7hdpj(a,714)))\n return count\n","dependencies":["gx7XJ7hdpj","09Ly4LVMIf","oRDoc9rAEX","srAu1WTS94","i8ToyICDmI","Y7wcNGrDQJ"]} +{"id":330,"func_id":"aN9a90urxU","symbol":"≃⋄","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a≃⋄ = { (↩(252⪛a)) }","definition_type":"simple_definition","priority":30,"associativity_direction":"left","op_compute_func":"def op_aN9a90urxU(a):\n return op_jLgFTUHLKL(op_uFcxV4UQCh(252,a))\n","op_count_func":"def op_count_aN9a90urxU(a):\n count = op_count_uFcxV4UQCh(252,a)+op_count_jLgFTUHLKL(op_uFcxV4UQCh(252,a))\n return count\n","dependencies":["uFcxV4UQCh","jLgFTUHLKL"]} +{"id":331,"func_id":"uWAJUKEvyW","symbol":"⊹∫⫚","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⊹∫⫚b = { (↩(a⊨b)) , if (⩦⩻⨪a)==479 or (b⊉↱≁467)==779 ; ((b⨸⪁b)%(b⩍⋽⫝̸187)) , else }","definition_type":"branch_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_uWAJUKEvyW(a, b):\n if op_2td37pGCOC(a) == 479 or op_w2P8NbNXyL(b,467) == 779:\n return op_jLgFTUHLKL(op_vg4gO5BX6G(a,b))\n else:\n return op_k8jYdgA6NY(op_g55IO6H4Gj(b,b),op_BiWNJpBvwn(b,187))\n","op_count_func":"def op_count_uWAJUKEvyW(a, b):\n if op_2td37pGCOC(a) == 479 or op_w2P8NbNXyL(b,467) == 779:\n count = op_count_vg4gO5BX6G(a,b)+op_count_jLgFTUHLKL(op_vg4gO5BX6G(a,b))+op_count_2td37pGCOC(a)+op_count_w2P8NbNXyL(b,467)\n else:\n count = op_count_g55IO6H4Gj(b,b)+op_count_BiWNJpBvwn(b,187)+op_count_k8jYdgA6NY(op_g55IO6H4Gj(b,b),op_BiWNJpBvwn(b,187))\n return count\n","dependencies":["BiWNJpBvwn","w2P8NbNXyL","vg4gO5BX6G","k8jYdgA6NY","g55IO6H4Gj","2td37pGCOC","jLgFTUHLKL"]} +{"id":332,"func_id":"xlXykHWxX1","symbol":"⫢⨠","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⫢⨠b = { (((b⩨a)⪶≀⋏(a⩌⋺b))⩒⫫(∤(≉a))) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_xlXykHWxX1(a, b):\n return op_KFSx94NKJn(op_zR4jO40bMj(op_2DlMacCsIx(b,a),op_g7Hmc5v1ko(a,b)),op_k2HlF1dBQh(op_e1ybzncUwg(a)))\n","op_count_func":"def op_count_xlXykHWxX1(a, b):\n count = op_count_2DlMacCsIx(b,a)+op_count_g7Hmc5v1ko(a,b)+op_count_zR4jO40bMj(op_2DlMacCsIx(b,a),op_g7Hmc5v1ko(a,b))+op_count_e1ybzncUwg(a)+op_count_k2HlF1dBQh(op_e1ybzncUwg(a))+op_count_KFSx94NKJn(op_zR4jO40bMj(op_2DlMacCsIx(b,a),op_g7Hmc5v1ko(a,b)),op_k2HlF1dBQh(op_e1ybzncUwg(a)))\n return count\n","dependencies":["KFSx94NKJn","e1ybzncUwg","zR4jO40bMj","g7Hmc5v1ko","k2HlF1dBQh","2DlMacCsIx"]} +{"id":333,"func_id":"NNaDxxp6OQ","symbol":"⫽⇹≛","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⫽⇹≛ = { ((113⋅⇍170)⪮%⊝(a∠↢a)) }","definition_type":"simple_definition","priority":21,"associativity_direction":"left","op_compute_func":"def op_NNaDxxp6OQ(a):\n return op_IWmyXbctLI(op_AdZkA7nFnk(113,170),op_KbjG8mgYpV(a,a))\n","op_count_func":"def op_count_NNaDxxp6OQ(a):\n count = op_count_AdZkA7nFnk(113,170)+op_count_KbjG8mgYpV(a,a)+op_count_IWmyXbctLI(op_AdZkA7nFnk(113,170),op_KbjG8mgYpV(a,a))\n return count\n","dependencies":["KbjG8mgYpV","AdZkA7nFnk","IWmyXbctLI"]} +{"id":334,"func_id":"8FLs4eVsLt","symbol":"≔","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"≔a = { (⋃(⋂a)) , if (⨂⪏⇭a)<=427 or (a↫)>=16 ; ((a⨽194)↯⫤) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_8FLs4eVsLt(a):\n if op_AYdpE9sXAk(a) <= 427 or op_uPb5QRN0te(a) >= 16:\n return op_3mBM5G4a3l(op_BUOGQAYlQx(a))\n else:\n return op_VwlE7vj6HS(op_8HhzD0ZcuI(a,194))\n","op_count_func":"def op_count_8FLs4eVsLt(a):\n if op_AYdpE9sXAk(a) <= 427 or op_uPb5QRN0te(a) >= 16:\n count = op_count_BUOGQAYlQx(a)+op_count_3mBM5G4a3l(op_BUOGQAYlQx(a))+op_count_AYdpE9sXAk(a)+op_count_uPb5QRN0te(a)\n else:\n count = op_count_8HhzD0ZcuI(a,194)+op_count_VwlE7vj6HS(op_8HhzD0ZcuI(a,194))\n return count\n","dependencies":["uPb5QRN0te","VwlE7vj6HS","3mBM5G4a3l","8HhzD0ZcuI","BUOGQAYlQx","AYdpE9sXAk"]} +{"id":335,"func_id":"jfAgQ2OQeM","symbol":"⇤←","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⇤←a = { (a⨳⩥⨓((a⩚⊴⇥238)⊱⇼⊻(a⊪))) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_jfAgQ2OQeM(a):\n return op_nCS4ZIUYfx(a,op_FyVja0WsTP(op_NTOWxs364D(a,238),op_zVYPLywUTj(a)))\n","op_count_func":"def op_count_jfAgQ2OQeM(a):\n count = op_count_NTOWxs364D(a,238)+op_count_zVYPLywUTj(a)+op_count_FyVja0WsTP(op_NTOWxs364D(a,238),op_zVYPLywUTj(a))+op_count_nCS4ZIUYfx(a,op_FyVja0WsTP(op_NTOWxs364D(a,238),op_zVYPLywUTj(a)))\n return count\n","dependencies":["NTOWxs364D","FyVja0WsTP","zVYPLywUTj","nCS4ZIUYfx"]} +{"id":336,"func_id":"nEsXyWgiOK","symbol":"⨻⩈⩔","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨻⩈⩔b = { ((∓⪦(a⨚721))⊨((b⊨b)⫸⊐(a⫸⊐a))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_nEsXyWgiOK(a, b):\n return op_vg4gO5BX6G(op_D309nIvmXG(op_nREPSIbpBE(a,721)),op_mqXw5SEYmG(op_vg4gO5BX6G(b,b),op_mqXw5SEYmG(a,a)))\n","op_count_func":"def op_count_nEsXyWgiOK(a, b):\n count = op_count_nREPSIbpBE(a,721)+op_count_D309nIvmXG(op_nREPSIbpBE(a,721))+op_count_vg4gO5BX6G(b,b)+op_count_mqXw5SEYmG(a,a)+op_count_mqXw5SEYmG(op_vg4gO5BX6G(b,b),op_mqXw5SEYmG(a,a))+op_count_vg4gO5BX6G(op_D309nIvmXG(op_nREPSIbpBE(a,721)),op_mqXw5SEYmG(op_vg4gO5BX6G(b,b),op_mqXw5SEYmG(a,a)))\n return count\n","dependencies":["D309nIvmXG","nREPSIbpBE","vg4gO5BX6G","mqXw5SEYmG"]} +{"id":337,"func_id":"tR7O2zTn5j","symbol":"↑","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"↑a = { ((a⩨a)⊋≦⊧(a≦↸a)) }","definition_type":"simple_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_tR7O2zTn5j(a):\n return op_oRDoc9rAEX(op_2DlMacCsIx(a,a),op_RygbFNSyEJ(a,a))\n","op_count_func":"def op_count_tR7O2zTn5j(a):\n count = op_count_2DlMacCsIx(a,a)+op_count_RygbFNSyEJ(a,a)+op_count_oRDoc9rAEX(op_2DlMacCsIx(a,a),op_RygbFNSyEJ(a,a))\n return count\n","dependencies":["oRDoc9rAEX","RygbFNSyEJ","2DlMacCsIx"]} +{"id":338,"func_id":"Z57zeUYC9z","symbol":"⨔≚≋","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨔≚≋b = { ((⊈(b⪎↠b))⪶≀⋏((29⪒b)∠⫱(a⪮%⊝521))) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_Z57zeUYC9z(a, b):\n return op_zR4jO40bMj(op_RHru8klgy8(op_3tVxb0NHM4(b,b)),op_QvoQhV0rrE(op_f6k1SAg4EE(29,b),op_IWmyXbctLI(a,521)))\n","op_count_func":"def op_count_Z57zeUYC9z(a, b):\n count = op_count_3tVxb0NHM4(b,b)+op_count_RHru8klgy8(op_3tVxb0NHM4(b,b))+op_count_f6k1SAg4EE(29,b)+op_count_IWmyXbctLI(a,521)+op_count_QvoQhV0rrE(op_f6k1SAg4EE(29,b),op_IWmyXbctLI(a,521))+op_count_zR4jO40bMj(op_RHru8klgy8(op_3tVxb0NHM4(b,b)),op_QvoQhV0rrE(op_f6k1SAg4EE(29,b),op_IWmyXbctLI(a,521)))\n return count\n","dependencies":["zR4jO40bMj","QvoQhV0rrE","RHru8klgy8","3tVxb0NHM4","f6k1SAg4EE","IWmyXbctLI"]} +{"id":339,"func_id":"eOf03JbCpp","symbol":"≸","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"≸a = { (29∘((630⊋≦⊧a)⩚⊴⇥(a≦↸a))) , if (a⋘⨑⨽)>2 ; (((a⪮%⊝a)⇼⇔∾(a↪⪝))⫸⊐((a⪮%⊝a)≠≀(3⩇∃⫛a))) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_eOf03JbCpp(a):\n if op_WmT3o8z6ya(a) > 2:\n return op_Z5m6OM72h2(29,op_NTOWxs364D(op_oRDoc9rAEX(630,a),op_RygbFNSyEJ(a,a)))\n else:\n return op_mqXw5SEYmG(op_tifHPKVTfV(op_IWmyXbctLI(a,a),op_l07mrZUIn9(a)),op_IwW236VD4Y(op_IWmyXbctLI(a,a),op_1aApVXNlOP(3,a)))\n","op_count_func":"def op_count_eOf03JbCpp(a):\n if op_WmT3o8z6ya(a) > 2:\n count = op_count_oRDoc9rAEX(630,a)+op_count_RygbFNSyEJ(a,a)+op_count_NTOWxs364D(op_oRDoc9rAEX(630,a),op_RygbFNSyEJ(a,a))+op_count_Z5m6OM72h2(29,op_NTOWxs364D(op_oRDoc9rAEX(630,a),op_RygbFNSyEJ(a,a)))+op_count_WmT3o8z6ya(a)\n else:\n count = op_count_IWmyXbctLI(a,a)+op_count_l07mrZUIn9(a)+op_count_tifHPKVTfV(op_IWmyXbctLI(a,a),op_l07mrZUIn9(a))+op_count_IWmyXbctLI(a,a)+op_count_1aApVXNlOP(3,a)+op_count_IwW236VD4Y(op_IWmyXbctLI(a,a),op_1aApVXNlOP(3,a))+op_count_mqXw5SEYmG(op_tifHPKVTfV(op_IWmyXbctLI(a,a),op_l07mrZUIn9(a)),op_IwW236VD4Y(op_IWmyXbctLI(a,a),op_1aApVXNlOP(3,a)))\n return count\n","dependencies":["WmT3o8z6ya","l07mrZUIn9","NTOWxs364D","RygbFNSyEJ","tifHPKVTfV","oRDoc9rAEX","IwW236VD4Y","1aApVXNlOP","Z5m6OM72h2","mqXw5SEYmG","IWmyXbctLI"]} +{"id":340,"func_id":"yXekIHxTD4","symbol":"⨥⫆","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨥⫆b = { (b⨝⩣∺) , if (a⪒⊣⊆344)<109 ; (b⪘⫢a) , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_yXekIHxTD4(a, b):\n if op_eRqsBgTDFp(a,344) < 109:\n return op_ancx8kZcWl(b)\n else:\n return op_oacrs7FA3X(b,a)\n","op_count_func":"def op_count_yXekIHxTD4(a, b):\n if op_eRqsBgTDFp(a,344) < 109:\n count = op_count_ancx8kZcWl(b)+op_count_eRqsBgTDFp(a,344)\n else:\n count = op_count_oacrs7FA3X(b,a)\n return count\n","dependencies":["eRqsBgTDFp","ancx8kZcWl","oacrs7FA3X"]} +{"id":341,"func_id":"ZJpFhNJr3x","symbol":"⋠∜","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⋠∜a = { ((a∐⫣)⋥≓≎(a≫≃)) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_ZJpFhNJr3x(a):\n return op_Qy55tPpLXF(op_4CyGpkTkEk(a),op_X99M06cbEe(a))\n","op_count_func":"def op_count_ZJpFhNJr3x(a):\n count = op_count_4CyGpkTkEk(a)+op_count_X99M06cbEe(a)+op_count_Qy55tPpLXF(op_4CyGpkTkEk(a),op_X99M06cbEe(a))\n return count\n","dependencies":["X99M06cbEe","4CyGpkTkEk","Qy55tPpLXF"]} +{"id":342,"func_id":"ddLRYrp01A","symbol":"∊∟⩊","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a∊∟⩊b = { b , if (b∵≐)>=166 or (a⪇≇⋚4)==505 ; (↥a) , else }","definition_type":"branch_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_ddLRYrp01A(a, b):\n if op_59igzFyhWz(b) >= 166 or op_3sJ7IOPOlU(a,4) == 505:\n return b\n else:\n return op_A8NUZmVepG(a)\n","op_count_func":"def op_count_ddLRYrp01A(a, b):\n if op_59igzFyhWz(b) >= 166 or op_3sJ7IOPOlU(a,4) == 505:\n count = 1\n else:\n count = op_count_A8NUZmVepG(a)\n return count\n","dependencies":["59igzFyhWz","A8NUZmVepG","3sJ7IOPOlU"]} +{"id":343,"func_id":"jBncVCNhdl","symbol":"⋭≵","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⋭≵b = { ((156≦↸a)⊭↱(≦∁b)) , if (b⫸⊐434)<=441 and (a⫸⇳180)>=132 ; ((a⪑⩈)⊵↤) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_jBncVCNhdl(a, b):\n if op_mqXw5SEYmG(b,434) <= 441 and op_gx7XJ7hdpj(a,180) >= 132:\n return op_COABgblf1C(op_RygbFNSyEJ(156,a),op_9ICcGScMcE(b))\n else:\n return op_7IPrd9c3lf(op_C6VvDP6HwP(a))\n","op_count_func":"def op_count_jBncVCNhdl(a, b):\n if op_mqXw5SEYmG(b,434) <= 441 and op_gx7XJ7hdpj(a,180) >= 132:\n count = op_count_RygbFNSyEJ(156,a)+op_count_9ICcGScMcE(b)+op_count_COABgblf1C(op_RygbFNSyEJ(156,a),op_9ICcGScMcE(b))+op_count_mqXw5SEYmG(b,434)+op_count_gx7XJ7hdpj(a,180)\n else:\n count = op_count_C6VvDP6HwP(a)+op_count_7IPrd9c3lf(op_C6VvDP6HwP(a))\n return count\n","dependencies":["RygbFNSyEJ","gx7XJ7hdpj","9ICcGScMcE","C6VvDP6HwP","mqXw5SEYmG","7IPrd9c3lf","COABgblf1C"]} +{"id":344,"func_id":"GODebY97qR","symbol":"⪟⇏","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪟⇏b = { ((b⨑≵⋬b)⫸⇳(440⪒a)) , if (b⇐≅)<189 ; ((219⨑≵⋬a)⪘⫢(b⨵⪆b)) , else }","definition_type":"branch_definition","priority":25,"associativity_direction":"left","op_compute_func":"def op_GODebY97qR(a, b):\n if op_wEfv7U73WA(b) < 189:\n return op_gx7XJ7hdpj(op_XnXgA4xnOs(b,b),op_f6k1SAg4EE(440,a))\n else:\n return op_oacrs7FA3X(op_XnXgA4xnOs(219,a),op_2DQ55sFlQl(b,b))\n","op_count_func":"def op_count_GODebY97qR(a, b):\n if op_wEfv7U73WA(b) < 189:\n count = op_count_XnXgA4xnOs(b,b)+op_count_f6k1SAg4EE(440,a)+op_count_gx7XJ7hdpj(op_XnXgA4xnOs(b,b),op_f6k1SAg4EE(440,a))+op_count_wEfv7U73WA(b)\n else:\n count = op_count_XnXgA4xnOs(219,a)+op_count_2DQ55sFlQl(b,b)+op_count_oacrs7FA3X(op_XnXgA4xnOs(219,a),op_2DQ55sFlQl(b,b))\n return count\n","dependencies":["gx7XJ7hdpj","XnXgA4xnOs","wEfv7U73WA","2DQ55sFlQl","f6k1SAg4EE","oacrs7FA3X"]} +{"id":345,"func_id":"MGuIdZPyUC","symbol":"⇘","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⇘a = { (⪸((⫓⪴a)→⨶⪴(a⪘⫢a))) , if (⫓⪴a)>35 ; (((a*a)⊢)⊔((a⊢a)⇌⫙⪟(193⪒a))) , else }","definition_type":"branch_definition","priority":20,"associativity_direction":"right","op_compute_func":"def op_MGuIdZPyUC(a):\n if op_eLxqMNBOBk(a) > 35:\n return op_86A5ENbKR9(op_bF6eod5Gvf(op_eLxqMNBOBk(a),op_oacrs7FA3X(a,a)))\n else:\n return op_E4l6HwMY31(op_40aOVDgCDB(op_9HNa5Wba9A(a,a)),op_AFVx7xoS7T(op_5twsqlHp2o(a,a),op_f6k1SAg4EE(193,a)))\n","op_count_func":"def op_count_MGuIdZPyUC(a):\n if op_eLxqMNBOBk(a) > 35:\n count = op_count_eLxqMNBOBk(a)+op_count_oacrs7FA3X(a,a)+op_count_bF6eod5Gvf(op_eLxqMNBOBk(a),op_oacrs7FA3X(a,a))+op_count_86A5ENbKR9(op_bF6eod5Gvf(op_eLxqMNBOBk(a),op_oacrs7FA3X(a,a)))+op_count_eLxqMNBOBk(a)\n else:\n count = op_count_9HNa5Wba9A(a,a)+op_count_40aOVDgCDB(op_9HNa5Wba9A(a,a))+op_count_5twsqlHp2o(a,a)+op_count_f6k1SAg4EE(193,a)+op_count_AFVx7xoS7T(op_5twsqlHp2o(a,a),op_f6k1SAg4EE(193,a))+op_count_E4l6HwMY31(op_40aOVDgCDB(op_9HNa5Wba9A(a,a)),op_AFVx7xoS7T(op_5twsqlHp2o(a,a),op_f6k1SAg4EE(193,a)))\n return count\n","dependencies":["eLxqMNBOBk","86A5ENbKR9","9HNa5Wba9A","E4l6HwMY31","40aOVDgCDB","bF6eod5Gvf","AFVx7xoS7T","f6k1SAg4EE","5twsqlHp2o","oacrs7FA3X"]} +{"id":346,"func_id":"R5aXW34M0v","symbol":"∨∊⋏","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"∨∊⋏a = { (((101⋝⋈⪟206)⪍↜⋙(≦∁a))⩼⇪↪((a⩌⋺a)∴(⫇a))) }","definition_type":"simple_definition","priority":31,"associativity_direction":"right","op_compute_func":"def op_R5aXW34M0v(a):\n return op_ocnLzx9CaJ(op_L05ObWFQCd(op_2DDjHMKMc0(101,206),op_9ICcGScMcE(a)),op_hrf7POJlIJ(op_g7Hmc5v1ko(a,a),op_YjI8oCXuph(a)))\n","op_count_func":"def op_count_R5aXW34M0v(a):\n count = op_count_2DDjHMKMc0(101,206)+op_count_9ICcGScMcE(a)+op_count_L05ObWFQCd(op_2DDjHMKMc0(101,206),op_9ICcGScMcE(a))+op_count_g7Hmc5v1ko(a,a)+op_count_YjI8oCXuph(a)+op_count_hrf7POJlIJ(op_g7Hmc5v1ko(a,a),op_YjI8oCXuph(a))+op_count_ocnLzx9CaJ(op_L05ObWFQCd(op_2DDjHMKMc0(101,206),op_9ICcGScMcE(a)),op_hrf7POJlIJ(op_g7Hmc5v1ko(a,a),op_YjI8oCXuph(a)))\n return count\n","dependencies":["L05ObWFQCd","YjI8oCXuph","9ICcGScMcE","g7Hmc5v1ko","ocnLzx9CaJ","2DDjHMKMc0","hrf7POJlIJ"]} +{"id":347,"func_id":"mp94q5OcYM","symbol":"⨈⪑","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⨈⪑a = { (((⫇a)⫃⨇(89⪮%⊝a))≬⋮((a≚⊃≕a)∲⫓(a⪮%⊝117))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_mp94q5OcYM(a):\n return op_kbkesczE7y(op_09Ly4LVMIf(op_YjI8oCXuph(a),op_IWmyXbctLI(89,a)),op_i8ToyICDmI(op_Bmrmz2XGnR(a,a),op_IWmyXbctLI(a,117)))\n","op_count_func":"def op_count_mp94q5OcYM(a):\n count = op_count_YjI8oCXuph(a)+op_count_IWmyXbctLI(89,a)+op_count_09Ly4LVMIf(op_YjI8oCXuph(a),op_IWmyXbctLI(89,a))+op_count_Bmrmz2XGnR(a,a)+op_count_IWmyXbctLI(a,117)+op_count_i8ToyICDmI(op_Bmrmz2XGnR(a,a),op_IWmyXbctLI(a,117))+op_count_kbkesczE7y(op_09Ly4LVMIf(op_YjI8oCXuph(a),op_IWmyXbctLI(89,a)),op_i8ToyICDmI(op_Bmrmz2XGnR(a,a),op_IWmyXbctLI(a,117)))\n return count\n","dependencies":["YjI8oCXuph","09Ly4LVMIf","Bmrmz2XGnR","kbkesczE7y","i8ToyICDmI","IWmyXbctLI"]} +{"id":348,"func_id":"QDVgd2eftb","symbol":"⊮⊟↴","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⊮⊟↴b = { ((⩰267)⪨⊡(b⊝⪿⪼a)) , if a!=19 ; ((b⨎372)/(b⪑⩈)) , else }","definition_type":"branch_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_QDVgd2eftb(a, b):\n if a != 19:\n return op_kuIXHzHcAH(op_WkeUrDK8WX(267),op_3Oe9XWJUTD(b,a))\n else:\n return op_XhwjNDsVaA(op_rJVOvQCfKK(b,372),op_C6VvDP6HwP(b))\n","op_count_func":"def op_count_QDVgd2eftb(a, b):\n if a != 19:\n count = op_count_WkeUrDK8WX(267)+op_count_3Oe9XWJUTD(b,a)+op_count_kuIXHzHcAH(op_WkeUrDK8WX(267),op_3Oe9XWJUTD(b,a))\n else:\n count = op_count_rJVOvQCfKK(b,372)+op_count_C6VvDP6HwP(b)+op_count_XhwjNDsVaA(op_rJVOvQCfKK(b,372),op_C6VvDP6HwP(b))\n return count\n","dependencies":["XhwjNDsVaA","C6VvDP6HwP","WkeUrDK8WX","kuIXHzHcAH","3Oe9XWJUTD","rJVOvQCfKK"]} +{"id":349,"func_id":"W4tP9CfskL","symbol":"⊋","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⊋b = { (⇠((b⇤b)⩦(b≧⫂∧a))) , if ((a⊵↤)<=50 or b<=499 or (b+⪬∐218)==39) ; (((b⨰a)⇋≉)*(⪲⇎(b⩣⫁∢b))) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_W4tP9CfskL(a, b):\n if (op_7IPrd9c3lf(a) <= 50 or b <= 499 or op_2GS7woTJqF(b,218) == 39):\n return op_18saOjeKKm(op_0kmYd0q39Y(op_YSKBFp38Pu(b,b),op_Ph9nP6C5qx(b,a)))\n else:\n return op_9HNa5Wba9A(op_XIabStNQrY(op_eewbuw0ToL(b,a)),op_XPYlsWDdGa(op_JDUIKTTSIa(b,b)))\n","op_count_func":"def op_count_W4tP9CfskL(a, b):\n if (op_7IPrd9c3lf(a) <= 50 or b <= 499 or op_2GS7woTJqF(b,218) == 39):\n count = op_count_YSKBFp38Pu(b,b)+op_count_Ph9nP6C5qx(b,a)+op_count_0kmYd0q39Y(op_YSKBFp38Pu(b,b),op_Ph9nP6C5qx(b,a))+op_count_18saOjeKKm(op_0kmYd0q39Y(op_YSKBFp38Pu(b,b),op_Ph9nP6C5qx(b,a)))+op_count_7IPrd9c3lf(a)+op_count_2GS7woTJqF(b,218)\n else:\n count = op_count_eewbuw0ToL(b,a)+op_count_XIabStNQrY(op_eewbuw0ToL(b,a))+op_count_JDUIKTTSIa(b,b)+op_count_XPYlsWDdGa(op_JDUIKTTSIa(b,b))+op_count_9HNa5Wba9A(op_XIabStNQrY(op_eewbuw0ToL(b,a)),op_XPYlsWDdGa(op_JDUIKTTSIa(b,b)))\n return count\n","dependencies":["2GS7woTJqF","18saOjeKKm","XPYlsWDdGa","JDUIKTTSIa","9HNa5Wba9A","XIabStNQrY","0kmYd0q39Y","Ph9nP6C5qx","eewbuw0ToL","7IPrd9c3lf","YSKBFp38Pu"]} +{"id":350,"func_id":"212REbPD9h","symbol":"⋾⨃∁","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⋾⨃∁b = { ((430⊉↱≁b)⨵⪆b) , if (a⪒898)>=359 ; ((⫓⪴b)⊉↱≁(26⋥≓≎b)) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_212REbPD9h(a, b):\n if op_f6k1SAg4EE(a,898) >= 359:\n return op_2DQ55sFlQl(op_w2P8NbNXyL(430,b),b)\n else:\n return op_w2P8NbNXyL(op_eLxqMNBOBk(b),op_Qy55tPpLXF(26,b))\n","op_count_func":"def op_count_212REbPD9h(a, b):\n if op_f6k1SAg4EE(a,898) >= 359:\n count = op_count_w2P8NbNXyL(430,b)+op_count_2DQ55sFlQl(op_w2P8NbNXyL(430,b),b)+op_count_f6k1SAg4EE(a,898)\n else:\n count = op_count_eLxqMNBOBk(b)+op_count_Qy55tPpLXF(26,b)+op_count_w2P8NbNXyL(op_eLxqMNBOBk(b),op_Qy55tPpLXF(26,b))\n return count\n","dependencies":["eLxqMNBOBk","Qy55tPpLXF","w2P8NbNXyL","2DQ55sFlQl","f6k1SAg4EE"]} +{"id":351,"func_id":"kHoXpA7yos","symbol":"⩅⪻⪻","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⩅⪻⪻ = { (a⪄((a∌↝a)⨽(a∺≝⩲a))) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_kHoXpA7yos(a):\n return op_SUmda5xLS4(a,op_8HhzD0ZcuI(op_9Isq31Ruls(a,a),op_KPf6cnQVty(a,a)))\n","op_count_func":"def op_count_kHoXpA7yos(a):\n count = op_count_9Isq31Ruls(a,a)+op_count_KPf6cnQVty(a,a)+op_count_8HhzD0ZcuI(op_9Isq31Ruls(a,a),op_KPf6cnQVty(a,a))+op_count_SUmda5xLS4(a,op_8HhzD0ZcuI(op_9Isq31Ruls(a,a),op_KPf6cnQVty(a,a)))\n return count\n","dependencies":["SUmda5xLS4","KPf6cnQVty","8HhzD0ZcuI","9Isq31Ruls"]} +{"id":352,"func_id":"y75s1iXyHd","symbol":"⨒","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨒b = { ((⨵≀≌(a⪘⫢b))⩉⊫⨁) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_y75s1iXyHd(a, b):\n return op_7qqUquhhSb(op_srAu1WTS94(op_oacrs7FA3X(a,b)))\n","op_count_func":"def op_count_y75s1iXyHd(a, b):\n count = op_count_oacrs7FA3X(a,b)+op_count_srAu1WTS94(op_oacrs7FA3X(a,b))+op_count_7qqUquhhSb(op_srAu1WTS94(op_oacrs7FA3X(a,b)))\n return count\n","dependencies":["srAu1WTS94","oacrs7FA3X","7qqUquhhSb"]} +{"id":353,"func_id":"CqXKPLVYql","symbol":"∮","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"∮a = { ((a⩹a)⨰(⫓⪴488)) , if (a<=186 and a<741 and (a⨱∎)<232) ; ((a≎⊠⪸a)⨔⇊(973∠↢a)) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_CqXKPLVYql(a):\n if (a <= 186 and a < 741 and op_MmTdOpaElr(a) < 232):\n return op_eewbuw0ToL(op_2Wsdkap16l(a,a),op_eLxqMNBOBk(488))\n else:\n return op_JclMnS0uGI(op_bJkvcejdHO(a,a),op_KbjG8mgYpV(973,a))\n","op_count_func":"def op_count_CqXKPLVYql(a):\n if (a <= 186 and a < 741 and op_MmTdOpaElr(a) < 232):\n count = op_count_2Wsdkap16l(a,a)+op_count_eLxqMNBOBk(488)+op_count_eewbuw0ToL(op_2Wsdkap16l(a,a),op_eLxqMNBOBk(488))+op_count_MmTdOpaElr(a)\n else:\n count = op_count_bJkvcejdHO(a,a)+op_count_KbjG8mgYpV(973,a)+op_count_JclMnS0uGI(op_bJkvcejdHO(a,a),op_KbjG8mgYpV(973,a))\n return count\n","dependencies":["2Wsdkap16l","eLxqMNBOBk","KbjG8mgYpV","MmTdOpaElr","JclMnS0uGI","bJkvcejdHO","eewbuw0ToL"]} +{"id":354,"func_id":"kn8WO9XteQ","symbol":"⨭⪣","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨭⪣b = { ((486⇩)⩵∡(a∣a)) , if (b⇯⋐)>445 or (≋b)>319 or b<=69 ; (↯⪼(⇋↷b)) , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_kn8WO9XteQ(a, b):\n if op_LkLIoiE525(b) > 445 or op_61wBmkZwlr(b) > 319 or b <= 69:\n return op_Y7wcNGrDQJ(op_vRio1gEz1j(486),op_PPChnnnBFF(a,a))\n else:\n return op_8jW3W4yZS5(op_SWo3A1KBJH(b))\n","op_count_func":"def op_count_kn8WO9XteQ(a, b):\n if op_LkLIoiE525(b) > 445 or op_61wBmkZwlr(b) > 319 or b <= 69:\n count = op_count_vRio1gEz1j(486)+op_count_PPChnnnBFF(a,a)+op_count_Y7wcNGrDQJ(op_vRio1gEz1j(486),op_PPChnnnBFF(a,a))+op_count_LkLIoiE525(b)+op_count_61wBmkZwlr(b)\n else:\n count = op_count_SWo3A1KBJH(b)+op_count_8jW3W4yZS5(op_SWo3A1KBJH(b))\n return count\n","dependencies":["vRio1gEz1j","61wBmkZwlr","SWo3A1KBJH","8jW3W4yZS5","LkLIoiE525","Y7wcNGrDQJ","PPChnnnBFF"]} +{"id":355,"func_id":"wicAB68Tmb","symbol":"⪝","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪝b = { (⨩∲⋌((a⪍↜⋙b)⪘⫢(⫓⪴385))) }","definition_type":"simple_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_wicAB68Tmb(a, b):\n return op_aSik1wnThz(op_oacrs7FA3X(op_L05ObWFQCd(a,b),op_eLxqMNBOBk(385)))\n","op_count_func":"def op_count_wicAB68Tmb(a, b):\n count = op_count_L05ObWFQCd(a,b)+op_count_eLxqMNBOBk(385)+op_count_oacrs7FA3X(op_L05ObWFQCd(a,b),op_eLxqMNBOBk(385))+op_count_aSik1wnThz(op_oacrs7FA3X(op_L05ObWFQCd(a,b),op_eLxqMNBOBk(385)))\n return count\n","dependencies":["L05ObWFQCd","eLxqMNBOBk","aSik1wnThz","oacrs7FA3X"]} +{"id":356,"func_id":"4X4GscPmMf","symbol":"⨕⋳","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⨕⋳ = { ((⋼∭⪍(a∴a))⊉↱≁(⋂(a↹⊜60))) , if (a∝72)!=68 ; (((a≎⊠⪸503)⇄(a∇⊂⋱a))⪛a) , else }","definition_type":"branch_definition","priority":28,"associativity_direction":"left","op_compute_func":"def op_4X4GscPmMf(a):\n if op_cTDWOvIxvz(a,72) != 68:\n return op_w2P8NbNXyL(op_DbCuESL50I(op_hrf7POJlIJ(a,a)),op_BUOGQAYlQx(op_9bazX3JMtO(a,60)))\n else:\n return op_uFcxV4UQCh(op_3EYGwJThht(op_bJkvcejdHO(a,503),op_nhYeJWJD5X(a,a)),a)\n","op_count_func":"def op_count_4X4GscPmMf(a):\n if op_cTDWOvIxvz(a,72) != 68:\n count = op_count_hrf7POJlIJ(a,a)+op_count_DbCuESL50I(op_hrf7POJlIJ(a,a))+op_count_9bazX3JMtO(a,60)+op_count_BUOGQAYlQx(op_9bazX3JMtO(a,60))+op_count_w2P8NbNXyL(op_DbCuESL50I(op_hrf7POJlIJ(a,a)),op_BUOGQAYlQx(op_9bazX3JMtO(a,60)))+op_count_cTDWOvIxvz(a,72)\n else:\n count = op_count_bJkvcejdHO(a,503)+op_count_nhYeJWJD5X(a,a)+op_count_3EYGwJThht(op_bJkvcejdHO(a,503),op_nhYeJWJD5X(a,a))+op_count_uFcxV4UQCh(op_3EYGwJThht(op_bJkvcejdHO(a,503),op_nhYeJWJD5X(a,a)),a)\n return count\n","dependencies":["9bazX3JMtO","nhYeJWJD5X","DbCuESL50I","3EYGwJThht","w2P8NbNXyL","uFcxV4UQCh","bJkvcejdHO","BUOGQAYlQx","cTDWOvIxvz","hrf7POJlIJ"]} +{"id":357,"func_id":"Dk5vyLCiGd","symbol":"⨎⋸⪻","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⨎⋸⪻ = { (a⪮%⊝26) }","definition_type":"simple_definition","priority":29,"associativity_direction":"left","op_compute_func":"def op_Dk5vyLCiGd(a):\n return op_IWmyXbctLI(a,26)\n","op_count_func":"def op_count_Dk5vyLCiGd(a):\n count = op_count_IWmyXbctLI(a,26)\n return count\n","dependencies":["IWmyXbctLI"]} +{"id":358,"func_id":"8INZBEW696","symbol":"≀⩗∶","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a≀⩗∶b = { (a⩨b) , if (a∺≝⩲555)<251 ; (306↪⪝) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_8INZBEW696(a, b):\n if op_KPf6cnQVty(a,555) < 251:\n return op_2DlMacCsIx(a,b)\n else:\n return op_l07mrZUIn9(306)\n","op_count_func":"def op_count_8INZBEW696(a, b):\n if op_KPf6cnQVty(a,555) < 251:\n count = op_count_2DlMacCsIx(a,b)+op_count_KPf6cnQVty(a,555)\n else:\n count = op_count_l07mrZUIn9(306)\n return count\n","dependencies":["KPf6cnQVty","2DlMacCsIx","l07mrZUIn9"]} +{"id":359,"func_id":"LXhwmt4mBO","symbol":"⨫⇇↔","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⨫⇇↔b = { ((9⊉≛↸b)⫯⪬∳(a⨎a)) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_LXhwmt4mBO(a, b):\n return op_d7ASUq0ydm(op_DZ8iAZOCBD(9,b),op_rJVOvQCfKK(a,a))\n","op_count_func":"def op_count_LXhwmt4mBO(a, b):\n count = op_count_DZ8iAZOCBD(9,b)+op_count_rJVOvQCfKK(a,a)+op_count_d7ASUq0ydm(op_DZ8iAZOCBD(9,b),op_rJVOvQCfKK(a,a))\n return count\n","dependencies":["d7ASUq0ydm","DZ8iAZOCBD","rJVOvQCfKK"]} +{"id":360,"func_id":"E64sFOc4tB","symbol":"⋎���","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⋎⨆a = { (a⪇≇⋚a) , if (⊁⨺a)>31 and (⨡↴a)>=90 ; (136↪⪝) , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_E64sFOc4tB(a):\n if op_PxiHyQbrIp(a) > 31 and op_liw5iZPkLH(a) >= 90:\n return op_3sJ7IOPOlU(a,a)\n else:\n return op_l07mrZUIn9(136)\n","op_count_func":"def op_count_E64sFOc4tB(a):\n if op_PxiHyQbrIp(a) > 31 and op_liw5iZPkLH(a) >= 90:\n count = op_count_3sJ7IOPOlU(a,a)+op_count_PxiHyQbrIp(a)+op_count_liw5iZPkLH(a)\n else:\n count = op_count_l07mrZUIn9(136)\n return count\n","dependencies":["PxiHyQbrIp","l07mrZUIn9","3sJ7IOPOlU","liw5iZPkLH"]} +{"id":361,"func_id":"qL4PrbW1Dq","symbol":"⪡⇡≛","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⪡⇡≛a = { (a∌a) , if (a⪘⫢111)>=396 or (≅≯⇸a)!=229 or (a⪣⫩)<228 ; (a≫≃) , else }","definition_type":"branch_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_qL4PrbW1Dq(a):\n if op_oacrs7FA3X(a,111) >= 396 or op_apS25hmuAe(a) != 229 or op_iuk5sVOGFA(a) < 228:\n return op_8cLx32lpNA(a,a)\n else:\n return op_X99M06cbEe(a)\n","op_count_func":"def op_count_qL4PrbW1Dq(a):\n if op_oacrs7FA3X(a,111) >= 396 or op_apS25hmuAe(a) != 229 or op_iuk5sVOGFA(a) < 228:\n count = op_count_8cLx32lpNA(a,a)+op_count_oacrs7FA3X(a,111)+op_count_apS25hmuAe(a)+op_count_iuk5sVOGFA(a)\n else:\n count = op_count_X99M06cbEe(a)\n return count\n","dependencies":["oacrs7FA3X","apS25hmuAe","iuk5sVOGFA","8cLx32lpNA","X99M06cbEe"]} +{"id":362,"func_id":"jCPkEVoL5K","symbol":"⇻⋧≁","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⇻⋧≁b = { ((⫓⪴a)⫚↹⊑(54≫≃)) , if (a∵≐)<=35 or a>411 ; ((⪝⪂⫅b)⇄(290⨑≵⋬a)) , else }","definition_type":"branch_definition","priority":29,"associativity_direction":"left","op_compute_func":"def op_jCPkEVoL5K(a, b):\n if op_59igzFyhWz(a) <= 35 or a > 411:\n return op_dfKe02y8D2(op_eLxqMNBOBk(a),op_X99M06cbEe(54))\n else:\n return op_3EYGwJThht(op_XTarYq4gQB(b),op_XnXgA4xnOs(290,a))\n","op_count_func":"def op_count_jCPkEVoL5K(a, b):\n if op_59igzFyhWz(a) <= 35 or a > 411:\n count = op_count_eLxqMNBOBk(a)+op_count_X99M06cbEe(54)+op_count_dfKe02y8D2(op_eLxqMNBOBk(a),op_X99M06cbEe(54))+op_count_59igzFyhWz(a)\n else:\n count = op_count_XTarYq4gQB(b)+op_count_XnXgA4xnOs(290,a)+op_count_3EYGwJThht(op_XTarYq4gQB(b),op_XnXgA4xnOs(290,a))\n return count\n","dependencies":["eLxqMNBOBk","XnXgA4xnOs","3EYGwJThht","XTarYq4gQB","59igzFyhWz","dfKe02y8D2","X99M06cbEe"]} +{"id":363,"func_id":"ZvLB05nZmT","symbol":"⫳≱↱","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⫳≱↱b = { (((a⩹b)⇐≅)∌((a∙∹∝345)⊱⇼⊻(b≎⊠⪸a))) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_ZvLB05nZmT(a, b):\n return op_8cLx32lpNA(op_wEfv7U73WA(op_2Wsdkap16l(a,b)),op_FyVja0WsTP(op_HmxsFra2vL(a,345),op_bJkvcejdHO(b,a)))\n","op_count_func":"def op_count_ZvLB05nZmT(a, b):\n count = op_count_2Wsdkap16l(a,b)+op_count_wEfv7U73WA(op_2Wsdkap16l(a,b))+op_count_HmxsFra2vL(a,345)+op_count_bJkvcejdHO(b,a)+op_count_FyVja0WsTP(op_HmxsFra2vL(a,345),op_bJkvcejdHO(b,a))+op_count_8cLx32lpNA(op_wEfv7U73WA(op_2Wsdkap16l(a,b)),op_FyVja0WsTP(op_HmxsFra2vL(a,345),op_bJkvcejdHO(b,a)))\n return count\n","dependencies":["2Wsdkap16l","FyVja0WsTP","wEfv7U73WA","bJkvcejdHO","HmxsFra2vL","8cLx32lpNA"]} +{"id":364,"func_id":"aA7tF3KVD3","symbol":"⪘⨀","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⪘⨀ = { ((104/a)⪍↜⋙(a↰)) }","definition_type":"simple_definition","priority":25,"associativity_direction":"left","op_compute_func":"def op_aA7tF3KVD3(a):\n return op_L05ObWFQCd(op_XhwjNDsVaA(104,a),op_bl5wxAcryP(a))\n","op_count_func":"def op_count_aA7tF3KVD3(a):\n count = op_count_XhwjNDsVaA(104,a)+op_count_bl5wxAcryP(a)+op_count_L05ObWFQCd(op_XhwjNDsVaA(104,a),op_bl5wxAcryP(a))\n return count\n","dependencies":["bl5wxAcryP","L05ObWFQCd","XhwjNDsVaA"]} +{"id":365,"func_id":"Bi9z9uYZqW","symbol":"⨆≐≲","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⨆≐≲a = { (⇋↷(⇾⩊⇾(a⪄a))) }","definition_type":"simple_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_Bi9z9uYZqW(a):\n return op_SWo3A1KBJH(op_bx9Z9DAK5y(op_SUmda5xLS4(a,a)))\n","op_count_func":"def op_count_Bi9z9uYZqW(a):\n count = op_count_SUmda5xLS4(a,a)+op_count_bx9Z9DAK5y(op_SUmda5xLS4(a,a))+op_count_SWo3A1KBJH(op_bx9Z9DAK5y(op_SUmda5xLS4(a,a)))\n return count\n","dependencies":["SWo3A1KBJH","SUmda5xLS4","bx9Z9DAK5y"]} +{"id":366,"func_id":"QbnwKVWMIQ","symbol":"⪥","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⪥b = { (b∇⊂⋱(58∣a)) , if (b↢721)<125 ; (↩(508⪒a)) , else }","definition_type":"branch_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_QbnwKVWMIQ(a, b):\n if op_WR6HLWljOP(b,721) < 125:\n return op_nhYeJWJD5X(b,op_PPChnnnBFF(58,a))\n else:\n return op_jLgFTUHLKL(op_f6k1SAg4EE(508,a))\n","op_count_func":"def op_count_QbnwKVWMIQ(a, b):\n if op_WR6HLWljOP(b,721) < 125:\n count = op_count_PPChnnnBFF(58,a)+op_count_nhYeJWJD5X(b,op_PPChnnnBFF(58,a))+op_count_WR6HLWljOP(b,721)\n else:\n count = op_count_f6k1SAg4EE(508,a)+op_count_jLgFTUHLKL(op_f6k1SAg4EE(508,a))\n return count\n","dependencies":["WR6HLWljOP","nhYeJWJD5X","f6k1SAg4EE","jLgFTUHLKL","PPChnnnBFF"]} +{"id":367,"func_id":"RhiyfpczSx","symbol":"⊗","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⊗a = { (64∇⊂⋱a) , if (a⪚13)>=164 ; (a∘(a⩠)) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_RhiyfpczSx(a):\n if op_HrjLwUk87U(a,13) >= 164:\n return op_nhYeJWJD5X(64,a)\n else:\n return op_Z5m6OM72h2(a,op_sJAwomhLZr(a))\n","op_count_func":"def op_count_RhiyfpczSx(a):\n if op_HrjLwUk87U(a,13) >= 164:\n count = op_count_nhYeJWJD5X(64,a)+op_count_HrjLwUk87U(a,13)\n else:\n count = op_count_sJAwomhLZr(a)+op_count_Z5m6OM72h2(a,op_sJAwomhLZr(a))\n return count\n","dependencies":["nhYeJWJD5X","sJAwomhLZr","Z5m6OM72h2","HrjLwUk87U"]} +{"id":368,"func_id":"tcjXMdvYtA","symbol":"≘","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"≘a = { ((⊀(⪝⪂⫅a))⫁⪎(a⪘⫢(⋂a))) }","definition_type":"simple_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_tcjXMdvYtA(a):\n return op_xRrnTEsQ6j(op_oPMjh9089D(op_XTarYq4gQB(a)),op_oacrs7FA3X(a,op_BUOGQAYlQx(a)))\n","op_count_func":"def op_count_tcjXMdvYtA(a):\n count = op_count_XTarYq4gQB(a)+op_count_oPMjh9089D(op_XTarYq4gQB(a))+op_count_BUOGQAYlQx(a)+op_count_oacrs7FA3X(a,op_BUOGQAYlQx(a))+op_count_xRrnTEsQ6j(op_oPMjh9089D(op_XTarYq4gQB(a)),op_oacrs7FA3X(a,op_BUOGQAYlQx(a)))\n return count\n","dependencies":["XTarYq4gQB","xRrnTEsQ6j","oPMjh9089D","BUOGQAYlQx","oacrs7FA3X"]} +{"id":369,"func_id":"G9tJMlZ94a","symbol":"⇨","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⇨a = { (a%a) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_G9tJMlZ94a(a):\n return op_k8jYdgA6NY(a,a)\n","op_count_func":"def op_count_G9tJMlZ94a(a):\n count = op_count_k8jYdgA6NY(a,a)\n return count\n","dependencies":["k8jYdgA6NY"]} +{"id":370,"func_id":"AvED76WdY7","symbol":"⊵⊁","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⊵⊁a = { (a⇔⨋) , if a>58 ; (a%a) , else }","definition_type":"branch_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_AvED76WdY7(a):\n if a > 58:\n return op_uBihLCJcMX(a)\n else:\n return op_k8jYdgA6NY(a,a)\n","op_count_func":"def op_count_AvED76WdY7(a):\n if a > 58:\n count = op_count_uBihLCJcMX(a)\n else:\n count = op_count_k8jYdgA6NY(a,a)\n return count\n","dependencies":["uBihLCJcMX","k8jYdgA6NY"]} +{"id":371,"func_id":"gub5Cegaqo","symbol":"⩁⩘","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a⩁⩘b = { ((b⪮%⊝b)⪮%⊝(⋗⩬⋾a)) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_gub5Cegaqo(a, b):\n return op_IWmyXbctLI(op_IWmyXbctLI(b,b),op_DpFCA1CohY(a))\n","op_count_func":"def op_count_gub5Cegaqo(a, b):\n count = op_count_IWmyXbctLI(b,b)+op_count_DpFCA1CohY(a)+op_count_IWmyXbctLI(op_IWmyXbctLI(b,b),op_DpFCA1CohY(a))\n return count\n","dependencies":["DpFCA1CohY","IWmyXbctLI"]} +{"id":372,"func_id":"LdNpr8hQHL","symbol":"↘","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"↘a = { (a⪛392) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_LdNpr8hQHL(a):\n return op_uFcxV4UQCh(a,392)\n","op_count_func":"def op_count_LdNpr8hQHL(a):\n count = op_count_uFcxV4UQCh(a,392)\n return count\n","dependencies":["uFcxV4UQCh"]} +{"id":373,"func_id":"SL6IHkK8vl","symbol":"∐⩳⋚","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"∐⩳⋚a = { (⊲⪭((⇠a)⪶≀⋏(a⪒a))) , if (⫟a)==290 ; ((⪝⪂⫅(105⫁⪎a))⊬⨰(a≧⫂∧(a∷a))) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_SL6IHkK8vl(a):\n if op_z4E1FaHLuy(a) == 290:\n return op_k7HXdKtiEU(op_zR4jO40bMj(op_18saOjeKKm(a),op_f6k1SAg4EE(a,a)))\n else:\n return op_s3Fd5m9Dh2(op_XTarYq4gQB(op_xRrnTEsQ6j(105,a)),op_Ph9nP6C5qx(a,op_D3AQDKkPcf(a,a)))\n","op_count_func":"def op_count_SL6IHkK8vl(a):\n if op_z4E1FaHLuy(a) == 290:\n count = op_count_18saOjeKKm(a)+op_count_f6k1SAg4EE(a,a)+op_count_zR4jO40bMj(op_18saOjeKKm(a),op_f6k1SAg4EE(a,a))+op_count_k7HXdKtiEU(op_zR4jO40bMj(op_18saOjeKKm(a),op_f6k1SAg4EE(a,a)))+op_count_z4E1FaHLuy(a)\n else:\n count = op_count_xRrnTEsQ6j(105,a)+op_count_XTarYq4gQB(op_xRrnTEsQ6j(105,a))+op_count_D3AQDKkPcf(a,a)+op_count_Ph9nP6C5qx(a,op_D3AQDKkPcf(a,a))+op_count_s3Fd5m9Dh2(op_XTarYq4gQB(op_xRrnTEsQ6j(105,a)),op_Ph9nP6C5qx(a,op_D3AQDKkPcf(a,a)))\n return count\n","dependencies":["s3Fd5m9Dh2","zR4jO40bMj","18saOjeKKm","k7HXdKtiEU","z4E1FaHLuy","XTarYq4gQB","xRrnTEsQ6j","Ph9nP6C5qx","f6k1SAg4EE","D3AQDKkPcf"]} +{"id":374,"func_id":"CDi0ktkjQ4","symbol":"⩷⨜⫀","n_ary":1,"unary_position":"prefix","n_order":2,"is_base":null,"definition":"⩷⨜⫀a = { (a∇⊂⋱383) , if a<1 ; (↔a) , else }","definition_type":"branch_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_CDi0ktkjQ4(a):\n if a < 1:\n return op_nhYeJWJD5X(a,383)\n else:\n return op_ruOEQAzv1W(a)\n","op_count_func":"def op_count_CDi0ktkjQ4(a):\n if a < 1:\n count = op_count_nhYeJWJD5X(a,383)\n else:\n count = op_count_ruOEQAzv1W(a)\n return count\n","dependencies":["ruOEQAzv1W","nhYeJWJD5X"]} +{"id":375,"func_id":"EKiFHuOFxO","symbol":"⊧↖","n_ary":1,"unary_position":"postfix","n_order":2,"is_base":null,"definition":"a⊧↖ = { ((a⨽a)⊢(a⫚↹⊑79)) }","definition_type":"simple_definition","priority":29,"associativity_direction":"left","op_compute_func":"def op_EKiFHuOFxO(a):\n return op_5twsqlHp2o(op_8HhzD0ZcuI(a,a),op_dfKe02y8D2(a,79))\n","op_count_func":"def op_count_EKiFHuOFxO(a):\n count = op_count_8HhzD0ZcuI(a,a)+op_count_dfKe02y8D2(a,79)+op_count_5twsqlHp2o(op_8HhzD0ZcuI(a,a),op_dfKe02y8D2(a,79))\n return count\n","dependencies":["5twsqlHp2o","dfKe02y8D2","8HhzD0ZcuI"]} +{"id":376,"func_id":"1eCjFl0mb9","symbol":"↸","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a↸b = { ((b*a)⨎(≋a)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_1eCjFl0mb9(a, b):\n return op_rJVOvQCfKK(op_9HNa5Wba9A(b,a),op_61wBmkZwlr(a))\n","op_count_func":"def op_count_1eCjFl0mb9(a, b):\n count = op_count_9HNa5Wba9A(b,a)+op_count_61wBmkZwlr(a)+op_count_rJVOvQCfKK(op_9HNa5Wba9A(b,a),op_61wBmkZwlr(a))\n return count\n","dependencies":["9HNa5Wba9A","61wBmkZwlr","rJVOvQCfKK"]} +{"id":377,"func_id":"lvlrscuwVU","symbol":"≴⪞⇿","n_ary":2,"unary_position":null,"n_order":2,"is_base":null,"definition":"a≴⪞⇿b = { ((⋗⩬⋾(b≚⊃≕166))⋥≓≎(⨵≀≌(⨑⩽⪐a))) }","definition_type":"simple_definition","priority":23,"associativity_direction":"left","op_compute_func":"def op_lvlrscuwVU(a, b):\n return op_Qy55tPpLXF(op_DpFCA1CohY(op_Bmrmz2XGnR(b,166)),op_srAu1WTS94(op_AF7qkfDlqP(a)))\n","op_count_func":"def op_count_lvlrscuwVU(a, b):\n count = op_count_Bmrmz2XGnR(b,166)+op_count_DpFCA1CohY(op_Bmrmz2XGnR(b,166))+op_count_AF7qkfDlqP(a)+op_count_srAu1WTS94(op_AF7qkfDlqP(a))+op_count_Qy55tPpLXF(op_DpFCA1CohY(op_Bmrmz2XGnR(b,166)),op_srAu1WTS94(op_AF7qkfDlqP(a)))\n return count\n","dependencies":["DpFCA1CohY","Qy55tPpLXF","Bmrmz2XGnR","srAu1WTS94","AF7qkfDlqP"]} +{"id":378,"func_id":"KmoU8R5UQR","symbol":"⨸","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⨸b = { ((a⋫)⪒⊣⊆(b∋158)) }","definition_type":"simple_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_KmoU8R5UQR(a, b):\n return op_eRqsBgTDFp(op_JL8yIekQnl(a),op_ukq6epAj5P(b,158))\n","op_count_func":"def op_count_KmoU8R5UQR(a, b):\n count = op_count_JL8yIekQnl(a)+op_count_ukq6epAj5P(b,158)+op_count_eRqsBgTDFp(op_JL8yIekQnl(a),op_ukq6epAj5P(b,158))\n return count\n","dependencies":["ukq6epAj5P","eRqsBgTDFp","JL8yIekQnl"]} +{"id":379,"func_id":"AcOhelriW5","symbol":"⨣⨃⇪","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⨣⨃⇪a = { (⨡↴(172⊬⨰(3↙a))) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_AcOhelriW5(a):\n return op_liw5iZPkLH(op_s3Fd5m9Dh2(172,op_yyfyN0ffXY(3,a)))\n","op_count_func":"def op_count_AcOhelriW5(a):\n count = op_count_yyfyN0ffXY(3,a)+op_count_s3Fd5m9Dh2(172,op_yyfyN0ffXY(3,a))+op_count_liw5iZPkLH(op_s3Fd5m9Dh2(172,op_yyfyN0ffXY(3,a)))\n return count\n","dependencies":["s3Fd5m9Dh2","liw5iZPkLH","yyfyN0ffXY"]} +{"id":380,"func_id":"waWucp1uQ4","symbol":"⩎⪣⊞","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⩎⪣⊞ = { (a⇷a) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_waWucp1uQ4(a):\n return op_mp7IySMOzn(a,a)\n","op_count_func":"def op_count_waWucp1uQ4(a):\n count = op_count_mp7IySMOzn(a,a)\n return count\n","dependencies":["mp7IySMOzn"]} +{"id":381,"func_id":"6aG7x05OhS","symbol":"⫩","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⫩ = { (a⪢a) }","definition_type":"simple_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_6aG7x05OhS(a):\n return op_dWAJyo7jo9(a,a)\n","op_count_func":"def op_count_6aG7x05OhS(a):\n count = op_count_dWAJyo7jo9(a,a)\n return count\n","dependencies":["dWAJyo7jo9"]} +{"id":382,"func_id":"U4ylXWHChL","symbol":"⫖→","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⫖→a = { (((a⨪↰⇹a)⇌⫙⪟(a⩧⪆a))∸) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_U4ylXWHChL(a):\n return op_o20kRiQErp(op_AFVx7xoS7T(op_tmPS8pqC7x(a,a),op_Ikt5ks8PT7(a,a)))\n","op_count_func":"def op_count_U4ylXWHChL(a):\n count = op_count_tmPS8pqC7x(a,a)+op_count_Ikt5ks8PT7(a,a)+op_count_AFVx7xoS7T(op_tmPS8pqC7x(a,a),op_Ikt5ks8PT7(a,a))+op_count_o20kRiQErp(op_AFVx7xoS7T(op_tmPS8pqC7x(a,a),op_Ikt5ks8PT7(a,a)))\n return count\n","dependencies":["tmPS8pqC7x","Ikt5ks8PT7","AFVx7xoS7T","o20kRiQErp"]} +{"id":383,"func_id":"uvdQJvN4PV","symbol":"⩺⪪","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⩺⪪b = { (((b-a)⊱⇼⊻(a⪚23))⩖⊿((612⋩≍≻)≣⋋)) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_uvdQJvN4PV(a, b):\n return op_RZ5CV9rWsJ(op_FyVja0WsTP(op_rysDP5nf3Z(b,a),op_HrjLwUk87U(a,23)),op_Tcnh7f0tEr(op_WYd1w68Nbz(612)))\n","op_count_func":"def op_count_uvdQJvN4PV(a, b):\n count = op_count_rysDP5nf3Z(b,a)+op_count_HrjLwUk87U(a,23)+op_count_FyVja0WsTP(op_rysDP5nf3Z(b,a),op_HrjLwUk87U(a,23))+op_count_WYd1w68Nbz(612)+op_count_Tcnh7f0tEr(op_WYd1w68Nbz(612))+op_count_RZ5CV9rWsJ(op_FyVja0WsTP(op_rysDP5nf3Z(b,a),op_HrjLwUk87U(a,23)),op_Tcnh7f0tEr(op_WYd1w68Nbz(612)))\n return count\n","dependencies":["Tcnh7f0tEr","rysDP5nf3Z","RZ5CV9rWsJ","FyVja0WsTP","WYd1w68Nbz","HrjLwUk87U"]} +{"id":384,"func_id":"VEQNXA0ZBg","symbol":"⪗","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⪗ = { (a⪢a) }","definition_type":"simple_definition","priority":29,"associativity_direction":"left","op_compute_func":"def op_VEQNXA0ZBg(a):\n return op_dWAJyo7jo9(a,a)\n","op_count_func":"def op_count_VEQNXA0ZBg(a):\n count = op_count_dWAJyo7jo9(a,a)\n return count\n","dependencies":["dWAJyo7jo9"]} +{"id":385,"func_id":"mGnSCrte3L","symbol":"∛≔","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a∛≔ = { (((⊙↵-a)⋾⨃∁(a⨻⩈⩔a))≝⊿(a⫸⇳(a⫯⪬∳a))) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_mGnSCrte3L(a):\n return op_OKKcZfAt5B(op_212REbPD9h(op_oWn0xqSxBt(a),op_nEsXyWgiOK(a,a)),op_gx7XJ7hdpj(a,op_d7ASUq0ydm(a,a)))\n","op_count_func":"def op_count_mGnSCrte3L(a):\n count = op_count_oWn0xqSxBt(a)+op_count_nEsXyWgiOK(a,a)+op_count_212REbPD9h(op_oWn0xqSxBt(a),op_nEsXyWgiOK(a,a))+op_count_d7ASUq0ydm(a,a)+op_count_gx7XJ7hdpj(a,op_d7ASUq0ydm(a,a))+op_count_OKKcZfAt5B(op_212REbPD9h(op_oWn0xqSxBt(a),op_nEsXyWgiOK(a,a)),op_gx7XJ7hdpj(a,op_d7ASUq0ydm(a,a)))\n return count\n","dependencies":["d7ASUq0ydm","OKKcZfAt5B","212REbPD9h","gx7XJ7hdpj","nEsXyWgiOK","oWn0xqSxBt"]} +{"id":386,"func_id":"ncHt1X6cMc","symbol":"≁↽≥","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a≁↽≥b = { (a⊝⪿⪼b) , if b>=116 ; (⊙↵-b) , else }","definition_type":"branch_definition","priority":33,"associativity_direction":"left","op_compute_func":"def op_ncHt1X6cMc(a, b):\n if b >= 116:\n return op_3Oe9XWJUTD(a,b)\n else:\n return op_oWn0xqSxBt(b)\n","op_count_func":"def op_count_ncHt1X6cMc(a, b):\n if b >= 116:\n count = op_count_3Oe9XWJUTD(a,b)\n else:\n count = op_count_oWn0xqSxBt(b)\n return count\n","dependencies":["oWn0xqSxBt","3Oe9XWJUTD"]} +{"id":387,"func_id":"gJLn6v0xnP","symbol":"≥⨤⩑","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a≥⨤⩑b = { (b⇷a) , if (b⪘⨀)>356 ; (702∠⫱488) , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_gJLn6v0xnP(a, b):\n if op_aA7tF3KVD3(b) > 356:\n return op_mp7IySMOzn(b,a)\n else:\n return op_QvoQhV0rrE(702,488)\n","op_count_func":"def op_count_gJLn6v0xnP(a, b):\n if op_aA7tF3KVD3(b) > 356:\n count = op_count_mp7IySMOzn(b,a)+op_count_aA7tF3KVD3(b)\n else:\n count = op_count_QvoQhV0rrE(702,488)\n return count\n","dependencies":["mp7IySMOzn","aA7tF3KVD3","QvoQhV0rrE"]} +{"id":388,"func_id":"3DVzLFNsE9","symbol":"↓⨍⋜","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a↓⨍⋜ = { (((a≝⊿a)⪶≀⋏(a∸))⨑≵⋬((a⋥⋵⩄a)∘(a⪶≀⋏a))) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_3DVzLFNsE9(a):\n return op_XnXgA4xnOs(op_zR4jO40bMj(op_OKKcZfAt5B(a,a),op_o20kRiQErp(a)),op_Z5m6OM72h2(op_7t3wd0Fuz7(a,a),op_zR4jO40bMj(a,a)))\n","op_count_func":"def op_count_3DVzLFNsE9(a):\n count = op_count_OKKcZfAt5B(a,a)+op_count_o20kRiQErp(a)+op_count_zR4jO40bMj(op_OKKcZfAt5B(a,a),op_o20kRiQErp(a))+op_count_7t3wd0Fuz7(a,a)+op_count_zR4jO40bMj(a,a)+op_count_Z5m6OM72h2(op_7t3wd0Fuz7(a,a),op_zR4jO40bMj(a,a))+op_count_XnXgA4xnOs(op_zR4jO40bMj(op_OKKcZfAt5B(a,a),op_o20kRiQErp(a)),op_Z5m6OM72h2(op_7t3wd0Fuz7(a,a),op_zR4jO40bMj(a,a)))\n return count\n","dependencies":["OKKcZfAt5B","zR4jO40bMj","XnXgA4xnOs","o20kRiQErp","7t3wd0Fuz7","Z5m6OM72h2"]} +{"id":389,"func_id":"SLLxy00UIr","symbol":"⇈","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⇈a = { (((⨰⫟⨤60)⋥≓≎(a⫍⨯↯))⇻⋧≁((a⇼⇔∾a)⨽(323⊉≛↸a))) }","definition_type":"simple_definition","priority":24,"associativity_direction":"right","op_compute_func":"def op_SLLxy00UIr(a):\n return op_jCPkEVoL5K(op_Qy55tPpLXF(op_Tw270M8GLb(60),op_ZcwmYACASQ(a)),op_8HhzD0ZcuI(op_tifHPKVTfV(a,a),op_DZ8iAZOCBD(323,a)))\n","op_count_func":"def op_count_SLLxy00UIr(a):\n count = op_count_Tw270M8GLb(60)+op_count_ZcwmYACASQ(a)+op_count_Qy55tPpLXF(op_Tw270M8GLb(60),op_ZcwmYACASQ(a))+op_count_tifHPKVTfV(a,a)+op_count_DZ8iAZOCBD(323,a)+op_count_8HhzD0ZcuI(op_tifHPKVTfV(a,a),op_DZ8iAZOCBD(323,a))+op_count_jCPkEVoL5K(op_Qy55tPpLXF(op_Tw270M8GLb(60),op_ZcwmYACASQ(a)),op_8HhzD0ZcuI(op_tifHPKVTfV(a,a),op_DZ8iAZOCBD(323,a)))\n return count\n","dependencies":["Qy55tPpLXF","DZ8iAZOCBD","tifHPKVTfV","Tw270M8GLb","8HhzD0ZcuI","jCPkEVoL5K","ZcwmYACASQ"]} +{"id":390,"func_id":"oZj3VtZNQx","symbol":"≀⫉","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a≀⫉b = { (((55≣⋋)∝(a⩷∴a))⊱⇼⊻((a⪉⨛b)⩧⪆(b⋭≵475))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_oZj3VtZNQx(a, b):\n return op_FyVja0WsTP(op_cTDWOvIxvz(op_Tcnh7f0tEr(55),op_9FxExcQeMw(a,a)),op_Ikt5ks8PT7(op_EWw2JM7wp4(a,b),op_jBncVCNhdl(b,475)))\n","op_count_func":"def op_count_oZj3VtZNQx(a, b):\n count = op_count_Tcnh7f0tEr(55)+op_count_9FxExcQeMw(a,a)+op_count_cTDWOvIxvz(op_Tcnh7f0tEr(55),op_9FxExcQeMw(a,a))+op_count_EWw2JM7wp4(a,b)+op_count_jBncVCNhdl(b,475)+op_count_Ikt5ks8PT7(op_EWw2JM7wp4(a,b),op_jBncVCNhdl(b,475))+op_count_FyVja0WsTP(op_cTDWOvIxvz(op_Tcnh7f0tEr(55),op_9FxExcQeMw(a,a)),op_Ikt5ks8PT7(op_EWw2JM7wp4(a,b),op_jBncVCNhdl(b,475)))\n return count\n","dependencies":["9FxExcQeMw","Tcnh7f0tEr","jBncVCNhdl","FyVja0WsTP","Ikt5ks8PT7","EWw2JM7wp4","cTDWOvIxvz"]} +{"id":391,"func_id":"w5FWba1tyO","symbol":"⪫⨮⊛","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⪫⨮⊛a = { a , if (a⨭⪣527)<=182 ; ((⨰⫟⨤(a⪄a))⩖⊿((a⊬⨰a)∟)) , else }","definition_type":"branch_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_w5FWba1tyO(a):\n if op_kn8WO9XteQ(a,527) <= 182:\n return a\n else:\n return op_RZ5CV9rWsJ(op_Tw270M8GLb(op_SUmda5xLS4(a,a)),op_hTbEZDJLEm(op_s3Fd5m9Dh2(a,a)))\n","op_count_func":"def op_count_w5FWba1tyO(a):\n if op_kn8WO9XteQ(a,527) <= 182:\n count = 1\n else:\n count = op_count_SUmda5xLS4(a,a)+op_count_Tw270M8GLb(op_SUmda5xLS4(a,a))+op_count_s3Fd5m9Dh2(a,a)+op_count_hTbEZDJLEm(op_s3Fd5m9Dh2(a,a))+op_count_RZ5CV9rWsJ(op_Tw270M8GLb(op_SUmda5xLS4(a,a)),op_hTbEZDJLEm(op_s3Fd5m9Dh2(a,a)))\n return count\n","dependencies":["s3Fd5m9Dh2","RZ5CV9rWsJ","SUmda5xLS4","kn8WO9XteQ","hTbEZDJLEm","Tw270M8GLb"]} +{"id":392,"func_id":"6B9nyZLogK","symbol":"≑⋹","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"≑⋹a = { (((a⨓a)⫣⪄⊒(148∸))⇴(⩦⩻⨪(a⇂≾⫗a))) , if a<188 ; (⩎⋉((a⩼⇪↪a)⊭↱(a⪶≀⋏172))) , else }","definition_type":"branch_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_6B9nyZLogK(a):\n if a < 188:\n return op_4JB6nKBMSY(op_RabNbG55vr(op_3ViojmjbAp(a,a),op_o20kRiQErp(148)),op_2td37pGCOC(op_aBQ6xLxuTc(a,a)))\n else:\n return op_FlXk3pOYe8(op_COABgblf1C(op_ocnLzx9CaJ(a,a),op_zR4jO40bMj(a,172)))\n","op_count_func":"def op_count_6B9nyZLogK(a):\n if a < 188:\n count = op_count_3ViojmjbAp(a,a)+op_count_o20kRiQErp(148)+op_count_RabNbG55vr(op_3ViojmjbAp(a,a),op_o20kRiQErp(148))+op_count_aBQ6xLxuTc(a,a)+op_count_2td37pGCOC(op_aBQ6xLxuTc(a,a))+op_count_4JB6nKBMSY(op_RabNbG55vr(op_3ViojmjbAp(a,a),op_o20kRiQErp(148)),op_2td37pGCOC(op_aBQ6xLxuTc(a,a)))\n else:\n count = op_count_ocnLzx9CaJ(a,a)+op_count_zR4jO40bMj(a,172)+op_count_COABgblf1C(op_ocnLzx9CaJ(a,a),op_zR4jO40bMj(a,172))+op_count_FlXk3pOYe8(op_COABgblf1C(op_ocnLzx9CaJ(a,a),op_zR4jO40bMj(a,172)))\n return count\n","dependencies":["aBQ6xLxuTc","zR4jO40bMj","RabNbG55vr","ocnLzx9CaJ","3ViojmjbAp","FlXk3pOYe8","o20kRiQErp","4JB6nKBMSY","2td37pGCOC","COABgblf1C"]} +{"id":393,"func_id":"VCtxkLNOzz","symbol":"↡⊰⫅","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a↡⊰⫅b = { (b⇷b) , if ((b⫁⪎966)!=450 or a!=328 or a==643) ; (b≧⫂∧a) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_VCtxkLNOzz(a, b):\n if (op_xRrnTEsQ6j(b,966) != 450 or a != 328 or a == 643):\n return op_mp7IySMOzn(b,b)\n else:\n return op_Ph9nP6C5qx(b,a)\n","op_count_func":"def op_count_VCtxkLNOzz(a, b):\n if (op_xRrnTEsQ6j(b,966) != 450 or a != 328 or a == 643):\n count = op_count_mp7IySMOzn(b,b)+op_count_xRrnTEsQ6j(b,966)\n else:\n count = op_count_Ph9nP6C5qx(b,a)\n return count\n","dependencies":["Ph9nP6C5qx","xRrnTEsQ6j","mp7IySMOzn"]} +{"id":394,"func_id":"9cloC0Ngie","symbol":"⊕∕","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⊕∕b = { ((b⪝9)↙(⨮↦↱b)) , if (b≣⋋)>174 ; a , else }","definition_type":"branch_definition","priority":34,"associativity_direction":"left","op_compute_func":"def op_9cloC0Ngie(a, b):\n if op_Tcnh7f0tEr(b) > 174:\n return op_yyfyN0ffXY(op_wicAB68Tmb(b,9),op_sYcpBQ0cFf(b))\n else:\n return a\n","op_count_func":"def op_count_9cloC0Ngie(a, b):\n if op_Tcnh7f0tEr(b) > 174:\n count = op_count_wicAB68Tmb(b,9)+op_count_sYcpBQ0cFf(b)+op_count_yyfyN0ffXY(op_wicAB68Tmb(b,9),op_sYcpBQ0cFf(b))+op_count_Tcnh7f0tEr(b)\n else:\n count = 1\n return count\n","dependencies":["Tcnh7f0tEr","wicAB68Tmb","yyfyN0ffXY","sYcpBQ0cFf"]} +{"id":395,"func_id":"z9ffQ9n5Zr","symbol":"∕⩚","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a∕⩚b = { (b⨓a) , if (b⨽⪊≇)>=161 ; (⩷34) , else }","definition_type":"branch_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_z9ffQ9n5Zr(a, b):\n if op_nlCqmYiOvY(b) >= 161:\n return op_3ViojmjbAp(b,a)\n else:\n return op_1h0rLqGiFr(34)\n","op_count_func":"def op_count_z9ffQ9n5Zr(a, b):\n if op_nlCqmYiOvY(b) >= 161:\n count = op_count_3ViojmjbAp(b,a)+op_count_nlCqmYiOvY(b)\n else:\n count = op_count_1h0rLqGiFr(34)\n return count\n","dependencies":["3ViojmjbAp","nlCqmYiOvY","1h0rLqGiFr"]} +{"id":396,"func_id":"ivGwdmUAux","symbol":"⫵↿","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⫵↿a = { ((a⫃⨇256)∽(a∀⇚≩66)) , if (⇨a)>=1 ; (↯⪼(a⨫⇇↔a)) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_ivGwdmUAux(a):\n if op_G9tJMlZ94a(a) >= 1:\n return op_y4ImoPnbV5(op_09Ly4LVMIf(a,256),op_LRNGc0VcxI(a,66))\n else:\n return op_8jW3W4yZS5(op_LXhwmt4mBO(a,a))\n","op_count_func":"def op_count_ivGwdmUAux(a):\n if op_G9tJMlZ94a(a) >= 1:\n count = op_count_09Ly4LVMIf(a,256)+op_count_LRNGc0VcxI(a,66)+op_count_y4ImoPnbV5(op_09Ly4LVMIf(a,256),op_LRNGc0VcxI(a,66))+op_count_G9tJMlZ94a(a)\n else:\n count = op_count_LXhwmt4mBO(a,a)+op_count_8jW3W4yZS5(op_LXhwmt4mBO(a,a))\n return count\n","dependencies":["LXhwmt4mBO","09Ly4LVMIf","LRNGc0VcxI","y4ImoPnbV5","8jW3W4yZS5","G9tJMlZ94a"]} +{"id":397,"func_id":"GjBEYRfMaF","symbol":"⪔","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⪔b = { (((⫇a)∓⋝(61⪢b))⪮%⊝((b⋝⋈⪟b)⨚(a≀⩗∶a))) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_GjBEYRfMaF(a, b):\n return op_IWmyXbctLI(op_PoHhknlbAi(op_YjI8oCXuph(a),op_dWAJyo7jo9(61,b)),op_nREPSIbpBE(op_2DDjHMKMc0(b,b),op_8INZBEW696(a,a)))\n","op_count_func":"def op_count_GjBEYRfMaF(a, b):\n count = op_count_YjI8oCXuph(a)+op_count_dWAJyo7jo9(61,b)+op_count_PoHhknlbAi(op_YjI8oCXuph(a),op_dWAJyo7jo9(61,b))+op_count_2DDjHMKMc0(b,b)+op_count_8INZBEW696(a,a)+op_count_nREPSIbpBE(op_2DDjHMKMc0(b,b),op_8INZBEW696(a,a))+op_count_IWmyXbctLI(op_PoHhknlbAi(op_YjI8oCXuph(a),op_dWAJyo7jo9(61,b)),op_nREPSIbpBE(op_2DDjHMKMc0(b,b),op_8INZBEW696(a,a)))\n return count\n","dependencies":["YjI8oCXuph","8INZBEW696","dWAJyo7jo9","nREPSIbpBE","2DDjHMKMc0","IWmyXbctLI","PoHhknlbAi"]} +{"id":398,"func_id":"lwHaAYXP2r","symbol":"⨚⇆","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⨚⇆b = { (a∀⇚≩(b⊲⩕⊾a)) , if (⇙⪊b)<61 ; ((36∓⋝b)∀⇚≩(a⫸⇳b)) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_lwHaAYXP2r(a, b):\n if op_pB6Fcnrjim(b) < 61:\n return op_LRNGc0VcxI(a,op_DmTXOeWf9t(b,a))\n else:\n return op_LRNGc0VcxI(op_PoHhknlbAi(36,b),op_gx7XJ7hdpj(a,b))\n","op_count_func":"def op_count_lwHaAYXP2r(a, b):\n if op_pB6Fcnrjim(b) < 61:\n count = op_count_DmTXOeWf9t(b,a)+op_count_LRNGc0VcxI(a,op_DmTXOeWf9t(b,a))+op_count_pB6Fcnrjim(b)\n else:\n count = op_count_PoHhknlbAi(36,b)+op_count_gx7XJ7hdpj(a,b)+op_count_LRNGc0VcxI(op_PoHhknlbAi(36,b),op_gx7XJ7hdpj(a,b))\n return count\n","dependencies":["gx7XJ7hdpj","LRNGc0VcxI","pB6Fcnrjim","DmTXOeWf9t","PoHhknlbAi"]} +{"id":399,"func_id":"Qctrpi3WzA","symbol":"⪷","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⪷ = { (a⊴a) }","definition_type":"simple_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_Qctrpi3WzA(a):\n return op_Nsiff2A1zJ(a,a)\n","op_count_func":"def op_count_Qctrpi3WzA(a):\n count = op_count_Nsiff2A1zJ(a,a)\n return count\n","dependencies":["Nsiff2A1zJ"]} +{"id":400,"func_id":"JuuLT1NoCs","symbol":"⋐⇩⊬","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⋐⇩⊬ = { (a⨔⇊a) , if (a∊∟⩊189)<=582 ; (a⇷a) , else }","definition_type":"branch_definition","priority":23,"associativity_direction":"left","op_compute_func":"def op_JuuLT1NoCs(a):\n if op_ddLRYrp01A(a,189) <= 582:\n return op_JclMnS0uGI(a,a)\n else:\n return op_mp7IySMOzn(a,a)\n","op_count_func":"def op_count_JuuLT1NoCs(a):\n if op_ddLRYrp01A(a,189) <= 582:\n count = op_count_JclMnS0uGI(a,a)+op_count_ddLRYrp01A(a,189)\n else:\n count = op_count_mp7IySMOzn(a,a)\n return count\n","dependencies":["mp7IySMOzn","JclMnS0uGI","ddLRYrp01A"]} +{"id":401,"func_id":"AljMvE3RRm","symbol":"≸≮","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"≸≮a = { (a⊴((a⨔≚≋a)⫰⋱(∤↝a))) , if (a>367 and (a≬⋮702)!=1) ; (⊀((∷≠a)⩉⊫⨁)) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_AljMvE3RRm(a):\n if (a > 367 and op_kbkesczE7y(a,702) != 1):\n return op_Nsiff2A1zJ(a,op_6o9Blt3TJ6(op_Z57zeUYC9z(a,a),op_3UMq87Qwqg(a)))\n else:\n return op_oPMjh9089D(op_7qqUquhhSb(op_QiR2Oyf5Xj(a)))\n","op_count_func":"def op_count_AljMvE3RRm(a):\n if (a > 367 and op_kbkesczE7y(a,702) != 1):\n count = op_count_Z57zeUYC9z(a,a)+op_count_3UMq87Qwqg(a)+op_count_6o9Blt3TJ6(op_Z57zeUYC9z(a,a),op_3UMq87Qwqg(a))+op_count_Nsiff2A1zJ(a,op_6o9Blt3TJ6(op_Z57zeUYC9z(a,a),op_3UMq87Qwqg(a)))+op_count_kbkesczE7y(a,702)\n else:\n count = op_count_QiR2Oyf5Xj(a)+op_count_7qqUquhhSb(op_QiR2Oyf5Xj(a))+op_count_oPMjh9089D(op_7qqUquhhSb(op_QiR2Oyf5Xj(a)))\n return count\n","dependencies":["3UMq87Qwqg","QiR2Oyf5Xj","Z57zeUYC9z","6o9Blt3TJ6","kbkesczE7y","oPMjh9089D","Nsiff2A1zJ","7qqUquhhSb"]} +{"id":402,"func_id":"O9U3z1385E","symbol":"⪬∳","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⪬∳ = { ((a∋a)⊪) , if ((a⪨⊡684)!=357 and (≘a)<480 and (⊲⪭a)>=673) ; (⫎≠⋺(a↛⩡⫤)) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_O9U3z1385E(a):\n if (op_kuIXHzHcAH(a,684) != 357 and op_tcjXMdvYtA(a) < 480 and op_k7HXdKtiEU(a) >= 673):\n return op_zVYPLywUTj(op_ukq6epAj5P(a,a))\n else:\n return op_LYeZOJ0nQG(op_FU0Cs4j7VP(a))\n","op_count_func":"def op_count_O9U3z1385E(a):\n if (op_kuIXHzHcAH(a,684) != 357 and op_tcjXMdvYtA(a) < 480 and op_k7HXdKtiEU(a) >= 673):\n count = op_count_ukq6epAj5P(a,a)+op_count_zVYPLywUTj(op_ukq6epAj5P(a,a))+op_count_kuIXHzHcAH(a,684)+op_count_tcjXMdvYtA(a)+op_count_k7HXdKtiEU(a)\n else:\n count = op_count_FU0Cs4j7VP(a)+op_count_LYeZOJ0nQG(op_FU0Cs4j7VP(a))\n return count\n","dependencies":["FU0Cs4j7VP","ukq6epAj5P","k7HXdKtiEU","zVYPLywUTj","LYeZOJ0nQG","kuIXHzHcAH","tcjXMdvYtA"]} +{"id":403,"func_id":"I7sXao9hZE","symbol":"⪁","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⪁b = { (((⫶⊄≣b)⨽⪊≇)⪢a) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_I7sXao9hZE(a, b):\n return op_dWAJyo7jo9(op_nlCqmYiOvY(op_wxb3vTeyAj(b)),a)\n","op_count_func":"def op_count_I7sXao9hZE(a, b):\n count = op_count_wxb3vTeyAj(b)+op_count_nlCqmYiOvY(op_wxb3vTeyAj(b))+op_count_dWAJyo7jo9(op_nlCqmYiOvY(op_wxb3vTeyAj(b)),a)\n return count\n","dependencies":["dWAJyo7jo9","wxb3vTeyAj","nlCqmYiOvY"]} +{"id":404,"func_id":"cRahaglYVE","symbol":"⨲∙","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⨲∙ = { ((a⪢(a⇷a))⪶≀⋏(↥(30⫞⩸⩒376))) , if (a≦≮≮)>473 ; (121⨸⪁((a⊲⩕⊾a)≎⊠⪸(28⪃↞⩐))) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_cRahaglYVE(a):\n if op_D4vGDi5EA2(a) > 473:\n return op_zR4jO40bMj(op_dWAJyo7jo9(a,op_mp7IySMOzn(a,a)),op_A8NUZmVepG(op_XGcMNugi78(30,376)))\n else:\n return op_g55IO6H4Gj(121,op_bJkvcejdHO(op_DmTXOeWf9t(a,a),op_grXIztHqDa(28)))\n","op_count_func":"def op_count_cRahaglYVE(a):\n if op_D4vGDi5EA2(a) > 473:\n count = op_count_mp7IySMOzn(a,a)+op_count_dWAJyo7jo9(a,op_mp7IySMOzn(a,a))+op_count_XGcMNugi78(30,376)+op_count_A8NUZmVepG(op_XGcMNugi78(30,376))+op_count_zR4jO40bMj(op_dWAJyo7jo9(a,op_mp7IySMOzn(a,a)),op_A8NUZmVepG(op_XGcMNugi78(30,376)))+op_count_D4vGDi5EA2(a)\n else:\n count = op_count_DmTXOeWf9t(a,a)+op_count_grXIztHqDa(28)+op_count_bJkvcejdHO(op_DmTXOeWf9t(a,a),op_grXIztHqDa(28))+op_count_g55IO6H4Gj(121,op_bJkvcejdHO(op_DmTXOeWf9t(a,a),op_grXIztHqDa(28)))\n return count\n","dependencies":["XGcMNugi78","zR4jO40bMj","mp7IySMOzn","bJkvcejdHO","grXIztHqDa","dWAJyo7jo9","DmTXOeWf9t","g55IO6H4Gj","D4vGDi5EA2","A8NUZmVepG"]} +{"id":405,"func_id":"LBdsKIvxzf","symbol":"↠","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a↠ = { ((⨰⫟⨤603)⨐(a⫯⪬∳a)) , if (a⫁⪎18)<=15 ; (167⫚↹⊑(a-a)) , else }","definition_type":"branch_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_LBdsKIvxzf(a):\n if op_xRrnTEsQ6j(a,18) <= 15:\n return op_Noe24qw2ks(op_Tw270M8GLb(603),op_d7ASUq0ydm(a,a))\n else:\n return op_dfKe02y8D2(167,op_rysDP5nf3Z(a,a))\n","op_count_func":"def op_count_LBdsKIvxzf(a):\n if op_xRrnTEsQ6j(a,18) <= 15:\n count = op_count_Tw270M8GLb(603)+op_count_d7ASUq0ydm(a,a)+op_count_Noe24qw2ks(op_Tw270M8GLb(603),op_d7ASUq0ydm(a,a))+op_count_xRrnTEsQ6j(a,18)\n else:\n count = op_count_rysDP5nf3Z(a,a)+op_count_dfKe02y8D2(167,op_rysDP5nf3Z(a,a))\n return count\n","dependencies":["d7ASUq0ydm","rysDP5nf3Z","Noe24qw2ks","xRrnTEsQ6j","dfKe02y8D2","Tw270M8GLb"]} +{"id":406,"func_id":"u0R0Locfp2","symbol":"⪓⩚","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⪓⩚a = { (a⫰⋱a) , if (a⊴910)>461 ; (240⇷213) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_u0R0Locfp2(a):\n if op_Nsiff2A1zJ(a,910) > 461:\n return op_6o9Blt3TJ6(a,a)\n else:\n return op_mp7IySMOzn(240,213)\n","op_count_func":"def op_count_u0R0Locfp2(a):\n if op_Nsiff2A1zJ(a,910) > 461:\n count = op_count_6o9Blt3TJ6(a,a)+op_count_Nsiff2A1zJ(a,910)\n else:\n count = op_count_mp7IySMOzn(240,213)\n return count\n","dependencies":["6o9Blt3TJ6","mp7IySMOzn","Nsiff2A1zJ"]} +{"id":407,"func_id":"P3lXMJvFrc","symbol":"⫲≸⪮","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⫲≸⪮b = { (⋼∭⪍a) , if (⊙↵-b)>333 ; (a⨪↰⇹b) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_P3lXMJvFrc(a, b):\n if op_oWn0xqSxBt(b) > 333:\n return op_DbCuESL50I(a)\n else:\n return op_tmPS8pqC7x(a,b)\n","op_count_func":"def op_count_P3lXMJvFrc(a, b):\n if op_oWn0xqSxBt(b) > 333:\n count = op_count_DbCuESL50I(a)+op_count_oWn0xqSxBt(b)\n else:\n count = op_count_tmPS8pqC7x(a,b)\n return count\n","dependencies":["tmPS8pqC7x","oWn0xqSxBt","DbCuESL50I"]} +{"id":408,"func_id":"CzM2PEoXns","symbol":"⇋⊎⋝","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⇋⊎⋝a = { (a⪢a) }","definition_type":"simple_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_CzM2PEoXns(a):\n return op_dWAJyo7jo9(a,a)\n","op_count_func":"def op_count_CzM2PEoXns(a):\n count = op_count_dWAJyo7jo9(a,a)\n return count\n","dependencies":["dWAJyo7jo9"]} +{"id":409,"func_id":"5obUd6DV38","symbol":"⪨⨬","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⪨⨬a = { ((a⋓a)⨽⪊≇) }","definition_type":"simple_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_5obUd6DV38(a):\n return op_nlCqmYiOvY(op_T2fj7uvVaJ(a,a))\n","op_count_func":"def op_count_5obUd6DV38(a):\n count = op_count_T2fj7uvVaJ(a,a)+op_count_nlCqmYiOvY(op_T2fj7uvVaJ(a,a))\n return count\n","dependencies":["T2fj7uvVaJ","nlCqmYiOvY"]} +{"id":410,"func_id":"6SnOT2rOjz","symbol":"⫠","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⫠ = { ((a⇷0)⨪↰⇹(a≚⊃≕a)) }","definition_type":"simple_definition","priority":34,"associativity_direction":"left","op_compute_func":"def op_6SnOT2rOjz(a):\n return op_tmPS8pqC7x(op_mp7IySMOzn(a,0),op_Bmrmz2XGnR(a,a))\n","op_count_func":"def op_count_6SnOT2rOjz(a):\n count = op_count_mp7IySMOzn(a,0)+op_count_Bmrmz2XGnR(a,a)+op_count_tmPS8pqC7x(op_mp7IySMOzn(a,0),op_Bmrmz2XGnR(a,a))\n return count\n","dependencies":["Bmrmz2XGnR","tmPS8pqC7x","mp7IySMOzn"]} +{"id":411,"func_id":"UnCoSGIALn","symbol":"⨹","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⨹ = { (229⇷a) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_UnCoSGIALn(a):\n return op_mp7IySMOzn(229,a)\n","op_count_func":"def op_count_UnCoSGIALn(a):\n count = op_count_mp7IySMOzn(229,a)\n return count\n","dependencies":["mp7IySMOzn"]} +{"id":412,"func_id":"5TUYCnJO6w","symbol":"↴⪽⋼","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"↴⪽⋼a = { a , if ((∡a)<5 or (⇘a)>=19 or (⊲⪭a)==199) ; (((a↙a)⇡)⇉⇉) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_5TUYCnJO6w(a):\n if (op_pRsWfj4Fpp(a) < 5 or op_MGuIdZPyUC(a) >= 19 or op_k7HXdKtiEU(a) == 199):\n return a\n else:\n return op_diKm42VcIt(op_UqFzSgLMvQ(op_yyfyN0ffXY(a,a)))\n","op_count_func":"def op_count_5TUYCnJO6w(a):\n if (op_pRsWfj4Fpp(a) < 5 or op_MGuIdZPyUC(a) >= 19 or op_k7HXdKtiEU(a) == 199):\n count = 1\n else:\n count = op_count_yyfyN0ffXY(a,a)+op_count_UqFzSgLMvQ(op_yyfyN0ffXY(a,a))+op_count_diKm42VcIt(op_UqFzSgLMvQ(op_yyfyN0ffXY(a,a)))\n return count\n","dependencies":["MGuIdZPyUC","UqFzSgLMvQ","k7HXdKtiEU","yyfyN0ffXY","pRsWfj4Fpp","diKm42VcIt"]} +{"id":413,"func_id":"oDCm7WA9JY","symbol":"⋻⩜⩜","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⋻⩜⩜b = { (495⨚a) , if (a⨕⋳)!=7 and b>=394 and a<693 ; (b⇷a) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_oDCm7WA9JY(a, b):\n if op_4X4GscPmMf(a) != 7 and b >= 394 and a < 693:\n return op_nREPSIbpBE(495,a)\n else:\n return op_mp7IySMOzn(b,a)\n","op_count_func":"def op_count_oDCm7WA9JY(a, b):\n if op_4X4GscPmMf(a) != 7 and b >= 394 and a < 693:\n count = op_count_nREPSIbpBE(495,a)+op_count_4X4GscPmMf(a)\n else:\n count = op_count_mp7IySMOzn(b,a)\n return count\n","dependencies":["mp7IySMOzn","4X4GscPmMf","nREPSIbpBE"]} +{"id":414,"func_id":"iA2gmKZ3Wj","symbol":"⩏","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⩏ = { ((a⋕⪉⪜272)≣⋋) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_iA2gmKZ3Wj(a):\n return op_Tcnh7f0tEr(op_z6LnFrNh4i(a,272))\n","op_count_func":"def op_count_iA2gmKZ3Wj(a):\n count = op_count_z6LnFrNh4i(a,272)+op_count_Tcnh7f0tEr(op_z6LnFrNh4i(a,272))\n return count\n","dependencies":["z6LnFrNh4i","Tcnh7f0tEr"]} +{"id":415,"func_id":"JwTKLfZU96","symbol":"↳≱","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a↳≱b = { (((a∪⫐104)↢(147/b))⋓((+⊝⨔b)⪹)) }","definition_type":"simple_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_JwTKLfZU96(a, b):\n return op_T2fj7uvVaJ(op_WR6HLWljOP(op_7YooWSwCyH(a,104),op_XhwjNDsVaA(147,b)),op_B3sABdIn96(op_DhbWaqg5eL(b)))\n","op_count_func":"def op_count_JwTKLfZU96(a, b):\n count = op_count_7YooWSwCyH(a,104)+op_count_XhwjNDsVaA(147,b)+op_count_WR6HLWljOP(op_7YooWSwCyH(a,104),op_XhwjNDsVaA(147,b))+op_count_DhbWaqg5eL(b)+op_count_B3sABdIn96(op_DhbWaqg5eL(b))+op_count_T2fj7uvVaJ(op_WR6HLWljOP(op_7YooWSwCyH(a,104),op_XhwjNDsVaA(147,b)),op_B3sABdIn96(op_DhbWaqg5eL(b)))\n return count\n","dependencies":["DhbWaqg5eL","WR6HLWljOP","XhwjNDsVaA","T2fj7uvVaJ","7YooWSwCyH","B3sABdIn96"]} +{"id":416,"func_id":"dcShxvzhyw","symbol":"⫏⊷","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⫏⊷ = { ((224∪⫐a)⊾⪯⋞(a↛⩡⫤)) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_dcShxvzhyw(a):\n return op_HK0tfVPux8(op_7YooWSwCyH(224,a),op_FU0Cs4j7VP(a))\n","op_count_func":"def op_count_dcShxvzhyw(a):\n count = op_count_7YooWSwCyH(224,a)+op_count_FU0Cs4j7VP(a)+op_count_HK0tfVPux8(op_7YooWSwCyH(224,a),op_FU0Cs4j7VP(a))\n return count\n","dependencies":["FU0Cs4j7VP","7YooWSwCyH","HK0tfVPux8"]} +{"id":417,"func_id":"Af076pWI7l","symbol":"↓","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a↓b = { (((b⇷b)∓⋝b)⨐((462≴⪞⇿a)∇⊂⋱(a⋓a))) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_Af076pWI7l(a, b):\n return op_Noe24qw2ks(op_PoHhknlbAi(op_mp7IySMOzn(b,b),b),op_nhYeJWJD5X(op_lvlrscuwVU(462,a),op_T2fj7uvVaJ(a,a)))\n","op_count_func":"def op_count_Af076pWI7l(a, b):\n count = op_count_mp7IySMOzn(b,b)+op_count_PoHhknlbAi(op_mp7IySMOzn(b,b),b)+op_count_lvlrscuwVU(462,a)+op_count_T2fj7uvVaJ(a,a)+op_count_nhYeJWJD5X(op_lvlrscuwVU(462,a),op_T2fj7uvVaJ(a,a))+op_count_Noe24qw2ks(op_PoHhknlbAi(op_mp7IySMOzn(b,b),b),op_nhYeJWJD5X(op_lvlrscuwVU(462,a),op_T2fj7uvVaJ(a,a)))\n return count\n","dependencies":["nhYeJWJD5X","mp7IySMOzn","Noe24qw2ks","lvlrscuwVU","T2fj7uvVaJ","PoHhknlbAi"]} +{"id":418,"func_id":"vEGLkm4Z2k","symbol":"⨙⪌","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⨙⪌a = { (((a⪘⫢a)∷(a≬⋮a))⨪↰⇹(a∝(a∩⋅))) }","definition_type":"simple_definition","priority":35,"associativity_direction":"right","op_compute_func":"def op_vEGLkm4Z2k(a):\n return op_tmPS8pqC7x(op_D3AQDKkPcf(op_oacrs7FA3X(a,a),op_kbkesczE7y(a,a)),op_cTDWOvIxvz(a,op_2MzE1hQ0cz(a)))\n","op_count_func":"def op_count_vEGLkm4Z2k(a):\n count = op_count_oacrs7FA3X(a,a)+op_count_kbkesczE7y(a,a)+op_count_D3AQDKkPcf(op_oacrs7FA3X(a,a),op_kbkesczE7y(a,a))+op_count_2MzE1hQ0cz(a)+op_count_cTDWOvIxvz(a,op_2MzE1hQ0cz(a))+op_count_tmPS8pqC7x(op_D3AQDKkPcf(op_oacrs7FA3X(a,a),op_kbkesczE7y(a,a)),op_cTDWOvIxvz(a,op_2MzE1hQ0cz(a)))\n return count\n","dependencies":["tmPS8pqC7x","kbkesczE7y","D3AQDKkPcf","cTDWOvIxvz","2MzE1hQ0cz","oacrs7FA3X"]} +{"id":419,"func_id":"AzXXKTstlj","symbol":"∳⫺","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a∳⫺b = { (a≣⋋) , if (b⫳≱↱947)==166 ; (a⇣⩺⋵b) , else }","definition_type":"branch_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_AzXXKTstlj(a, b):\n if op_ZvLB05nZmT(b,947) == 166:\n return op_Tcnh7f0tEr(a)\n else:\n return op_F4yD0voBRQ(a,b)\n","op_count_func":"def op_count_AzXXKTstlj(a, b):\n if op_ZvLB05nZmT(b,947) == 166:\n count = op_count_Tcnh7f0tEr(a)+op_count_ZvLB05nZmT(b,947)\n else:\n count = op_count_F4yD0voBRQ(a,b)\n return count\n","dependencies":["F4yD0voBRQ","Tcnh7f0tEr","ZvLB05nZmT"]} +{"id":420,"func_id":"48vC8HMD2b","symbol":"⫘","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⫘b = { ((≘(b⨓a))≫≃) , if ((⇖a)!=319 or (a↺926)<190) ; ((∓a)⫚↹⊑(⪸(a≦≮≮))) , else }","definition_type":"branch_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_48vC8HMD2b(a, b):\n if (op_tfWHHpNKUN(a) != 319 or op_7j4O788W3g(a,926) < 190):\n return op_X99M06cbEe(op_tcjXMdvYtA(op_3ViojmjbAp(b,a)))\n else:\n return op_dfKe02y8D2(op_OwUj7dcsQK(a),op_86A5ENbKR9(op_D4vGDi5EA2(a)))\n","op_count_func":"def op_count_48vC8HMD2b(a, b):\n if (op_tfWHHpNKUN(a) != 319 or op_7j4O788W3g(a,926) < 190):\n count = op_count_3ViojmjbAp(b,a)+op_count_tcjXMdvYtA(op_3ViojmjbAp(b,a))+op_count_X99M06cbEe(op_tcjXMdvYtA(op_3ViojmjbAp(b,a)))+op_count_tfWHHpNKUN(a)+op_count_7j4O788W3g(a,926)\n else:\n count = op_count_OwUj7dcsQK(a)+op_count_D4vGDi5EA2(a)+op_count_86A5ENbKR9(op_D4vGDi5EA2(a))+op_count_dfKe02y8D2(op_OwUj7dcsQK(a),op_86A5ENbKR9(op_D4vGDi5EA2(a)))\n return count\n","dependencies":["OwUj7dcsQK","7j4O788W3g","tfWHHpNKUN","3ViojmjbAp","dfKe02y8D2","tcjXMdvYtA","D4vGDi5EA2","86A5ENbKR9","X99M06cbEe"]} +{"id":421,"func_id":"Cw4SuJJGHO","symbol":"↳∿⪆","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a↳∿⪆b = { ((⨰⫟⨤(↔15))⨻⩈⩔((b⪛⫼133)⫡⨏(b→⨶⪴a))) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_Cw4SuJJGHO(a, b):\n return op_nEsXyWgiOK(op_Tw270M8GLb(op_ruOEQAzv1W(15)),op_QMFrweE19q(op_hyuBjUqXlG(b,133),op_bF6eod5Gvf(b,a)))\n","op_count_func":"def op_count_Cw4SuJJGHO(a, b):\n count = op_count_ruOEQAzv1W(15)+op_count_Tw270M8GLb(op_ruOEQAzv1W(15))+op_count_hyuBjUqXlG(b,133)+op_count_bF6eod5Gvf(b,a)+op_count_QMFrweE19q(op_hyuBjUqXlG(b,133),op_bF6eod5Gvf(b,a))+op_count_nEsXyWgiOK(op_Tw270M8GLb(op_ruOEQAzv1W(15)),op_QMFrweE19q(op_hyuBjUqXlG(b,133),op_bF6eod5Gvf(b,a)))\n return count\n","dependencies":["hyuBjUqXlG","bF6eod5Gvf","nEsXyWgiOK","ruOEQAzv1W","Tw270M8GLb","QMFrweE19q"]} +{"id":422,"func_id":"SR5kFfdi6N","symbol":"↱","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a↱b = { ((≸a)⊴((b∊∟⩊b)⨐(a+⪬∐830))) , if (a==35 or (b∀⊥⇻)>46) ; ((≅≯⇸b)→⨶⪴((∡b)⪭(b⨑≵⋬499))) , else }","definition_type":"branch_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_SR5kFfdi6N(a, b):\n if (a == 35 or op_k4iM1060OG(b) > 46):\n return op_Nsiff2A1zJ(op_eOf03JbCpp(a),op_Noe24qw2ks(op_ddLRYrp01A(b,b),op_2GS7woTJqF(a,830)))\n else:\n return op_bF6eod5Gvf(op_apS25hmuAe(b),op_j9kHMeSvPp(op_pRsWfj4Fpp(b),op_XnXgA4xnOs(b,499)))\n","op_count_func":"def op_count_SR5kFfdi6N(a, b):\n if (a == 35 or op_k4iM1060OG(b) > 46):\n count = op_count_eOf03JbCpp(a)+op_count_ddLRYrp01A(b,b)+op_count_2GS7woTJqF(a,830)+op_count_Noe24qw2ks(op_ddLRYrp01A(b,b),op_2GS7woTJqF(a,830))+op_count_Nsiff2A1zJ(op_eOf03JbCpp(a),op_Noe24qw2ks(op_ddLRYrp01A(b,b),op_2GS7woTJqF(a,830)))+op_count_k4iM1060OG(b)\n else:\n count = op_count_apS25hmuAe(b)+op_count_pRsWfj4Fpp(b)+op_count_XnXgA4xnOs(b,499)+op_count_j9kHMeSvPp(op_pRsWfj4Fpp(b),op_XnXgA4xnOs(b,499))+op_count_bF6eod5Gvf(op_apS25hmuAe(b),op_j9kHMeSvPp(op_pRsWfj4Fpp(b),op_XnXgA4xnOs(b,499)))\n return count\n","dependencies":["k4iM1060OG","eOf03JbCpp","2GS7woTJqF","XnXgA4xnOs","ddLRYrp01A","Noe24qw2ks","bF6eod5Gvf","Nsiff2A1zJ","j9kHMeSvPp","pRsWfj4Fpp","apS25hmuAe"]} +{"id":423,"func_id":"D617RFjZIq","symbol":"⩢≌","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⩢≌ = { ((a∸)∟) }","definition_type":"simple_definition","priority":1,"associativity_direction":"left","op_compute_func":"def op_D617RFjZIq(a):\n return op_hTbEZDJLEm(op_o20kRiQErp(a))\n","op_count_func":"def op_count_D617RFjZIq(a):\n count = op_count_o20kRiQErp(a)+op_count_hTbEZDJLEm(op_o20kRiQErp(a))\n return count\n","dependencies":["hTbEZDJLEm","o20kRiQErp"]} +{"id":424,"func_id":"aMUSaJuDRU","symbol":"⨉","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⨉ = { ((⫡⇟⇯148)⨸⪁(a⨪↰⇹a)) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_aMUSaJuDRU(a):\n return op_g55IO6H4Gj(op_qWUSsah53b(148),op_tmPS8pqC7x(a,a))\n","op_count_func":"def op_count_aMUSaJuDRU(a):\n count = op_count_qWUSsah53b(148)+op_count_tmPS8pqC7x(a,a)+op_count_g55IO6H4Gj(op_qWUSsah53b(148),op_tmPS8pqC7x(a,a))\n return count\n","dependencies":["tmPS8pqC7x","g55IO6H4Gj","qWUSsah53b"]} +{"id":425,"func_id":"0KMCeP1Jsh","symbol":"≨","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a≨b = { (⇤←((b⋓a)↼⊘⨖(⩦⩻⨪a))) }","definition_type":"simple_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_0KMCeP1Jsh(a, b):\n return op_jfAgQ2OQeM(op_bPywburJMS(op_T2fj7uvVaJ(b,a),op_2td37pGCOC(a)))\n","op_count_func":"def op_count_0KMCeP1Jsh(a, b):\n count = op_count_T2fj7uvVaJ(b,a)+op_count_2td37pGCOC(a)+op_count_bPywburJMS(op_T2fj7uvVaJ(b,a),op_2td37pGCOC(a))+op_count_jfAgQ2OQeM(op_bPywburJMS(op_T2fj7uvVaJ(b,a),op_2td37pGCOC(a)))\n return count\n","dependencies":["jfAgQ2OQeM","bPywburJMS","T2fj7uvVaJ","2td37pGCOC"]} +{"id":426,"func_id":"xD69zh8xqp","symbol":"⪪","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⪪b = { ((b⨔⇊a)↛⩡⫤) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_xD69zh8xqp(a, b):\n return op_FU0Cs4j7VP(op_JclMnS0uGI(b,a))\n","op_count_func":"def op_count_xD69zh8xqp(a, b):\n count = op_count_JclMnS0uGI(b,a)+op_count_FU0Cs4j7VP(op_JclMnS0uGI(b,a))\n return count\n","dependencies":["FU0Cs4j7VP","JclMnS0uGI"]} +{"id":427,"func_id":"MahUMFw56D","symbol":"≚⋢","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a≚⋢ = { (a⨓86) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_MahUMFw56D(a):\n return op_3ViojmjbAp(a,86)\n","op_count_func":"def op_count_MahUMFw56D(a):\n count = op_count_3ViojmjbAp(a,86)\n return count\n","dependencies":["3ViojmjbAp"]} +{"id":428,"func_id":"ljcfZBUpm8","symbol":"⨘","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⨘ = { ((4⊢)⩼⇪↪(a⋫)) }","definition_type":"simple_definition","priority":25,"associativity_direction":"left","op_compute_func":"def op_ljcfZBUpm8(a):\n return op_ocnLzx9CaJ(op_40aOVDgCDB(4),op_JL8yIekQnl(a))\n","op_count_func":"def op_count_ljcfZBUpm8(a):\n count = op_count_40aOVDgCDB(4)+op_count_JL8yIekQnl(a)+op_count_ocnLzx9CaJ(op_40aOVDgCDB(4),op_JL8yIekQnl(a))\n return count\n","dependencies":["40aOVDgCDB","JL8yIekQnl","ocnLzx9CaJ"]} +{"id":429,"func_id":"WPoGxAaPR1","symbol":"⊬↢","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⊬↢a = { (((a⫞⩸⩒a)⊝⪿⪼(a⫯⪬∳a))⪎↠((a⨀⨒)↸(∐⩳⋚a))) , if (∓a)>278 ; (((a↙a)⊱⇼⊻(a∌480))⇉⇱⇎) , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_WPoGxAaPR1(a):\n if op_OwUj7dcsQK(a) > 278:\n return op_3tVxb0NHM4(op_3Oe9XWJUTD(op_XGcMNugi78(a,a),op_d7ASUq0ydm(a,a)),op_1eCjFl0mb9(op_j6NVkjMzuk(a),op_SL6IHkK8vl(a)))\n else:\n return op_MRPaB8lBjK(op_FyVja0WsTP(op_yyfyN0ffXY(a,a),op_8cLx32lpNA(a,480)))\n","op_count_func":"def op_count_WPoGxAaPR1(a):\n if op_OwUj7dcsQK(a) > 278:\n count = op_count_XGcMNugi78(a,a)+op_count_d7ASUq0ydm(a,a)+op_count_3Oe9XWJUTD(op_XGcMNugi78(a,a),op_d7ASUq0ydm(a,a))+op_count_j6NVkjMzuk(a)+op_count_SL6IHkK8vl(a)+op_count_1eCjFl0mb9(op_j6NVkjMzuk(a),op_SL6IHkK8vl(a))+op_count_3tVxb0NHM4(op_3Oe9XWJUTD(op_XGcMNugi78(a,a),op_d7ASUq0ydm(a,a)),op_1eCjFl0mb9(op_j6NVkjMzuk(a),op_SL6IHkK8vl(a)))+op_count_OwUj7dcsQK(a)\n else:\n count = op_count_yyfyN0ffXY(a,a)+op_count_8cLx32lpNA(a,480)+op_count_FyVja0WsTP(op_yyfyN0ffXY(a,a),op_8cLx32lpNA(a,480))+op_count_MRPaB8lBjK(op_FyVja0WsTP(op_yyfyN0ffXY(a,a),op_8cLx32lpNA(a,480)))\n return count\n","dependencies":["XGcMNugi78","d7ASUq0ydm","OwUj7dcsQK","FyVja0WsTP","1eCjFl0mb9","j6NVkjMzuk","SL6IHkK8vl","MRPaB8lBjK","yyfyN0ffXY","3Oe9XWJUTD","3tVxb0NHM4","8cLx32lpNA"]} +{"id":430,"func_id":"yS9ePUuUdn","symbol":"⩺⋐⫨","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⩺⋐⫨ = { ((a≣⋋)⨽∌(a⪭a)) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_yS9ePUuUdn(a):\n return op_9samAPKr6k(op_Tcnh7f0tEr(a),op_j9kHMeSvPp(a,a))\n","op_count_func":"def op_count_yS9ePUuUdn(a):\n count = op_count_Tcnh7f0tEr(a)+op_count_j9kHMeSvPp(a,a)+op_count_9samAPKr6k(op_Tcnh7f0tEr(a),op_j9kHMeSvPp(a,a))\n return count\n","dependencies":["9samAPKr6k","j9kHMeSvPp","Tcnh7f0tEr"]} +{"id":431,"func_id":"w2537kitQq","symbol":"∛","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a∛b = { ((b⨑≵⋬38)⇂≾⫗(b∲⫓a)) , if (b⨚996)>=244 and b>=3 ; ((+⊝⨔b)⊵↤) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_w2537kitQq(a, b):\n if op_nREPSIbpBE(b,996) >= 244 and b >= 3:\n return op_aBQ6xLxuTc(op_XnXgA4xnOs(b,38),op_i8ToyICDmI(b,a))\n else:\n return op_7IPrd9c3lf(op_DhbWaqg5eL(b))\n","op_count_func":"def op_count_w2537kitQq(a, b):\n if op_nREPSIbpBE(b,996) >= 244 and b >= 3:\n count = op_count_XnXgA4xnOs(b,38)+op_count_i8ToyICDmI(b,a)+op_count_aBQ6xLxuTc(op_XnXgA4xnOs(b,38),op_i8ToyICDmI(b,a))+op_count_nREPSIbpBE(b,996)\n else:\n count = op_count_DhbWaqg5eL(b)+op_count_7IPrd9c3lf(op_DhbWaqg5eL(b))\n return count\n","dependencies":["DhbWaqg5eL","7IPrd9c3lf","XnXgA4xnOs","nREPSIbpBE","i8ToyICDmI","aBQ6xLxuTc"]} +{"id":432,"func_id":"5KTvxBwnZo","symbol":"≒∊","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a≒∊b = { (≱⇩⩕(a⪢a)) , if (a⩤)==117 ; ((b⪊≅)⇄a) , else }","definition_type":"branch_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_5KTvxBwnZo(a, b):\n if op_Z2TMIBDE3Q(a) == 117:\n return op_3DZMoQKiUl(op_dWAJyo7jo9(a,a))\n else:\n return op_3EYGwJThht(op_bjFbhXSADs(b),a)\n","op_count_func":"def op_count_5KTvxBwnZo(a, b):\n if op_Z2TMIBDE3Q(a) == 117:\n count = op_count_dWAJyo7jo9(a,a)+op_count_3DZMoQKiUl(op_dWAJyo7jo9(a,a))+op_count_Z2TMIBDE3Q(a)\n else:\n count = op_count_bjFbhXSADs(b)+op_count_3EYGwJThht(op_bjFbhXSADs(b),a)\n return count\n","dependencies":["3EYGwJThht","dWAJyo7jo9","Z2TMIBDE3Q","bjFbhXSADs","3DZMoQKiUl"]} +{"id":433,"func_id":"o8Pngz0Tml","symbol":"→⩰","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"→⩰a = { ((∑⇻≧(a⋛a))⨰((a⊴a)⩷∴(a⨕⋳))) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_o8Pngz0Tml(a):\n return op_eewbuw0ToL(op_l1M9WJ3V7u(op_YbUVn0Rbpy(a,a)),op_9FxExcQeMw(op_Nsiff2A1zJ(a,a),op_4X4GscPmMf(a)))\n","op_count_func":"def op_count_o8Pngz0Tml(a):\n count = op_count_YbUVn0Rbpy(a,a)+op_count_l1M9WJ3V7u(op_YbUVn0Rbpy(a,a))+op_count_Nsiff2A1zJ(a,a)+op_count_4X4GscPmMf(a)+op_count_9FxExcQeMw(op_Nsiff2A1zJ(a,a),op_4X4GscPmMf(a))+op_count_eewbuw0ToL(op_l1M9WJ3V7u(op_YbUVn0Rbpy(a,a)),op_9FxExcQeMw(op_Nsiff2A1zJ(a,a),op_4X4GscPmMf(a)))\n return count\n","dependencies":["9FxExcQeMw","4X4GscPmMf","YbUVn0Rbpy","Nsiff2A1zJ","l1M9WJ3V7u","eewbuw0ToL"]} +{"id":434,"func_id":"nOKPl9n5zu","symbol":"⋗⩴⪓","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⋗⩴⪓a = { (↩a) , if (↸⊣a)>=41 ; (a⇼⇔∾(≪(a⨪↰⇹a))) , else }","definition_type":"branch_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_nOKPl9n5zu(a):\n if op_wztAlM01eG(a) >= 41:\n return op_jLgFTUHLKL(a)\n else:\n return op_tifHPKVTfV(a,op_Qtd6bqUJcN(op_tmPS8pqC7x(a,a)))\n","op_count_func":"def op_count_nOKPl9n5zu(a):\n if op_wztAlM01eG(a) >= 41:\n count = op_count_jLgFTUHLKL(a)+op_count_wztAlM01eG(a)\n else:\n count = op_count_tmPS8pqC7x(a,a)+op_count_Qtd6bqUJcN(op_tmPS8pqC7x(a,a))+op_count_tifHPKVTfV(a,op_Qtd6bqUJcN(op_tmPS8pqC7x(a,a)))\n return count\n","dependencies":["Qtd6bqUJcN","tifHPKVTfV","tmPS8pqC7x","jLgFTUHLKL","wztAlM01eG"]} +{"id":435,"func_id":"SxTAKzQCrw","symbol":"∙⊟","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a∙⊟b = { (⩪∧⨌(a⫲⨊)) , if (b∐⫣)<386 ; ((a∣a)⊝⪿⪼(⊙↵-a)) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_SxTAKzQCrw(a, b):\n if op_4CyGpkTkEk(b) < 386:\n return op_6iOiAJX1F8(op_CArV6hThFE(a))\n else:\n return op_3Oe9XWJUTD(op_PPChnnnBFF(a,a),op_oWn0xqSxBt(a))\n","op_count_func":"def op_count_SxTAKzQCrw(a, b):\n if op_4CyGpkTkEk(b) < 386:\n count = op_count_CArV6hThFE(a)+op_count_6iOiAJX1F8(op_CArV6hThFE(a))+op_count_4CyGpkTkEk(b)\n else:\n count = op_count_PPChnnnBFF(a,a)+op_count_oWn0xqSxBt(a)+op_count_3Oe9XWJUTD(op_PPChnnnBFF(a,a),op_oWn0xqSxBt(a))\n return count\n","dependencies":["6iOiAJX1F8","oWn0xqSxBt","3Oe9XWJUTD","4CyGpkTkEk","CArV6hThFE","PPChnnnBFF"]} +{"id":436,"func_id":"ctOc4cKSDt","symbol":"∟⋨","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"∟⋨a = { (≤/(a⨪↰⇹a)) }","definition_type":"simple_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_ctOc4cKSDt(a):\n return op_eLAdDNolq6(op_tmPS8pqC7x(a,a))\n","op_count_func":"def op_count_ctOc4cKSDt(a):\n count = op_count_tmPS8pqC7x(a,a)+op_count_eLAdDNolq6(op_tmPS8pqC7x(a,a))\n return count\n","dependencies":["eLAdDNolq6","tmPS8pqC7x"]} +{"id":437,"func_id":"SIgE0bArFf","symbol":"⪭⩑⪱","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"⪭⩑⪱a = { (⋎⨆((a↛⩡⫤)⪢(a⫳≱↱715))) }","definition_type":"simple_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_SIgE0bArFf(a):\n return op_E64sFOc4tB(op_dWAJyo7jo9(op_FU0Cs4j7VP(a),op_ZvLB05nZmT(a,715)))\n","op_count_func":"def op_count_SIgE0bArFf(a):\n count = op_count_FU0Cs4j7VP(a)+op_count_ZvLB05nZmT(a,715)+op_count_dWAJyo7jo9(op_FU0Cs4j7VP(a),op_ZvLB05nZmT(a,715))+op_count_E64sFOc4tB(op_dWAJyo7jo9(op_FU0Cs4j7VP(a),op_ZvLB05nZmT(a,715)))\n return count\n","dependencies":["FU0Cs4j7VP","ZvLB05nZmT","E64sFOc4tB","dWAJyo7jo9"]} +{"id":438,"func_id":"3tj9sqzovi","symbol":"≻⋜","n_ary":1,"unary_position":"prefix","n_order":3,"is_base":null,"definition":"≻⋜a = { (((a⩵∡a)⫞⩸⩒(⨰⫟⨤a))⪢a) }","definition_type":"simple_definition","priority":31,"associativity_direction":"right","op_compute_func":"def op_3tj9sqzovi(a):\n return op_dWAJyo7jo9(op_XGcMNugi78(op_Y7wcNGrDQJ(a,a),op_Tw270M8GLb(a)),a)\n","op_count_func":"def op_count_3tj9sqzovi(a):\n count = op_count_Y7wcNGrDQJ(a,a)+op_count_Tw270M8GLb(a)+op_count_XGcMNugi78(op_Y7wcNGrDQJ(a,a),op_Tw270M8GLb(a))+op_count_dWAJyo7jo9(op_XGcMNugi78(op_Y7wcNGrDQJ(a,a),op_Tw270M8GLb(a)),a)\n return count\n","dependencies":["XGcMNugi78","dWAJyo7jo9","Tw270M8GLb","Y7wcNGrDQJ"]} +{"id":439,"func_id":"oo9mF6JIpo","symbol":"⊴⇁⪶","n_ary":1,"unary_position":"postfix","n_order":3,"is_base":null,"definition":"a⊴⇁⪶ = { (⊗((157⇤a)⋳⪒(a⨪↰⇹a))) , if ((a⪶≀⋏180)>=510 or (a⩘665)!=249) ; (((a⪍↜⋙a)≃(a⪚343))⪘⫢((a⩹a)⊲⩕⊾(⩏⊷≩a))) , else }","definition_type":"branch_definition","priority":33,"associativity_direction":"left","op_compute_func":"def op_oo9mF6JIpo(a):\n if (op_zR4jO40bMj(a,180) >= 510 or op_cHh1gJQ2o6(a,665) != 249):\n return op_RhiyfpczSx(op_12rbrZMWeM(op_YSKBFp38Pu(157,a),op_tmPS8pqC7x(a,a)))\n else:\n return op_oacrs7FA3X(op_YbVcJGFEVW(op_L05ObWFQCd(a,a),op_HrjLwUk87U(a,343)),op_DmTXOeWf9t(op_2Wsdkap16l(a,a),op_uOZ1tnYMDE(a)))\n","op_count_func":"def op_count_oo9mF6JIpo(a):\n if (op_zR4jO40bMj(a,180) >= 510 or op_cHh1gJQ2o6(a,665) != 249):\n count = op_count_YSKBFp38Pu(157,a)+op_count_tmPS8pqC7x(a,a)+op_count_12rbrZMWeM(op_YSKBFp38Pu(157,a),op_tmPS8pqC7x(a,a))+op_count_RhiyfpczSx(op_12rbrZMWeM(op_YSKBFp38Pu(157,a),op_tmPS8pqC7x(a,a)))+op_count_zR4jO40bMj(a,180)+op_count_cHh1gJQ2o6(a,665)\n else:\n count = op_count_L05ObWFQCd(a,a)+op_count_HrjLwUk87U(a,343)+op_count_YbVcJGFEVW(op_L05ObWFQCd(a,a),op_HrjLwUk87U(a,343))+op_count_2Wsdkap16l(a,a)+op_count_uOZ1tnYMDE(a)+op_count_DmTXOeWf9t(op_2Wsdkap16l(a,a),op_uOZ1tnYMDE(a))+op_count_oacrs7FA3X(op_YbVcJGFEVW(op_L05ObWFQCd(a,a),op_HrjLwUk87U(a,343)),op_DmTXOeWf9t(op_2Wsdkap16l(a,a),op_uOZ1tnYMDE(a)))\n return count\n","dependencies":["L05ObWFQCd","oacrs7FA3X","2Wsdkap16l","zR4jO40bMj","HrjLwUk87U","YSKBFp38Pu","cHh1gJQ2o6","tmPS8pqC7x","YbVcJGFEVW","12rbrZMWeM","DmTXOeWf9t","RhiyfpczSx","uOZ1tnYMDE"]} +{"id":440,"func_id":"Ez1Nq5fNfI","symbol":"⪬","n_ary":2,"unary_position":null,"n_order":3,"is_base":null,"definition":"a⪬b = { (((514⋫)⪒⊣⊆(b≬⋮a))∠⫱(1⇷(b≬⋮32))) }","definition_type":"simple_definition","priority":36,"associativity_direction":"right","op_compute_func":"def op_Ez1Nq5fNfI(a, b):\n return op_QvoQhV0rrE(op_eRqsBgTDFp(op_JL8yIekQnl(514),op_kbkesczE7y(b,a)),op_mp7IySMOzn(1,op_kbkesczE7y(b,32)))\n","op_count_func":"def op_count_Ez1Nq5fNfI(a, b):\n count = op_count_JL8yIekQnl(514)+op_count_kbkesczE7y(b,a)+op_count_eRqsBgTDFp(op_JL8yIekQnl(514),op_kbkesczE7y(b,a))+op_count_kbkesczE7y(b,32)+op_count_mp7IySMOzn(1,op_kbkesczE7y(b,32))+op_count_QvoQhV0rrE(op_eRqsBgTDFp(op_JL8yIekQnl(514),op_kbkesczE7y(b,a)),op_mp7IySMOzn(1,op_kbkesczE7y(b,32)))\n return count\n","dependencies":["eRqsBgTDFp","mp7IySMOzn","JL8yIekQnl","QvoQhV0rrE","kbkesczE7y"]} +{"id":441,"func_id":"i9eR4S00cU","symbol":"⫔⩽⩺","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⫔⩽⩺b = { (⨰⫟⨤(a⨐⩸⫘b)) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_i9eR4S00cU(a, b):\n return op_Tw270M8GLb(op_fu6greOZ01(a,b))\n","op_count_func":"def op_count_i9eR4S00cU(a, b):\n count = op_count_fu6greOZ01(a,b)+op_count_Tw270M8GLb(op_fu6greOZ01(a,b))\n return count\n","dependencies":["Tw270M8GLb","fu6greOZ01"]} +{"id":442,"func_id":"13rbtpv6ld","symbol":"↤⩊","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a↤⩊b = { ((a⫥∨⫟63)⇐≅) , if (a∺≝⩲71)<727 ; ((b%b)⊕∕(b≓∲14)) , else }","definition_type":"branch_definition","priority":28,"associativity_direction":"left","op_compute_func":"def op_13rbtpv6ld(a, b):\n if op_KPf6cnQVty(a,71) < 727:\n return op_wEfv7U73WA(op_KYD54nUTWz(a,63))\n else:\n return op_9cloC0Ngie(op_k8jYdgA6NY(b,b),op_s1XTVnmDOJ(b,14))\n","op_count_func":"def op_count_13rbtpv6ld(a, b):\n if op_KPf6cnQVty(a,71) < 727:\n count = op_count_KYD54nUTWz(a,63)+op_count_wEfv7U73WA(op_KYD54nUTWz(a,63))+op_count_KPf6cnQVty(a,71)\n else:\n count = op_count_k8jYdgA6NY(b,b)+op_count_s1XTVnmDOJ(b,14)+op_count_9cloC0Ngie(op_k8jYdgA6NY(b,b),op_s1XTVnmDOJ(b,14))\n return count\n","dependencies":["s1XTVnmDOJ","wEfv7U73WA","9cloC0Ngie","KPf6cnQVty","KYD54nUTWz","k8jYdgA6NY"]} +{"id":443,"func_id":"abYXlopdE0","symbol":"⨿","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⨿b = { (((a∲⫓409)≬⇓(a⩒⫫a))∓⋝((146⫥∨⫟b)≥⨤⩑(219⨥⫆b))) }","definition_type":"simple_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_abYXlopdE0(a, b):\n return op_PoHhknlbAi(op_jWTQ2TZYIH(op_i8ToyICDmI(a,409),op_KFSx94NKJn(a,a)),op_gJLn6v0xnP(op_KYD54nUTWz(146,b),op_yXekIHxTD4(219,b)))\n","op_count_func":"def op_count_abYXlopdE0(a, b):\n count = op_count_i8ToyICDmI(a,409)+op_count_KFSx94NKJn(a,a)+op_count_jWTQ2TZYIH(op_i8ToyICDmI(a,409),op_KFSx94NKJn(a,a))+op_count_KYD54nUTWz(146,b)+op_count_yXekIHxTD4(219,b)+op_count_gJLn6v0xnP(op_KYD54nUTWz(146,b),op_yXekIHxTD4(219,b))+op_count_PoHhknlbAi(op_jWTQ2TZYIH(op_i8ToyICDmI(a,409),op_KFSx94NKJn(a,a)),op_gJLn6v0xnP(op_KYD54nUTWz(146,b),op_yXekIHxTD4(219,b)))\n return count\n","dependencies":["gJLn6v0xnP","KFSx94NKJn","jWTQ2TZYIH","yXekIHxTD4","KYD54nUTWz","i8ToyICDmI","PoHhknlbAi"]} +{"id":444,"func_id":"xUx7qlDO4z","symbol":"⫑%∭","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⫑%∭ = { (((a⨟⋌⩍23)⫥∨⫟(a≀⫉a))/((a⨚141)⪟⇏(⫡⇟⇯a))) }","definition_type":"simple_definition","priority":30,"associativity_direction":"left","op_compute_func":"def op_xUx7qlDO4z(a):\n return op_XhwjNDsVaA(op_KYD54nUTWz(op_rGHVDoGpnC(a,23),op_oZj3VtZNQx(a,a)),op_GODebY97qR(op_nREPSIbpBE(a,141),op_qWUSsah53b(a)))\n","op_count_func":"def op_count_xUx7qlDO4z(a):\n count = op_count_rGHVDoGpnC(a,23)+op_count_oZj3VtZNQx(a,a)+op_count_KYD54nUTWz(op_rGHVDoGpnC(a,23),op_oZj3VtZNQx(a,a))+op_count_nREPSIbpBE(a,141)+op_count_qWUSsah53b(a)+op_count_GODebY97qR(op_nREPSIbpBE(a,141),op_qWUSsah53b(a))+op_count_XhwjNDsVaA(op_KYD54nUTWz(op_rGHVDoGpnC(a,23),op_oZj3VtZNQx(a,a)),op_GODebY97qR(op_nREPSIbpBE(a,141),op_qWUSsah53b(a)))\n return count\n","dependencies":["GODebY97qR","qWUSsah53b","XhwjNDsVaA","oZj3VtZNQx","KYD54nUTWz","nREPSIbpBE","rGHVDoGpnC"]} +{"id":445,"func_id":"9dWsAM3GFt","symbol":"↪⫪⫘","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"↪⫪⫘a = { ((a⨚283)∼(a-a)) }","definition_type":"simple_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_9dWsAM3GFt(a):\n return op_DyGG3AbaNP(op_nREPSIbpBE(a,283),op_rysDP5nf3Z(a,a))\n","op_count_func":"def op_count_9dWsAM3GFt(a):\n count = op_count_nREPSIbpBE(a,283)+op_count_rysDP5nf3Z(a,a)+op_count_DyGG3AbaNP(op_nREPSIbpBE(a,283),op_rysDP5nf3Z(a,a))\n return count\n","dependencies":["DyGG3AbaNP","nREPSIbpBE","rysDP5nf3Z"]} +{"id":446,"func_id":"UHmRx3INFg","symbol":"⇖⫷⫕","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⇖⫷⫕a = { ((a∼125)≀⫉(↞≼(a⊱⇼⊻51))) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_UHmRx3INFg(a):\n return op_oZj3VtZNQx(op_DyGG3AbaNP(a,125),op_DE7zCoGJt9(op_FyVja0WsTP(a,51)))\n","op_count_func":"def op_count_UHmRx3INFg(a):\n count = op_count_DyGG3AbaNP(a,125)+op_count_FyVja0WsTP(a,51)+op_count_DE7zCoGJt9(op_FyVja0WsTP(a,51))+op_count_oZj3VtZNQx(op_DyGG3AbaNP(a,125),op_DE7zCoGJt9(op_FyVja0WsTP(a,51)))\n return count\n","dependencies":["DE7zCoGJt9","FyVja0WsTP","oZj3VtZNQx","DyGG3AbaNP"]} +{"id":447,"func_id":"0ajvFaJAv0","symbol":"⫁","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⫁b = { (a≹⇙⪍6) , if a==154 ; (b⩘b) , else }","definition_type":"branch_definition","priority":24,"associativity_direction":"right","op_compute_func":"def op_0ajvFaJAv0(a, b):\n if a == 154:\n return op_AHs5Up7iyr(a,6)\n else:\n return op_cHh1gJQ2o6(b,b)\n","op_count_func":"def op_count_0ajvFaJAv0(a, b):\n if a == 154:\n count = op_count_AHs5Up7iyr(a,6)\n else:\n count = op_count_cHh1gJQ2o6(b,b)\n return count\n","dependencies":["cHh1gJQ2o6","AHs5Up7iyr"]} +{"id":448,"func_id":"CpSg5vQTgA","symbol":"⨴∎","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⨴∎ = { (⊥a) , if (a≓∲156)<=233 or (a⪗)>744 ; a , else }","definition_type":"branch_definition","priority":5,"associativity_direction":"left","op_compute_func":"def op_CpSg5vQTgA(a):\n if op_s1XTVnmDOJ(a,156) <= 233 or op_VEQNXA0ZBg(a) > 744:\n return op_Q3PJZHRvZv(a)\n else:\n return a\n","op_count_func":"def op_count_CpSg5vQTgA(a):\n if op_s1XTVnmDOJ(a,156) <= 233 or op_VEQNXA0ZBg(a) > 744:\n count = op_count_Q3PJZHRvZv(a)+op_count_s1XTVnmDOJ(a,156)+op_count_VEQNXA0ZBg(a)\n else:\n count = 1\n return count\n","dependencies":["Q3PJZHRvZv","s1XTVnmDOJ","VEQNXA0ZBg"]} +{"id":449,"func_id":"As8RqfVLgs","symbol":"⋹⋡⊁","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⋹⋡⊁b = { ((a⨐⩸⫘247)⫁⪎(⩰b)) , if (⫵↿b)==517 or b>135 ; (⊀(≀↧⇸a)) , else }","definition_type":"branch_definition","priority":27,"associativity_direction":"right","op_compute_func":"def op_As8RqfVLgs(a, b):\n if op_ivGwdmUAux(b) == 517 or b > 135:\n return op_xRrnTEsQ6j(op_fu6greOZ01(a,247),op_WkeUrDK8WX(b))\n else:\n return op_oPMjh9089D(op_ljTHtUsqzn(a))\n","op_count_func":"def op_count_As8RqfVLgs(a, b):\n if op_ivGwdmUAux(b) == 517 or b > 135:\n count = op_count_fu6greOZ01(a,247)+op_count_WkeUrDK8WX(b)+op_count_xRrnTEsQ6j(op_fu6greOZ01(a,247),op_WkeUrDK8WX(b))+op_count_ivGwdmUAux(b)\n else:\n count = op_count_ljTHtUsqzn(a)+op_count_oPMjh9089D(op_ljTHtUsqzn(a))\n return count\n","dependencies":["ljTHtUsqzn","WkeUrDK8WX","fu6greOZ01","xRrnTEsQ6j","oPMjh9089D","ivGwdmUAux"]} +{"id":450,"func_id":"rrgAzCduG9","symbol":"⪃⊛⇣","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⪃⊛⇣b = { ((b∌b)⊵↤) , if b==348 ; ((a≹⇙⪍a)⪬(a⋝⋈⪟a)) , else }","definition_type":"branch_definition","priority":36,"associativity_direction":"right","op_compute_func":"def op_rrgAzCduG9(a, b):\n if b == 348:\n return op_7IPrd9c3lf(op_8cLx32lpNA(b,b))\n else:\n return op_Ez1Nq5fNfI(op_AHs5Up7iyr(a,a),op_2DDjHMKMc0(a,a))\n","op_count_func":"def op_count_rrgAzCduG9(a, b):\n if b == 348:\n count = op_count_8cLx32lpNA(b,b)+op_count_7IPrd9c3lf(op_8cLx32lpNA(b,b))\n else:\n count = op_count_AHs5Up7iyr(a,a)+op_count_2DDjHMKMc0(a,a)+op_count_Ez1Nq5fNfI(op_AHs5Up7iyr(a,a),op_2DDjHMKMc0(a,a))\n return count\n","dependencies":["Ez1Nq5fNfI","AHs5Up7iyr","2DDjHMKMc0","7IPrd9c3lf","8cLx32lpNA"]} +{"id":451,"func_id":"aNhz54LH3e","symbol":"≎⪠","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a≎⪠b = { (((a⫥∨⫟11)≦↸(657∣a))⩘((⇈a)≬⋮(a↰))) , if a==21 ; (∟⋨(⋂(⨣⨃⇪b))) , else }","definition_type":"branch_definition","priority":30,"associativity_direction":"left","op_compute_func":"def op_aNhz54LH3e(a, b):\n if a == 21:\n return op_cHh1gJQ2o6(op_RygbFNSyEJ(op_KYD54nUTWz(a,11),op_PPChnnnBFF(657,a)),op_kbkesczE7y(op_SLLxy00UIr(a),op_bl5wxAcryP(a)))\n else:\n return op_ctOc4cKSDt(op_BUOGQAYlQx(op_AcOhelriW5(b)))\n","op_count_func":"def op_count_aNhz54LH3e(a, b):\n if a == 21:\n count = op_count_KYD54nUTWz(a,11)+op_count_PPChnnnBFF(657,a)+op_count_RygbFNSyEJ(op_KYD54nUTWz(a,11),op_PPChnnnBFF(657,a))+op_count_SLLxy00UIr(a)+op_count_bl5wxAcryP(a)+op_count_kbkesczE7y(op_SLLxy00UIr(a),op_bl5wxAcryP(a))+op_count_cHh1gJQ2o6(op_RygbFNSyEJ(op_KYD54nUTWz(a,11),op_PPChnnnBFF(657,a)),op_kbkesczE7y(op_SLLxy00UIr(a),op_bl5wxAcryP(a)))\n else:\n count = op_count_AcOhelriW5(b)+op_count_BUOGQAYlQx(op_AcOhelriW5(b))+op_count_ctOc4cKSDt(op_BUOGQAYlQx(op_AcOhelriW5(b)))\n return count\n","dependencies":["bl5wxAcryP","RygbFNSyEJ","SLLxy00UIr","AcOhelriW5","ctOc4cKSDt","cHh1gJQ2o6","KYD54nUTWz","kbkesczE7y","BUOGQAYlQx","PPChnnnBFF"]} +{"id":452,"func_id":"g21JL6JxX7","symbol":"⨭⩧⫛","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⨭⩧⫛a = { ((↥a)⩧⪆(↣≠⋷a)) }","definition_type":"simple_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_g21JL6JxX7(a):\n return op_Ikt5ks8PT7(op_A8NUZmVepG(a),op_Asc51vEJeQ(a))\n","op_count_func":"def op_count_g21JL6JxX7(a):\n count = op_count_A8NUZmVepG(a)+op_count_Asc51vEJeQ(a)+op_count_Ikt5ks8PT7(op_A8NUZmVepG(a),op_Asc51vEJeQ(a))\n return count\n","dependencies":["Ikt5ks8PT7","Asc51vEJeQ","A8NUZmVepG"]} +{"id":453,"func_id":"V0kx6qeWkN","symbol":"≳⇉","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a≳⇉b = { ((b⪁b)∌↝(a∷b)) , if (a∀⋜↑)<109 ; ((b⫘a)∠↢(a⨐⩸⫘a)) , else }","definition_type":"branch_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_V0kx6qeWkN(a, b):\n if op_KipPnG1M2J(a) < 109:\n return op_9Isq31Ruls(op_I7sXao9hZE(b,b),op_D3AQDKkPcf(a,b))\n else:\n return op_KbjG8mgYpV(op_48vC8HMD2b(b,a),op_fu6greOZ01(a,a))\n","op_count_func":"def op_count_V0kx6qeWkN(a, b):\n if op_KipPnG1M2J(a) < 109:\n count = op_count_I7sXao9hZE(b,b)+op_count_D3AQDKkPcf(a,b)+op_count_9Isq31Ruls(op_I7sXao9hZE(b,b),op_D3AQDKkPcf(a,b))+op_count_KipPnG1M2J(a)\n else:\n count = op_count_48vC8HMD2b(b,a)+op_count_fu6greOZ01(a,a)+op_count_KbjG8mgYpV(op_48vC8HMD2b(b,a),op_fu6greOZ01(a,a))\n return count\n","dependencies":["KbjG8mgYpV","48vC8HMD2b","fu6greOZ01","I7sXao9hZE","D3AQDKkPcf","KipPnG1M2J","9Isq31Ruls"]} +{"id":454,"func_id":"k1SHOSEABc","symbol":"⨂≜","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⨂≜b = { ((37⊭↱(⫓⪴a))⩷∴((111⨜⨶78)⨔⇊(a∑⇟⊟b))) }","definition_type":"simple_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_k1SHOSEABc(a, b):\n return op_9FxExcQeMw(op_COABgblf1C(37,op_eLxqMNBOBk(a)),op_JclMnS0uGI(op_HiPekx5b7W(111,78),op_U7g4x0WXJJ(a,b)))\n","op_count_func":"def op_count_k1SHOSEABc(a, b):\n count = op_count_eLxqMNBOBk(a)+op_count_COABgblf1C(37,op_eLxqMNBOBk(a))+op_count_HiPekx5b7W(111,78)+op_count_U7g4x0WXJJ(a,b)+op_count_JclMnS0uGI(op_HiPekx5b7W(111,78),op_U7g4x0WXJJ(a,b))+op_count_9FxExcQeMw(op_COABgblf1C(37,op_eLxqMNBOBk(a)),op_JclMnS0uGI(op_HiPekx5b7W(111,78),op_U7g4x0WXJJ(a,b)))\n return count\n","dependencies":["9FxExcQeMw","HiPekx5b7W","eLxqMNBOBk","JclMnS0uGI","COABgblf1C","U7g4x0WXJJ"]} +{"id":455,"func_id":"E5v5B3UAjG","symbol":"⇺⋃","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⇺⋃a = { (((a≀⩗∶a)∪⫐(a⩁⩘229))⪨⊡(⊥(a↰))) }","definition_type":"simple_definition","priority":24,"associativity_direction":"right","op_compute_func":"def op_E5v5B3UAjG(a):\n return op_kuIXHzHcAH(op_7YooWSwCyH(op_8INZBEW696(a,a),op_gub5Cegaqo(a,229)),op_Q3PJZHRvZv(op_bl5wxAcryP(a)))\n","op_count_func":"def op_count_E5v5B3UAjG(a):\n count = op_count_8INZBEW696(a,a)+op_count_gub5Cegaqo(a,229)+op_count_7YooWSwCyH(op_8INZBEW696(a,a),op_gub5Cegaqo(a,229))+op_count_bl5wxAcryP(a)+op_count_Q3PJZHRvZv(op_bl5wxAcryP(a))+op_count_kuIXHzHcAH(op_7YooWSwCyH(op_8INZBEW696(a,a),op_gub5Cegaqo(a,229)),op_Q3PJZHRvZv(op_bl5wxAcryP(a)))\n return count\n","dependencies":["bl5wxAcryP","Q3PJZHRvZv","gub5Cegaqo","8INZBEW696","kuIXHzHcAH","7YooWSwCyH"]} +{"id":456,"func_id":"lFBm8KRb8F","symbol":"⇜","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⇜a = { ((a⫳≱↱a)⊬⨰(a⪒a)) , if a>51 ; ((⩷10)⫰⋱(⫛⫱⨽a)) , else }","definition_type":"branch_definition","priority":13,"associativity_direction":"right","op_compute_func":"def op_lFBm8KRb8F(a):\n if a > 51:\n return op_s3Fd5m9Dh2(op_ZvLB05nZmT(a,a),op_f6k1SAg4EE(a,a))\n else:\n return op_6o9Blt3TJ6(op_1h0rLqGiFr(10),op_DlLNRPXxWL(a))\n","op_count_func":"def op_count_lFBm8KRb8F(a):\n if a > 51:\n count = op_count_ZvLB05nZmT(a,a)+op_count_f6k1SAg4EE(a,a)+op_count_s3Fd5m9Dh2(op_ZvLB05nZmT(a,a),op_f6k1SAg4EE(a,a))\n else:\n count = op_count_1h0rLqGiFr(10)+op_count_DlLNRPXxWL(a)+op_count_6o9Blt3TJ6(op_1h0rLqGiFr(10),op_DlLNRPXxWL(a))\n return count\n","dependencies":["s3Fd5m9Dh2","DlLNRPXxWL","ZvLB05nZmT","6o9Blt3TJ6","f6k1SAg4EE","1h0rLqGiFr"]} +{"id":457,"func_id":"W9R8I5fN5A","symbol":"⊊","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⊊ = { (((⫛⫱⨽a)∙⊟a)∌((a⇂≾⫗536)⋝⋈⪟(a⫡⨏a))) , if ((a≚⋢)==7 or (a⪘⨀)==15) ; ((a≀⫉(6⪛⫼a))⫠↝⫳) , else }","definition_type":"branch_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_W9R8I5fN5A(a):\n if (op_MahUMFw56D(a) == 7 or op_aA7tF3KVD3(a) == 15):\n return op_8cLx32lpNA(op_SxTAKzQCrw(op_DlLNRPXxWL(a),a),op_2DDjHMKMc0(op_aBQ6xLxuTc(a,536),op_QMFrweE19q(a,a)))\n else:\n return op_8n5YIzOsVS(op_oZj3VtZNQx(a,op_hyuBjUqXlG(6,a)))\n","op_count_func":"def op_count_W9R8I5fN5A(a):\n if (op_MahUMFw56D(a) == 7 or op_aA7tF3KVD3(a) == 15):\n count = op_count_DlLNRPXxWL(a)+op_count_SxTAKzQCrw(op_DlLNRPXxWL(a),a)+op_count_aBQ6xLxuTc(a,536)+op_count_QMFrweE19q(a,a)+op_count_2DDjHMKMc0(op_aBQ6xLxuTc(a,536),op_QMFrweE19q(a,a))+op_count_8cLx32lpNA(op_SxTAKzQCrw(op_DlLNRPXxWL(a),a),op_2DDjHMKMc0(op_aBQ6xLxuTc(a,536),op_QMFrweE19q(a,a)))+op_count_MahUMFw56D(a)+op_count_aA7tF3KVD3(a)\n else:\n count = op_count_hyuBjUqXlG(6,a)+op_count_oZj3VtZNQx(a,op_hyuBjUqXlG(6,a))+op_count_8n5YIzOsVS(op_oZj3VtZNQx(a,op_hyuBjUqXlG(6,a)))\n return count\n","dependencies":["DlLNRPXxWL","aBQ6xLxuTc","8n5YIzOsVS","oZj3VtZNQx","MahUMFw56D","hyuBjUqXlG","aA7tF3KVD3","2DDjHMKMc0","QMFrweE19q","SxTAKzQCrw","8cLx32lpNA"]} +{"id":458,"func_id":"uFPyJr306J","symbol":"∜⨇","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"∜⨇a = { (a⨟⋌⩍a) , if (a⫽⇹≛)!=2 or (↩⪖a)==528 or (∡a)>=548 ; (132⩵∡a) , else }","definition_type":"branch_definition","priority":32,"associativity_direction":"right","op_compute_func":"def op_uFPyJr306J(a):\n if op_NNaDxxp6OQ(a) != 2 or op_fG6uBQFnGz(a) == 528 or op_pRsWfj4Fpp(a) >= 548:\n return op_rGHVDoGpnC(a,a)\n else:\n return op_Y7wcNGrDQJ(132,a)\n","op_count_func":"def op_count_uFPyJr306J(a):\n if op_NNaDxxp6OQ(a) != 2 or op_fG6uBQFnGz(a) == 528 or op_pRsWfj4Fpp(a) >= 548:\n count = op_count_rGHVDoGpnC(a,a)+op_count_NNaDxxp6OQ(a)+op_count_fG6uBQFnGz(a)+op_count_pRsWfj4Fpp(a)\n else:\n count = op_count_Y7wcNGrDQJ(132,a)\n return count\n","dependencies":["fG6uBQFnGz","pRsWfj4Fpp","rGHVDoGpnC","Y7wcNGrDQJ","NNaDxxp6OQ"]} +{"id":459,"func_id":"UMwdvZNt44","symbol":"⇡⇂","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⇡⇂b = { (((b≹⇙⪍b)⋳⪒(b⋷a))∺≝⩲(⫟(a⩷∴43))) , if (⊬↢a)==727 or (a⇔⨋)<18 ; ((604≴⪞⇿(≻⋜b))⨐⩸⫘a) , else }","definition_type":"branch_definition","priority":36,"associativity_direction":"right","op_compute_func":"def op_UMwdvZNt44(a, b):\n if op_WPoGxAaPR1(a) == 727 or op_uBihLCJcMX(a) < 18:\n return op_KPf6cnQVty(op_12rbrZMWeM(op_AHs5Up7iyr(b,b),op_23Mk6UjR3U(b,a)),op_z4E1FaHLuy(op_9FxExcQeMw(a,43)))\n else:\n return op_fu6greOZ01(op_lvlrscuwVU(604,op_3tj9sqzovi(b)),a)\n","op_count_func":"def op_count_UMwdvZNt44(a, b):\n if op_WPoGxAaPR1(a) == 727 or op_uBihLCJcMX(a) < 18:\n count = op_count_AHs5Up7iyr(b,b)+op_count_23Mk6UjR3U(b,a)+op_count_12rbrZMWeM(op_AHs5Up7iyr(b,b),op_23Mk6UjR3U(b,a))+op_count_9FxExcQeMw(a,43)+op_count_z4E1FaHLuy(op_9FxExcQeMw(a,43))+op_count_KPf6cnQVty(op_12rbrZMWeM(op_AHs5Up7iyr(b,b),op_23Mk6UjR3U(b,a)),op_z4E1FaHLuy(op_9FxExcQeMw(a,43)))+op_count_WPoGxAaPR1(a)+op_count_uBihLCJcMX(a)\n else:\n count = op_count_3tj9sqzovi(b)+op_count_lvlrscuwVU(604,op_3tj9sqzovi(b))+op_count_fu6greOZ01(op_lvlrscuwVU(604,op_3tj9sqzovi(b)),a)\n return count\n","dependencies":["9FxExcQeMw","23Mk6UjR3U","z4E1FaHLuy","3tj9sqzovi","fu6greOZ01","AHs5Up7iyr","lvlrscuwVU","KPf6cnQVty","uBihLCJcMX","12rbrZMWeM","WPoGxAaPR1"]} +{"id":460,"func_id":"jiX4gk2v2Q","symbol":"↨","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"↨a = { ((203≀⫉a)⨟⋌⩍a) }","definition_type":"simple_definition","priority":6,"associativity_direction":"right","op_compute_func":"def op_jiX4gk2v2Q(a):\n return op_rGHVDoGpnC(op_oZj3VtZNQx(203,a),a)\n","op_count_func":"def op_count_jiX4gk2v2Q(a):\n count = op_count_oZj3VtZNQx(203,a)+op_count_rGHVDoGpnC(op_oZj3VtZNQx(203,a),a)\n return count\n","dependencies":["rGHVDoGpnC","oZj3VtZNQx"]} +{"id":461,"func_id":"J0M6qkBnIM","symbol":"⋣⋖","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⋣⋖b = { ((a⨐⩸⫘a)⨫⇇↔(⪓⩚165)) , if ((a↯⫤)>=571 and (b⫻⋑⊟)>=52) ; a , else }","definition_type":"branch_definition","priority":12,"associativity_direction":"left","op_compute_func":"def op_J0M6qkBnIM(a, b):\n if (op_VwlE7vj6HS(a) >= 571 and op_o575Zjdmzy(b) >= 52):\n return op_LXhwmt4mBO(op_fu6greOZ01(a,a),op_u0R0Locfp2(165))\n else:\n return a\n","op_count_func":"def op_count_J0M6qkBnIM(a, b):\n if (op_VwlE7vj6HS(a) >= 571 and op_o575Zjdmzy(b) >= 52):\n count = op_count_fu6greOZ01(a,a)+op_count_u0R0Locfp2(165)+op_count_LXhwmt4mBO(op_fu6greOZ01(a,a),op_u0R0Locfp2(165))+op_count_VwlE7vj6HS(a)+op_count_o575Zjdmzy(b)\n else:\n count = 1\n return count\n","dependencies":["VwlE7vj6HS","LXhwmt4mBO","o575Zjdmzy","fu6greOZ01","u0R0Locfp2"]} +{"id":462,"func_id":"r0FS3hW4cC","symbol":"⊀⩕","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⊀⩕ = { (a⨟⋌⩍(181∇⊂⋱a)) }","definition_type":"simple_definition","priority":37,"associativity_direction":"left","op_compute_func":"def op_r0FS3hW4cC(a):\n return op_rGHVDoGpnC(a,op_nhYeJWJD5X(181,a))\n","op_count_func":"def op_count_r0FS3hW4cC(a):\n count = op_count_nhYeJWJD5X(181,a)+op_count_rGHVDoGpnC(a,op_nhYeJWJD5X(181,a))\n return count\n","dependencies":["rGHVDoGpnC","nhYeJWJD5X"]} +{"id":463,"func_id":"SVb2v531z1","symbol":"⨴⫝","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⨴⫝a = { ((⪨⨬(⇋↷a))≬⇓((a⋅⇍a)⨑≵⋬(∡178))) , if (a⪇≇⋚963)!=62 ; (((541⋛107)⩼⇪↪(⪭⩑⪱a))⋻⩜⩜((a⊕∕a)∼(459⨽6))) , else }","definition_type":"branch_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_SVb2v531z1(a):\n if op_3sJ7IOPOlU(a,963) != 62:\n return op_jWTQ2TZYIH(op_5obUd6DV38(op_SWo3A1KBJH(a)),op_XnXgA4xnOs(op_AdZkA7nFnk(a,a),op_pRsWfj4Fpp(178)))\n else:\n return op_oDCm7WA9JY(op_ocnLzx9CaJ(op_YbUVn0Rbpy(541,107),op_SIgE0bArFf(a)),op_DyGG3AbaNP(op_9cloC0Ngie(a,a),op_8HhzD0ZcuI(459,6)))\n","op_count_func":"def op_count_SVb2v531z1(a):\n if op_3sJ7IOPOlU(a,963) != 62:\n count = op_count_SWo3A1KBJH(a)+op_count_5obUd6DV38(op_SWo3A1KBJH(a))+op_count_AdZkA7nFnk(a,a)+op_count_pRsWfj4Fpp(178)+op_count_XnXgA4xnOs(op_AdZkA7nFnk(a,a),op_pRsWfj4Fpp(178))+op_count_jWTQ2TZYIH(op_5obUd6DV38(op_SWo3A1KBJH(a)),op_XnXgA4xnOs(op_AdZkA7nFnk(a,a),op_pRsWfj4Fpp(178)))+op_count_3sJ7IOPOlU(a,963)\n else:\n count = op_count_YbUVn0Rbpy(541,107)+op_count_SIgE0bArFf(a)+op_count_ocnLzx9CaJ(op_YbUVn0Rbpy(541,107),op_SIgE0bArFf(a))+op_count_9cloC0Ngie(a,a)+op_count_8HhzD0ZcuI(459,6)+op_count_DyGG3AbaNP(op_9cloC0Ngie(a,a),op_8HhzD0ZcuI(459,6))+op_count_oDCm7WA9JY(op_ocnLzx9CaJ(op_YbUVn0Rbpy(541,107),op_SIgE0bArFf(a)),op_DyGG3AbaNP(op_9cloC0Ngie(a,a),op_8HhzD0ZcuI(459,6)))\n return count\n","dependencies":["oDCm7WA9JY","XnXgA4xnOs","ocnLzx9CaJ","3sJ7IOPOlU","9cloC0Ngie","SWo3A1KBJH","jWTQ2TZYIH","pRsWfj4Fpp","DyGG3AbaNP","5obUd6DV38","8HhzD0ZcuI","YbUVn0Rbpy","AdZkA7nFnk","SIgE0bArFf"]} +{"id":464,"func_id":"ZGCBLdVRRX","symbol":"⇵⪽","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⇵⪽a = { (a∑⇟⊟a) }","definition_type":"simple_definition","priority":36,"associativity_direction":"right","op_compute_func":"def op_ZGCBLdVRRX(a):\n return op_U7g4x0WXJJ(a,a)\n","op_count_func":"def op_count_ZGCBLdVRRX(a):\n count = op_count_U7g4x0WXJJ(a,a)\n return count\n","dependencies":["U7g4x0WXJJ"]} +{"id":465,"func_id":"pABnYW3G3E","symbol":"⊫∞","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⊫∞ = { ((a⨐⩸⫘149)⪇≇⋚(a∪⫐a)) , if (⫵↿a)>=80 ; a , else }","definition_type":"branch_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_pABnYW3G3E(a):\n if op_ivGwdmUAux(a) >= 80:\n return op_3sJ7IOPOlU(op_fu6greOZ01(a,149),op_7YooWSwCyH(a,a))\n else:\n return a\n","op_count_func":"def op_count_pABnYW3G3E(a):\n if op_ivGwdmUAux(a) >= 80:\n count = op_count_fu6greOZ01(a,149)+op_count_7YooWSwCyH(a,a)+op_count_3sJ7IOPOlU(op_fu6greOZ01(a,149),op_7YooWSwCyH(a,a))+op_count_ivGwdmUAux(a)\n else:\n count = 1\n return count\n","dependencies":["fu6greOZ01","3sJ7IOPOlU","7YooWSwCyH","ivGwdmUAux"]} +{"id":466,"func_id":"nLYMGWM7L8","symbol":"⨲","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⨲ = { ((a↢a)∴(118⪝a)) , if a==152 ; ((a⪄a)⫘(⫛⫱⨽a)) , else }","definition_type":"branch_definition","priority":15,"associativity_direction":"left","op_compute_func":"def op_nLYMGWM7L8(a):\n if a == 152:\n return op_hrf7POJlIJ(op_WR6HLWljOP(a,a),op_wicAB68Tmb(118,a))\n else:\n return op_48vC8HMD2b(op_SUmda5xLS4(a,a),op_DlLNRPXxWL(a))\n","op_count_func":"def op_count_nLYMGWM7L8(a):\n if a == 152:\n count = op_count_WR6HLWljOP(a,a)+op_count_wicAB68Tmb(118,a)+op_count_hrf7POJlIJ(op_WR6HLWljOP(a,a),op_wicAB68Tmb(118,a))\n else:\n count = op_count_SUmda5xLS4(a,a)+op_count_DlLNRPXxWL(a)+op_count_48vC8HMD2b(op_SUmda5xLS4(a,a),op_DlLNRPXxWL(a))\n return count\n","dependencies":["DlLNRPXxWL","WR6HLWljOP","48vC8HMD2b","SUmda5xLS4","wicAB68Tmb","hrf7POJlIJ"]} +{"id":467,"func_id":"v1UQAVDJRr","symbol":"∥⊢⊲","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a∥⊢⊲b = { (a⨟⋌⩍b) , if (a⫌⩹⨱)>=49 ; b , else }","definition_type":"branch_definition","priority":18,"associativity_direction":"right","op_compute_func":"def op_v1UQAVDJRr(a, b):\n if op_EBcxylXtPf(a) >= 49:\n return op_rGHVDoGpnC(a,b)\n else:\n return b\n","op_count_func":"def op_count_v1UQAVDJRr(a, b):\n if op_EBcxylXtPf(a) >= 49:\n count = op_count_rGHVDoGpnC(a,b)+op_count_EBcxylXtPf(a)\n else:\n count = 1\n return count\n","dependencies":["EBcxylXtPf","rGHVDoGpnC"]} +{"id":468,"func_id":"htSmYCowi5","symbol":"≝⊰⇂","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a≝⊰⇂ = { (a⩷∴51) , if a<491 ; (⫛⫱⨽a) , else }","definition_type":"branch_definition","priority":21,"associativity_direction":"left","op_compute_func":"def op_htSmYCowi5(a):\n if a < 491:\n return op_9FxExcQeMw(a,51)\n else:\n return op_DlLNRPXxWL(a)\n","op_count_func":"def op_count_htSmYCowi5(a):\n if a < 491:\n count = op_count_9FxExcQeMw(a,51)\n else:\n count = op_count_DlLNRPXxWL(a)\n return count\n","dependencies":["9FxExcQeMw","DlLNRPXxWL"]} +{"id":469,"func_id":"tXD093vOjl","symbol":"∖","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a∖b = { ((448⨐⩸⫘a)≀⩗∶(b⋕⪉⪜a)) , if (⩦⊞a)>101 ; ((b⫸⊐b)∼(65-101)) , else }","definition_type":"branch_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_tXD093vOjl(a, b):\n if op_u7fv1HBiaC(a) > 101:\n return op_8INZBEW696(op_fu6greOZ01(448,a),op_z6LnFrNh4i(b,a))\n else:\n return op_DyGG3AbaNP(op_mqXw5SEYmG(b,b),op_rysDP5nf3Z(65,101))\n","op_count_func":"def op_count_tXD093vOjl(a, b):\n if op_u7fv1HBiaC(a) > 101:\n count = op_count_fu6greOZ01(448,a)+op_count_z6LnFrNh4i(b,a)+op_count_8INZBEW696(op_fu6greOZ01(448,a),op_z6LnFrNh4i(b,a))+op_count_u7fv1HBiaC(a)\n else:\n count = op_count_mqXw5SEYmG(b,b)+op_count_rysDP5nf3Z(65,101)+op_count_DyGG3AbaNP(op_mqXw5SEYmG(b,b),op_rysDP5nf3Z(65,101))\n return count\n","dependencies":["rysDP5nf3Z","fu6greOZ01","8INZBEW696","DyGG3AbaNP","z6LnFrNh4i","mqXw5SEYmG","u7fv1HBiaC"]} +{"id":470,"func_id":"O6EZ0fifGK","symbol":"⊝","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⊝ = { a , if (≯a)<=30 ; (((⩦⊞a)≁↽≥(a⪉⨛a))≹⇙⪍((a⊓⋫)⪉⨛(a⫰⋱a))) , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_O6EZ0fifGK(a):\n if op_keWfFq85dY(a) <= 30:\n return a\n else:\n return op_AHs5Up7iyr(op_ncHt1X6cMc(op_u7fv1HBiaC(a),op_EWw2JM7wp4(a,a)),op_EWw2JM7wp4(op_IqGBaFP0uj(a),op_6o9Blt3TJ6(a,a)))\n","op_count_func":"def op_count_O6EZ0fifGK(a):\n if op_keWfFq85dY(a) <= 30:\n count = 1\n else:\n count = op_count_u7fv1HBiaC(a)+op_count_EWw2JM7wp4(a,a)+op_count_ncHt1X6cMc(op_u7fv1HBiaC(a),op_EWw2JM7wp4(a,a))+op_count_IqGBaFP0uj(a)+op_count_6o9Blt3TJ6(a,a)+op_count_EWw2JM7wp4(op_IqGBaFP0uj(a),op_6o9Blt3TJ6(a,a))+op_count_AHs5Up7iyr(op_ncHt1X6cMc(op_u7fv1HBiaC(a),op_EWw2JM7wp4(a,a)),op_EWw2JM7wp4(op_IqGBaFP0uj(a),op_6o9Blt3TJ6(a,a)))\n return count\n","dependencies":["IqGBaFP0uj","ncHt1X6cMc","AHs5Up7iyr","EWw2JM7wp4","6o9Blt3TJ6","keWfFq85dY","u7fv1HBiaC"]} +{"id":471,"func_id":"CoMdbyAt7R","symbol":"⨛","n_ary":1,"unary_position":"prefix","n_order":4,"is_base":null,"definition":"⨛a = { (⊖((≱⇩⩕a)∼(⨡↴a))) }","definition_type":"simple_definition","priority":4,"associativity_direction":"right","op_compute_func":"def op_CoMdbyAt7R(a):\n return op_U6pG0PXrV3(op_DyGG3AbaNP(op_3DZMoQKiUl(a),op_liw5iZPkLH(a)))\n","op_count_func":"def op_count_CoMdbyAt7R(a):\n count = op_count_3DZMoQKiUl(a)+op_count_liw5iZPkLH(a)+op_count_DyGG3AbaNP(op_3DZMoQKiUl(a),op_liw5iZPkLH(a))+op_count_U6pG0PXrV3(op_DyGG3AbaNP(op_3DZMoQKiUl(a),op_liw5iZPkLH(a)))\n return count\n","dependencies":["U6pG0PXrV3","DyGG3AbaNP","liw5iZPkLH","3DZMoQKiUl"]} +{"id":472,"func_id":"2k53nXOpI5","symbol":"⇀∌","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⇀∌ = { ((a⪎↠(⨣⨃⇪a))⋥⋵⩄(a∊∟⩊(⊥a))) }","definition_type":"simple_definition","priority":10,"associativity_direction":"left","op_compute_func":"def op_2k53nXOpI5(a):\n return op_7t3wd0Fuz7(op_3tVxb0NHM4(a,op_AcOhelriW5(a)),op_ddLRYrp01A(a,op_Q3PJZHRvZv(a)))\n","op_count_func":"def op_count_2k53nXOpI5(a):\n count = op_count_AcOhelriW5(a)+op_count_3tVxb0NHM4(a,op_AcOhelriW5(a))+op_count_Q3PJZHRvZv(a)+op_count_ddLRYrp01A(a,op_Q3PJZHRvZv(a))+op_count_7t3wd0Fuz7(op_3tVxb0NHM4(a,op_AcOhelriW5(a)),op_ddLRYrp01A(a,op_Q3PJZHRvZv(a)))\n return count\n","dependencies":["Q3PJZHRvZv","ddLRYrp01A","AcOhelriW5","7t3wd0Fuz7","3tVxb0NHM4"]} +{"id":473,"func_id":"6Ko8hGgeMq","symbol":"⫒⫫","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⫒⫫b = { (b≹⇙⪍a) , if (a∁)>135 ; (b⇌⫙⪟a) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_6Ko8hGgeMq(a, b):\n if op_jdwGQqwJi5(a) > 135:\n return op_AHs5Up7iyr(b,a)\n else:\n return op_AFVx7xoS7T(b,a)\n","op_count_func":"def op_count_6Ko8hGgeMq(a, b):\n if op_jdwGQqwJi5(a) > 135:\n count = op_count_AHs5Up7iyr(b,a)+op_count_jdwGQqwJi5(a)\n else:\n count = op_count_AFVx7xoS7T(b,a)\n return count\n","dependencies":["jdwGQqwJi5","AHs5Up7iyr","AFVx7xoS7T"]} +{"id":474,"func_id":"HnzytWxmAO","symbol":"⇴∐","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⇴∐b = { (((b+⪬∐b)∑⇟⊟b)⪥a) }","definition_type":"simple_definition","priority":9,"associativity_direction":"left","op_compute_func":"def op_HnzytWxmAO(a, b):\n return op_QbnwKVWMIQ(op_U7g4x0WXJJ(op_2GS7woTJqF(b,b),b),a)\n","op_count_func":"def op_count_HnzytWxmAO(a, b):\n count = op_count_2GS7woTJqF(b,b)+op_count_U7g4x0WXJJ(op_2GS7woTJqF(b,b),b)+op_count_QbnwKVWMIQ(op_U7g4x0WXJJ(op_2GS7woTJqF(b,b),b),a)\n return count\n","dependencies":["2GS7woTJqF","QbnwKVWMIQ","U7g4x0WXJJ"]} +{"id":475,"func_id":"JxwMv5le6e","symbol":"⨼⩣","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a⨼⩣b = { ((∐⩳⋚(b⩘a))⪛((∡129)⫥∨⫟(a⫲⨊))) }","definition_type":"simple_definition","priority":16,"associativity_direction":"right","op_compute_func":"def op_JxwMv5le6e(a, b):\n return op_uFcxV4UQCh(op_SL6IHkK8vl(op_cHh1gJQ2o6(b,a)),op_KYD54nUTWz(op_pRsWfj4Fpp(129),op_CArV6hThFE(a)))\n","op_count_func":"def op_count_JxwMv5le6e(a, b):\n count = op_count_cHh1gJQ2o6(b,a)+op_count_SL6IHkK8vl(op_cHh1gJQ2o6(b,a))+op_count_pRsWfj4Fpp(129)+op_count_CArV6hThFE(a)+op_count_KYD54nUTWz(op_pRsWfj4Fpp(129),op_CArV6hThFE(a))+op_count_uFcxV4UQCh(op_SL6IHkK8vl(op_cHh1gJQ2o6(b,a)),op_KYD54nUTWz(op_pRsWfj4Fpp(129),op_CArV6hThFE(a)))\n return count\n","dependencies":["uFcxV4UQCh","cHh1gJQ2o6","SL6IHkK8vl","KYD54nUTWz","pRsWfj4Fpp","CArV6hThFE"]} +{"id":476,"func_id":"yIPP7u6H5x","symbol":"⩭","n_ary":1,"unary_position":"postfix","n_order":4,"is_base":null,"definition":"a⩭ = { (((a⨐⩸⫘a)⪎↠(696*a))⪔(224⪄(⋗⩴⪓a))) }","definition_type":"simple_definition","priority":3,"associativity_direction":"left","op_compute_func":"def op_yIPP7u6H5x(a):\n return op_GjBEYRfMaF(op_3tVxb0NHM4(op_fu6greOZ01(a,a),op_9HNa5Wba9A(696,a)),op_SUmda5xLS4(224,op_nOKPl9n5zu(a)))\n","op_count_func":"def op_count_yIPP7u6H5x(a):\n count = op_count_fu6greOZ01(a,a)+op_count_9HNa5Wba9A(696,a)+op_count_3tVxb0NHM4(op_fu6greOZ01(a,a),op_9HNa5Wba9A(696,a))+op_count_nOKPl9n5zu(a)+op_count_SUmda5xLS4(224,op_nOKPl9n5zu(a))+op_count_GjBEYRfMaF(op_3tVxb0NHM4(op_fu6greOZ01(a,a),op_9HNa5Wba9A(696,a)),op_SUmda5xLS4(224,op_nOKPl9n5zu(a)))\n return count\n","dependencies":["nOKPl9n5zu","SUmda5xLS4","9HNa5Wba9A","fu6greOZ01","3tVxb0NHM4","GjBEYRfMaF"]} +{"id":477,"func_id":"vXNesLlMH1","symbol":"≄⊠","n_ary":2,"unary_position":null,"n_order":4,"is_base":null,"definition":"a≄⊠b = { ((a∼b)⫯⪬∳(b∲⫓138)) , if (a⫣⪄⊒915)>=34 ; (⋗⩴⪓(b⫣⪄⊒b)) , else }","definition_type":"branch_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_vXNesLlMH1(a, b):\n if op_RabNbG55vr(a,915) >= 34:\n return op_d7ASUq0ydm(op_DyGG3AbaNP(a,b),op_i8ToyICDmI(b,138))\n else:\n return op_nOKPl9n5zu(op_RabNbG55vr(b,b))\n","op_count_func":"def op_count_vXNesLlMH1(a, b):\n if op_RabNbG55vr(a,915) >= 34:\n count = op_count_DyGG3AbaNP(a,b)+op_count_i8ToyICDmI(b,138)+op_count_d7ASUq0ydm(op_DyGG3AbaNP(a,b),op_i8ToyICDmI(b,138))+op_count_RabNbG55vr(a,915)\n else:\n count = op_count_RabNbG55vr(b,b)+op_count_nOKPl9n5zu(op_RabNbG55vr(b,b))\n return count\n","dependencies":["d7ASUq0ydm","nOKPl9n5zu","RabNbG55vr","DyGG3AbaNP","i8ToyICDmI"]} +{"id":478,"func_id":"KvvgdUaMHJ","symbol":"⇆⨓≜","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⇆⨓≜ = { (∂(a⫥∨⫟a)) }","definition_type":"simple_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_KvvgdUaMHJ(a):\n return op_Uaa54Peajs(op_KYD54nUTWz(a,a))\n","op_count_func":"def op_count_KvvgdUaMHJ(a):\n count = op_count_KYD54nUTWz(a,a)+op_count_Uaa54Peajs(op_KYD54nUTWz(a,a))\n return count\n","dependencies":["Uaa54Peajs","KYD54nUTWz"]} +{"id":479,"func_id":"4n53wtyJvv","symbol":"⪚⩙≫","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⪚⩙≫ = { ((316↢a)⨳⩥⨓(∂255)) }","definition_type":"simple_definition","priority":28,"associativity_direction":"left","op_compute_func":"def op_4n53wtyJvv(a):\n return op_nCS4ZIUYfx(op_WR6HLWljOP(316,a),op_Uaa54Peajs(255))\n","op_count_func":"def op_count_4n53wtyJvv(a):\n count = op_count_WR6HLWljOP(316,a)+op_count_Uaa54Peajs(255)+op_count_nCS4ZIUYfx(op_WR6HLWljOP(316,a),op_Uaa54Peajs(255))\n return count\n","dependencies":["Uaa54Peajs","nCS4ZIUYfx","WR6HLWljOP"]} +{"id":480,"func_id":"RqrPlJkxDo","symbol":"↞⋁","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a↞⋁b = { a , if (b⫲⨊)<=80 ; (∂(243↤⩊b)) , else }","definition_type":"branch_definition","priority":31,"associativity_direction":"right","op_compute_func":"def op_RqrPlJkxDo(a, b):\n if op_CArV6hThFE(b) <= 80:\n return a\n else:\n return op_Uaa54Peajs(op_13rbtpv6ld(243,b))\n","op_count_func":"def op_count_RqrPlJkxDo(a, b):\n if op_CArV6hThFE(b) <= 80:\n count = 1\n else:\n count = op_count_13rbtpv6ld(243,b)+op_count_Uaa54Peajs(op_13rbtpv6ld(243,b))\n return count\n","dependencies":["Uaa54Peajs","CArV6hThFE","13rbtpv6ld"]} +{"id":481,"func_id":"8N2wDY1A35","symbol":"≁","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a≁b = { (∨∊⋏b) , if (⇨a)<365 ; ((a⪎↠b)↬(b⫒⫫b)) , else }","definition_type":"branch_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_8N2wDY1A35(a, b):\n if op_G9tJMlZ94a(a) < 365:\n return op_R5aXW34M0v(b)\n else:\n return op_B5M0gjZbta(op_3tVxb0NHM4(a,b),op_6Ko8hGgeMq(b,b))\n","op_count_func":"def op_count_8N2wDY1A35(a, b):\n if op_G9tJMlZ94a(a) < 365:\n count = op_count_R5aXW34M0v(b)+op_count_G9tJMlZ94a(a)\n else:\n count = op_count_3tVxb0NHM4(a,b)+op_count_6Ko8hGgeMq(b,b)+op_count_B5M0gjZbta(op_3tVxb0NHM4(a,b),op_6Ko8hGgeMq(b,b))\n return count\n","dependencies":["B5M0gjZbta","6Ko8hGgeMq","3tVxb0NHM4","G9tJMlZ94a","R5aXW34M0v"]} +{"id":482,"func_id":"zashukvMKz","symbol":"⫗⊷⫓","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a⫗⊷⫓b = { ((∂(b⨂≜a))⫩⊇) , if (↣≠⋷b)<=196 ; ((∷≠(a⊋≦⊧b))↓((b≎⊠⪸a)⪪(a≀⩗∶b))) , else }","definition_type":"branch_definition","priority":38,"associativity_direction":"left","op_compute_func":"def op_zashukvMKz(a, b):\n if op_Asc51vEJeQ(b) <= 196:\n return op_BjRHVeLaeN(op_Uaa54Peajs(op_k1SHOSEABc(b,a)))\n else:\n return op_Af076pWI7l(op_QiR2Oyf5Xj(op_oRDoc9rAEX(a,b)),op_xD69zh8xqp(op_bJkvcejdHO(b,a),op_8INZBEW696(a,b)))\n","op_count_func":"def op_count_zashukvMKz(a, b):\n if op_Asc51vEJeQ(b) <= 196:\n count = op_count_k1SHOSEABc(b,a)+op_count_Uaa54Peajs(op_k1SHOSEABc(b,a))+op_count_BjRHVeLaeN(op_Uaa54Peajs(op_k1SHOSEABc(b,a)))+op_count_Asc51vEJeQ(b)\n else:\n count = op_count_oRDoc9rAEX(a,b)+op_count_QiR2Oyf5Xj(op_oRDoc9rAEX(a,b))+op_count_bJkvcejdHO(b,a)+op_count_8INZBEW696(a,b)+op_count_xD69zh8xqp(op_bJkvcejdHO(b,a),op_8INZBEW696(a,b))+op_count_Af076pWI7l(op_QiR2Oyf5Xj(op_oRDoc9rAEX(a,b)),op_xD69zh8xqp(op_bJkvcejdHO(b,a),op_8INZBEW696(a,b)))\n return count\n","dependencies":["xD69zh8xqp","Uaa54Peajs","BjRHVeLaeN","QiR2Oyf5Xj","k1SHOSEABc","Asc51vEJeQ","oRDoc9rAEX","bJkvcejdHO","8INZBEW696","Af076pWI7l"]} +{"id":483,"func_id":"hpqmaQFPrd","symbol":"⇗⋫","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⇗⋫ = { (a≭a) }","definition_type":"simple_definition","priority":17,"associativity_direction":"left","op_compute_func":"def op_hpqmaQFPrd(a):\n return op_rxpJgHHUmx(a,a)\n","op_count_func":"def op_count_hpqmaQFPrd(a):\n count = op_count_rxpJgHHUmx(a,a)\n return count\n","dependencies":["rxpJgHHUmx"]} +{"id":484,"func_id":"IkUmn0D7oy","symbol":"⊑","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"⊑a = { ((a⋅⇍254)⊋≦⊧(⨈⫕a)) }","definition_type":"simple_definition","priority":11,"associativity_direction":"right","op_compute_func":"def op_IkUmn0D7oy(a):\n return op_oRDoc9rAEX(op_AdZkA7nFnk(a,254),op_megm06wKyl(a))\n","op_count_func":"def op_count_IkUmn0D7oy(a):\n count = op_count_AdZkA7nFnk(a,254)+op_count_megm06wKyl(a)+op_count_oRDoc9rAEX(op_AdZkA7nFnk(a,254),op_megm06wKyl(a))\n return count\n","dependencies":["oRDoc9rAEX","AdZkA7nFnk","megm06wKyl"]} +{"id":485,"func_id":"FWz7pXsQhA","symbol":"⊊≼∋","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"⊊≼∋a = { (a↬a) , if a<=50 ; (a⇻⋧≁a) , else }","definition_type":"branch_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_FWz7pXsQhA(a):\n if a <= 50:\n return op_B5M0gjZbta(a,a)\n else:\n return op_jCPkEVoL5K(a,a)\n","op_count_func":"def op_count_FWz7pXsQhA(a):\n if a <= 50:\n count = op_count_B5M0gjZbta(a,a)\n else:\n count = op_count_jCPkEVoL5K(a,a)\n return count\n","dependencies":["B5M0gjZbta","jCPkEVoL5K"]} +{"id":486,"func_id":"Z8Yg6dlDSp","symbol":"⇪⋭","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⇪⋭ = { ((a≒∊a)⋓(⇁⨣⪵a)) }","definition_type":"simple_definition","priority":30,"associativity_direction":"left","op_compute_func":"def op_Z8Yg6dlDSp(a):\n return op_T2fj7uvVaJ(op_5KTvxBwnZo(a,a),op_inkyxCbjAn(a))\n","op_count_func":"def op_count_Z8Yg6dlDSp(a):\n count = op_count_5KTvxBwnZo(a,a)+op_count_inkyxCbjAn(a)+op_count_T2fj7uvVaJ(op_5KTvxBwnZo(a,a),op_inkyxCbjAn(a))\n return count\n","dependencies":["T2fj7uvVaJ","5KTvxBwnZo","inkyxCbjAn"]} +{"id":487,"func_id":"kMhfGuqI2H","symbol":"⩩","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"⩩a = { (⇜(a⫩)) , if (⇵⪽a)!=444 ; ((a⪒a)∧) , else }","definition_type":"branch_definition","priority":31,"associativity_direction":"right","op_compute_func":"def op_kMhfGuqI2H(a):\n if op_ZGCBLdVRRX(a) != 444:\n return op_lFBm8KRb8F(op_6aG7x05OhS(a))\n else:\n return op_z63VuFQld9(op_f6k1SAg4EE(a,a))\n","op_count_func":"def op_count_kMhfGuqI2H(a):\n if op_ZGCBLdVRRX(a) != 444:\n count = op_count_6aG7x05OhS(a)+op_count_lFBm8KRb8F(op_6aG7x05OhS(a))+op_count_ZGCBLdVRRX(a)\n else:\n count = op_count_f6k1SAg4EE(a,a)+op_count_z63VuFQld9(op_f6k1SAg4EE(a,a))\n return count\n","dependencies":["6aG7x05OhS","z63VuFQld9","lFBm8KRb8F","f6k1SAg4EE","ZGCBLdVRRX"]} +{"id":488,"func_id":"lyWz822IDG","symbol":"≌","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a≌b = { (≛((132⩦9)⊉↱≁(a⪇≇⋚a))) , if (a⪘⫢419)==234 ; (((⩰124)≚⊃≕(b⨴∎))⊢((16⨉)↬(a⊟⇱))) , else }","definition_type":"branch_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_lyWz822IDG(a, b):\n if op_oacrs7FA3X(a,419) == 234:\n return op_W7eaUhjymW(op_w2P8NbNXyL(op_0kmYd0q39Y(132,9),op_3sJ7IOPOlU(a,a)))\n else:\n return op_5twsqlHp2o(op_Bmrmz2XGnR(op_WkeUrDK8WX(124),op_CpSg5vQTgA(b)),op_B5M0gjZbta(op_aMUSaJuDRU(16),op_03sUfWo75k(a)))\n","op_count_func":"def op_count_lyWz822IDG(a, b):\n if op_oacrs7FA3X(a,419) == 234:\n count = op_count_0kmYd0q39Y(132,9)+op_count_3sJ7IOPOlU(a,a)+op_count_w2P8NbNXyL(op_0kmYd0q39Y(132,9),op_3sJ7IOPOlU(a,a))+op_count_W7eaUhjymW(op_w2P8NbNXyL(op_0kmYd0q39Y(132,9),op_3sJ7IOPOlU(a,a)))+op_count_oacrs7FA3X(a,419)\n else:\n count = op_count_WkeUrDK8WX(124)+op_count_CpSg5vQTgA(b)+op_count_Bmrmz2XGnR(op_WkeUrDK8WX(124),op_CpSg5vQTgA(b))+op_count_aMUSaJuDRU(16)+op_count_03sUfWo75k(a)+op_count_B5M0gjZbta(op_aMUSaJuDRU(16),op_03sUfWo75k(a))+op_count_5twsqlHp2o(op_Bmrmz2XGnR(op_WkeUrDK8WX(124),op_CpSg5vQTgA(b)),op_B5M0gjZbta(op_aMUSaJuDRU(16),op_03sUfWo75k(a)))\n return count\n","dependencies":["B5M0gjZbta","W7eaUhjymW","CpSg5vQTgA","w2P8NbNXyL","0kmYd0q39Y","3sJ7IOPOlU","Bmrmz2XGnR","WkeUrDK8WX","03sUfWo75k","5twsqlHp2o","oacrs7FA3X","aMUSaJuDRU"]} +{"id":489,"func_id":"4X9JU4Jbn6","symbol":"⪓⨏","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⪓⨏ = { (((⨣⨃⇪a)≭(a⊊))⫢⨠((a⪇≇⋚a)⩘(413≥⨤⩑a))) , if (⇁⨣⪵a)<1 ; ((⋗⩴⪓(191∧))⫢⨠(⨛(a⊴a))) , else }","definition_type":"branch_definition","priority":7,"associativity_direction":"left","op_compute_func":"def op_4X9JU4Jbn6(a):\n if op_inkyxCbjAn(a) < 1:\n return op_xlXykHWxX1(op_rxpJgHHUmx(op_AcOhelriW5(a),op_W9R8I5fN5A(a)),op_cHh1gJQ2o6(op_3sJ7IOPOlU(a,a),op_gJLn6v0xnP(413,a)))\n else:\n return op_xlXykHWxX1(op_nOKPl9n5zu(op_z63VuFQld9(191)),op_CoMdbyAt7R(op_Nsiff2A1zJ(a,a)))\n","op_count_func":"def op_count_4X9JU4Jbn6(a):\n if op_inkyxCbjAn(a) < 1:\n count = op_count_AcOhelriW5(a)+op_count_W9R8I5fN5A(a)+op_count_rxpJgHHUmx(op_AcOhelriW5(a),op_W9R8I5fN5A(a))+op_count_3sJ7IOPOlU(a,a)+op_count_gJLn6v0xnP(413,a)+op_count_cHh1gJQ2o6(op_3sJ7IOPOlU(a,a),op_gJLn6v0xnP(413,a))+op_count_xlXykHWxX1(op_rxpJgHHUmx(op_AcOhelriW5(a),op_W9R8I5fN5A(a)),op_cHh1gJQ2o6(op_3sJ7IOPOlU(a,a),op_gJLn6v0xnP(413,a)))+op_count_inkyxCbjAn(a)\n else:\n count = op_count_z63VuFQld9(191)+op_count_nOKPl9n5zu(op_z63VuFQld9(191))+op_count_Nsiff2A1zJ(a,a)+op_count_CoMdbyAt7R(op_Nsiff2A1zJ(a,a))+op_count_xlXykHWxX1(op_nOKPl9n5zu(op_z63VuFQld9(191)),op_CoMdbyAt7R(op_Nsiff2A1zJ(a,a)))\n return count\n","dependencies":["gJLn6v0xnP","nOKPl9n5zu","W9R8I5fN5A","rxpJgHHUmx","inkyxCbjAn","z63VuFQld9","AcOhelriW5","3sJ7IOPOlU","CoMdbyAt7R","cHh1gJQ2o6","xlXykHWxX1","Nsiff2A1zJ"]} +{"id":490,"func_id":"zNRQejTB5A","symbol":"⪥⨬⪅","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⪥⨬⪅ = { (((a⨎1)⊹∫⫚(a⇄a))⫯⪬∳((a∽a)↳≱(∂a))) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_zNRQejTB5A(a):\n return op_d7ASUq0ydm(op_uWAJUKEvyW(op_rJVOvQCfKK(a,1),op_3EYGwJThht(a,a)),op_JwTKLfZU96(op_y4ImoPnbV5(a,a),op_Uaa54Peajs(a)))\n","op_count_func":"def op_count_zNRQejTB5A(a):\n count = op_count_rJVOvQCfKK(a,1)+op_count_3EYGwJThht(a,a)+op_count_uWAJUKEvyW(op_rJVOvQCfKK(a,1),op_3EYGwJThht(a,a))+op_count_y4ImoPnbV5(a,a)+op_count_Uaa54Peajs(a)+op_count_JwTKLfZU96(op_y4ImoPnbV5(a,a),op_Uaa54Peajs(a))+op_count_d7ASUq0ydm(op_uWAJUKEvyW(op_rJVOvQCfKK(a,1),op_3EYGwJThht(a,a)),op_JwTKLfZU96(op_y4ImoPnbV5(a,a),op_Uaa54Peajs(a)))\n return count\n","dependencies":["d7ASUq0ydm","Uaa54Peajs","3EYGwJThht","y4ImoPnbV5","JwTKLfZU96","rJVOvQCfKK","uWAJUKEvyW"]} +{"id":491,"func_id":"OXDGMFPWZM","symbol":"⊍⩺⋍","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a⊍⩺⋍b = { ((⇁⨣⪵659)↤⩊(b⨭⪣a)) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_OXDGMFPWZM(a, b):\n return op_13rbtpv6ld(op_inkyxCbjAn(659),op_kn8WO9XteQ(b,a))\n","op_count_func":"def op_count_OXDGMFPWZM(a, b):\n count = op_count_inkyxCbjAn(659)+op_count_kn8WO9XteQ(b,a)+op_count_13rbtpv6ld(op_inkyxCbjAn(659),op_kn8WO9XteQ(b,a))\n return count\n","dependencies":["kn8WO9XteQ","inkyxCbjAn","13rbtpv6ld"]} +{"id":492,"func_id":"5uvYHDjeKN","symbol":"⇍⊗","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a⇍⊗b = { (((b⊉≛↸b)⪇≇⋚(447⊉≛↸a))⊢(∂(b∊∟⩊b))) }","definition_type":"simple_definition","priority":14,"associativity_direction":"right","op_compute_func":"def op_5uvYHDjeKN(a, b):\n return op_5twsqlHp2o(op_3sJ7IOPOlU(op_DZ8iAZOCBD(b,b),op_DZ8iAZOCBD(447,a)),op_Uaa54Peajs(op_ddLRYrp01A(b,b)))\n","op_count_func":"def op_count_5uvYHDjeKN(a, b):\n count = op_count_DZ8iAZOCBD(b,b)+op_count_DZ8iAZOCBD(447,a)+op_count_3sJ7IOPOlU(op_DZ8iAZOCBD(b,b),op_DZ8iAZOCBD(447,a))+op_count_ddLRYrp01A(b,b)+op_count_Uaa54Peajs(op_ddLRYrp01A(b,b))+op_count_5twsqlHp2o(op_3sJ7IOPOlU(op_DZ8iAZOCBD(b,b),op_DZ8iAZOCBD(447,a)),op_Uaa54Peajs(op_ddLRYrp01A(b,b)))\n return count\n","dependencies":["Uaa54Peajs","DZ8iAZOCBD","ddLRYrp01A","3sJ7IOPOlU","5twsqlHp2o"]} +{"id":493,"func_id":"XIIwhv8d0m","symbol":"⫌⩉⩟","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a⫌⩉⩟b = { (((a↬179)⇮⋭(b⇡⇂b))⇉⇱⇎) }","definition_type":"simple_definition","priority":2,"associativity_direction":"right","op_compute_func":"def op_XIIwhv8d0m(a, b):\n return op_MRPaB8lBjK(op_vkpjKywKVM(op_B5M0gjZbta(a,179),op_UMwdvZNt44(b,b)))\n","op_count_func":"def op_count_XIIwhv8d0m(a, b):\n count = op_count_B5M0gjZbta(a,179)+op_count_UMwdvZNt44(b,b)+op_count_vkpjKywKVM(op_B5M0gjZbta(a,179),op_UMwdvZNt44(b,b))+op_count_MRPaB8lBjK(op_vkpjKywKVM(op_B5M0gjZbta(a,179),op_UMwdvZNt44(b,b)))\n return count\n","dependencies":["B5M0gjZbta","UMwdvZNt44","MRPaB8lBjK","vkpjKywKVM"]} +{"id":494,"func_id":"fFznvYxMfW","symbol":"↦","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a↦ = { (((a⊹∫⫚a)*177)⊹∫⫚((579⨰53)⪍↜⋙a)) , if a<72 ; ((⇁⨣⪵(a⫯⪬∳a))⫁⪎((a∘a)≹⇙⪍(a⇮⋭a))) , else }","definition_type":"branch_definition","priority":37,"associativity_direction":"left","op_compute_func":"def op_fFznvYxMfW(a):\n if a < 72:\n return op_uWAJUKEvyW(op_9HNa5Wba9A(op_uWAJUKEvyW(a,a),177),op_L05ObWFQCd(op_eewbuw0ToL(579,53),a))\n else:\n return op_xRrnTEsQ6j(op_inkyxCbjAn(op_d7ASUq0ydm(a,a)),op_AHs5Up7iyr(op_Z5m6OM72h2(a,a),op_vkpjKywKVM(a,a)))\n","op_count_func":"def op_count_fFznvYxMfW(a):\n if a < 72:\n count = op_count_uWAJUKEvyW(a,a)+op_count_9HNa5Wba9A(op_uWAJUKEvyW(a,a),177)+op_count_eewbuw0ToL(579,53)+op_count_L05ObWFQCd(op_eewbuw0ToL(579,53),a)+op_count_uWAJUKEvyW(op_9HNa5Wba9A(op_uWAJUKEvyW(a,a),177),op_L05ObWFQCd(op_eewbuw0ToL(579,53),a))\n else:\n count = op_count_d7ASUq0ydm(a,a)+op_count_inkyxCbjAn(op_d7ASUq0ydm(a,a))+op_count_Z5m6OM72h2(a,a)+op_count_vkpjKywKVM(a,a)+op_count_AHs5Up7iyr(op_Z5m6OM72h2(a,a),op_vkpjKywKVM(a,a))+op_count_xRrnTEsQ6j(op_inkyxCbjAn(op_d7ASUq0ydm(a,a)),op_AHs5Up7iyr(op_Z5m6OM72h2(a,a),op_vkpjKywKVM(a,a)))\n return count\n","dependencies":["L05ObWFQCd","d7ASUq0ydm","inkyxCbjAn","9HNa5Wba9A","AHs5Up7iyr","xRrnTEsQ6j","vkpjKywKVM","Z5m6OM72h2","eewbuw0ToL","uWAJUKEvyW"]} +{"id":495,"func_id":"XVKwrhznBb","symbol":"⨘⋶⪀","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⨘⋶⪀ = { ((326+⇶⊼a)⊱⇼⊻(a⇡)) }","definition_type":"simple_definition","priority":19,"associativity_direction":"left","op_compute_func":"def op_XVKwrhznBb(a):\n return op_FyVja0WsTP(op_TpPTUOHfaN(326,a),op_UqFzSgLMvQ(a))\n","op_count_func":"def op_count_XVKwrhznBb(a):\n count = op_count_TpPTUOHfaN(326,a)+op_count_UqFzSgLMvQ(a)+op_count_FyVja0WsTP(op_TpPTUOHfaN(326,a),op_UqFzSgLMvQ(a))\n return count\n","dependencies":["TpPTUOHfaN","FyVja0WsTP","UqFzSgLMvQ"]} +{"id":496,"func_id":"XAx5wpdLa6","symbol":"⪭≯","n_ary":2,"unary_position":null,"n_order":5,"is_base":null,"definition":"a⪭≯b = { (((b⨽∌374)⪔⊥(⋼∭⪍b))+⇶⊼((≋a)≓∲(↨⩢⫨a))) }","definition_type":"simple_definition","priority":8,"associativity_direction":"left","op_compute_func":"def op_XAx5wpdLa6(a, b):\n return op_TpPTUOHfaN(op_HJ9erzHUuu(op_9samAPKr6k(b,374),op_DbCuESL50I(b)),op_s1XTVnmDOJ(op_61wBmkZwlr(a),op_Z5CJsN7DuW(a)))\n","op_count_func":"def op_count_XAx5wpdLa6(a, b):\n count = op_count_9samAPKr6k(b,374)+op_count_DbCuESL50I(b)+op_count_HJ9erzHUuu(op_9samAPKr6k(b,374),op_DbCuESL50I(b))+op_count_61wBmkZwlr(a)+op_count_Z5CJsN7DuW(a)+op_count_s1XTVnmDOJ(op_61wBmkZwlr(a),op_Z5CJsN7DuW(a))+op_count_TpPTUOHfaN(op_HJ9erzHUuu(op_9samAPKr6k(b,374),op_DbCuESL50I(b)),op_s1XTVnmDOJ(op_61wBmkZwlr(a),op_Z5CJsN7DuW(a)))\n return count\n","dependencies":["9samAPKr6k","HJ9erzHUuu","TpPTUOHfaN","DbCuESL50I","s1XTVnmDOJ","61wBmkZwlr","Z5CJsN7DuW"]} +{"id":497,"func_id":"SUjycxNXIR","symbol":"⨦⪝","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"⨦⪝a = { (⫎≠⋺((a≳⇉a)⨎(⊵⊁a))) , if (a∙∹∝10)>301 ; ((⨣⨃⇪(a≭a))⊚⫡⫭) , else }","definition_type":"branch_definition","priority":26,"associativity_direction":"right","op_compute_func":"def op_SUjycxNXIR(a):\n if op_HmxsFra2vL(a,10) > 301:\n return op_LYeZOJ0nQG(op_rJVOvQCfKK(op_V0kx6qeWkN(a,a),op_AvED76WdY7(a)))\n else:\n return op_SpZWOsLKZJ(op_AcOhelriW5(op_rxpJgHHUmx(a,a)))\n","op_count_func":"def op_count_SUjycxNXIR(a):\n if op_HmxsFra2vL(a,10) > 301:\n count = op_count_V0kx6qeWkN(a,a)+op_count_AvED76WdY7(a)+op_count_rJVOvQCfKK(op_V0kx6qeWkN(a,a),op_AvED76WdY7(a))+op_count_LYeZOJ0nQG(op_rJVOvQCfKK(op_V0kx6qeWkN(a,a),op_AvED76WdY7(a)))+op_count_HmxsFra2vL(a,10)\n else:\n count = op_count_rxpJgHHUmx(a,a)+op_count_AcOhelriW5(op_rxpJgHHUmx(a,a))+op_count_SpZWOsLKZJ(op_AcOhelriW5(op_rxpJgHHUmx(a,a)))\n return count\n","dependencies":["V0kx6qeWkN","rJVOvQCfKK","rxpJgHHUmx","AcOhelriW5","SpZWOsLKZJ","LYeZOJ0nQG","HmxsFra2vL","AvED76WdY7"]} +{"id":498,"func_id":"QxG7OkqoLX","symbol":"⊽","n_ary":1,"unary_position":"prefix","n_order":5,"is_base":null,"definition":"⊽a = { (a⨸⪁761) , if (a↬⩅∪)<402 ; (a∧) , else }","definition_type":"branch_definition","priority":35,"associativity_direction":"right","op_compute_func":"def op_QxG7OkqoLX(a):\n if op_VJ330n2nnx(a) < 402:\n return op_g55IO6H4Gj(a,761)\n else:\n return op_z63VuFQld9(a)\n","op_count_func":"def op_count_QxG7OkqoLX(a):\n if op_VJ330n2nnx(a) < 402:\n count = op_count_g55IO6H4Gj(a,761)+op_count_VJ330n2nnx(a)\n else:\n count = op_count_z63VuFQld9(a)\n return count\n","dependencies":["g55IO6H4Gj","VJ330n2nnx","z63VuFQld9"]} +{"id":499,"func_id":"opAxDRczMr","symbol":"⋹","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⋹ = { ((⨴⫝a)⇷(a↤⩊a)) , if (a≃⋄)<20 or (⊢≑≆a)<=20 ; ((a⨰a)∧) , else }","definition_type":"branch_definition","priority":33,"associativity_direction":"left","op_compute_func":"def op_opAxDRczMr(a):\n if op_aN9a90urxU(a) < 20 or op_27wFxooxGf(a) <= 20:\n return op_mp7IySMOzn(op_SVb2v531z1(a),op_13rbtpv6ld(a,a))\n else:\n return op_z63VuFQld9(op_eewbuw0ToL(a,a))\n","op_count_func":"def op_count_opAxDRczMr(a):\n if op_aN9a90urxU(a) < 20 or op_27wFxooxGf(a) <= 20:\n count = op_count_SVb2v531z1(a)+op_count_13rbtpv6ld(a,a)+op_count_mp7IySMOzn(op_SVb2v531z1(a),op_13rbtpv6ld(a,a))+op_count_aN9a90urxU(a)+op_count_27wFxooxGf(a)\n else:\n count = op_count_eewbuw0ToL(a,a)+op_count_z63VuFQld9(op_eewbuw0ToL(a,a))\n return count\n","dependencies":["13rbtpv6ld","mp7IySMOzn","z63VuFQld9","aN9a90urxU","27wFxooxGf","SVb2v531z1","eewbuw0ToL"]} +{"id":500,"func_id":"XXmTpEpWTW","symbol":"⩘⨬⇊","n_ary":1,"unary_position":"postfix","n_order":5,"is_base":null,"definition":"a⩘⨬⇊ = { ((a⇴∐a)∌(a≭31)) }","definition_type":"simple_definition","priority":22,"associativity_direction":"left","op_compute_func":"def op_XXmTpEpWTW(a):\n return op_8cLx32lpNA(op_HnzytWxmAO(a,a),op_rxpJgHHUmx(a,31))\n","op_count_func":"def op_count_XXmTpEpWTW(a):\n count = op_count_HnzytWxmAO(a,a)+op_count_rxpJgHHUmx(a,31)+op_count_8cLx32lpNA(op_HnzytWxmAO(a,a),op_rxpJgHHUmx(a,31))\n return count\n","dependencies":["rxpJgHHUmx","HnzytWxmAO","8cLx32lpNA"]} +{"id":null,"func_id":"4ODlR07dGR","symbol":"≮⫘↔","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":2,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"OBoeoEwOM3","symbol":"⫏≰","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":3,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"RvI9EZk3Pm","symbol":"⪩⨒∯","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":4,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"Yl4JT0T9eW","symbol":"⇑⪆","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":5,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"MXf1OUP5ii","symbol":"↹⩛","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":6,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"dXloO0Kira","symbol":"≴∭⊉","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":7,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"4gIeDH8XbW","symbol":"⪪⊹⋣","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":8,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"ZJwk9SKawi","symbol":"⋋%⋟","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":9,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"QLSuuZT3eZ","symbol":"⊺⇮","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":10,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"ilQi3mCzPa","symbol":"⋰*⋻","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":11,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"bOONrRIZM9","symbol":"⫖↰⪸","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":12,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"KHmYSDo95h","symbol":"⪎⋱⫍","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":13,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"K3QD8kBpfL","symbol":"⨗⨭⨅","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":14,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"LxqDKtmm8G","symbol":"⫶⩼⫲","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":15,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null} +{"id":null,"func_id":"gNCSSZt20n","symbol":"∃⊬","n_ary":1,"unary_position":"prefix","n_order":null,"is_base":16,"definition":null,"definition_type":null,"priority":null,"associativity_direction":null,"op_compute_func":null,"op_count_func":null,"dependencies":null}