diff --git a/src/main/java/dk/camelot64/kickc/asm/AsmInstructionSet.java b/src/main/java/dk/camelot64/kickc/asm/AsmInstructionSet.java index 769b405b1..f6593fad6 100644 --- a/src/main/java/dk/camelot64/kickc/asm/AsmInstructionSet.java +++ b/src/main/java/dk/camelot64/kickc/asm/AsmInstructionSet.java @@ -306,7 +306,20 @@ public class AsmInstructionSet { for(AsmInstructionType instruction : instructions) { if(cas.contains(instruction.getMnemnonic())) { instruction.getClobber().setClobberA(true); + } else if(instruction.getOpcode()==0x0a) { + // Special handling of ASL A + instruction.getClobber().setClobberA(true); + } else if(instruction.getOpcode()==0x2a) { + // Special handling of ROL A + instruction.getClobber().setClobberA(true); + } else if(instruction.getOpcode()==0x4a) { + // Special handling of LSR A + instruction.getClobber().setClobberA(true); + } else if(instruction.getOpcode()==0x6a) { + // Special handling of ROR A + instruction.getClobber().setClobberA(true); } + } List ccs = Arrays.asList("adc", "sbc", "cmp", "cpx", "cpy", "asl", "rol", "lsr", "ror", "plp", "rti", "clc", "sec", "slo", "rla", "sre", "rra", "dcp", "isc", "anc", "alr", "arr", "axs"); for(AsmInstructionType instruction : instructions) { diff --git a/src/main/java/dk/camelot64/kickc/asm/AsmInstructionType.java b/src/main/java/dk/camelot64/kickc/asm/AsmInstructionType.java index 8ac0f23d1..7319151c7 100644 --- a/src/main/java/dk/camelot64/kickc/asm/AsmInstructionType.java +++ b/src/main/java/dk/camelot64/kickc/asm/AsmInstructionType.java @@ -39,6 +39,10 @@ public class AsmInstructionType { return addressingMode.getBytes(); } + public int getOpcode() { + return opcode; + } + public String getAsm(String parameter) { return addressingMode.getAsm(mnemnonic, parameter); } diff --git a/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=_sword_pbuc1_derefidx_vbuxx.asm b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=_sword_pbuc1_derefidx_vbuxx.asm new file mode 100644 index 000000000..e263041a1 --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=_sword_pbuc1_derefidx_vbuxx.asm @@ -0,0 +1,4 @@ +lda {c1},x +sta {z1} +lda #0 +sta {z1}+1 \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=_sword_pbuc1_derefidx_vbuyy.asm b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=_sword_pbuc1_derefidx_vbuyy.asm new file mode 100644 index 000000000..306757a50 --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=_sword_pbuc1_derefidx_vbuyy.asm @@ -0,0 +1,4 @@ +lda {c1},y +sta {z1} +lda #0 +sta {z1}+1 \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx.asm b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx.asm new file mode 100644 index 000000000..88c5ada70 --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx.asm @@ -0,0 +1,7 @@ +sec +lda {c1},x +sbc {c2},x +sta {z1} +lda {c1}+1,x +sbc {c2}+1,x +sta {z1}+1 diff --git a/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy.asm b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy.asm new file mode 100644 index 000000000..f0797cbe4 --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/fragment/asm/vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy.asm @@ -0,0 +1,7 @@ +sec +lda {c1},y +sbc {c2},y +sta {z1} +lda {c1}+1,y +sbc {c2}+1,y +sta {z1}+1 diff --git a/src/main/java/dk/camelot64/kickc/fragment/asm/vwuz1_gt_vwuz2_then_la1.asm b/src/main/java/dk/camelot64/kickc/fragment/asm/vwuz1_gt_vwuz2_then_la1.asm new file mode 100644 index 000000000..478d86873 --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/fragment/asm/vwuz1_gt_vwuz2_then_la1.asm @@ -0,0 +1,8 @@ +lda {z1} +cmp {z2} +lda {z1}+1 +sbc {z2}+1 +bvc !+ +eor #$80 +!: +bpl {la1} diff --git a/src/test/java/dk/camelot64/kickc/test/kc/division.kc b/src/test/java/dk/camelot64/kickc/test/kc/division.kc index 056e1e178..90a25362a 100644 --- a/src/test/java/dk/camelot64/kickc/test/kc/division.kc +++ b/src/test/java/dk/camelot64/kickc/test/kc/division.kc @@ -115,20 +115,22 @@ signed byte div8s(signed byte dividend, signed byte divisor) { // Remainder after signed 16 bit division signed word rem16s = 0; -// Perform division on two signed 16-bit numbers -// Returns dividend/divisor. -// The remainder will be set into the global variable rem16s. +// Perform division on two signed 16-bit numbers with an initial remainder. +// Returns dividend/divisor. The remainder will be set into the global variable rem16s. // Implemented using simple binary division // Follows the C99 standard by truncating toward zero on negative results. // See http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf section 6.5.5 -signed word div16s(signed word dividend, signed word divisor) { +signed word divr16s(signed word dividend, signed word divisor, signed word rem) { byte neg = 0; word dividendu = 0; - if(dividend<0) { + word remu = 0; + if(dividend<0 || rem<0) { dividendu = (word)-dividend; + remu = (word)-rem; neg = 1; } else { dividendu = (word)dividend; + remu = (word)rem; } word divisoru = 0; if(divisor<0) { @@ -137,7 +139,7 @@ signed word div16s(signed word dividend, signed word divisor) { } else { divisoru = (word)divisor; } - word resultu = div16u(dividendu, divisoru); + word resultu = divr16u(dividendu, divisoru, remu); if(neg==0) { rem16s = (signed word)rem16u; return (signed word)resultu; @@ -146,3 +148,13 @@ signed word div16s(signed word dividend, signed word divisor) { return -(signed word)resultu; } } + +// Perform division on two signed 16-bit numbers +// Returns dividend/divisor. +// The remainder will be set into the global variable rem16s. +// Implemented using simple binary division +// Follows the C99 standard by truncating toward zero on negative results. +// See http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf section 6.5.5 +signed word div16s(signed word dividend, signed word divisor) { + return divr16s(dividend, divisor, 0); +} diff --git a/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc b/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc index 7edfa1479..d553931c6 100644 --- a/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc +++ b/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc @@ -1,5 +1,6 @@ // Animated lines drawn on a single color bitmap import "c64.kc" +import "division.kc" byte* BITMAP = $a000; byte* SCREEN = $8800; @@ -44,15 +45,43 @@ void main() { bitmap_plot(x_start[i], y_start[i>>1]); } while(true) { + while(*RASTER!=$ff) {} (*BORDERCOL)++; } } // Initialize the points to be animated void point_init(byte point_idx) { + byte point_idx1 = point_idx>>1; + signed word x_diff = ((signed word)x_end[point_idx])-((signed word)x_start[point_idx]); + signed word y_diff = ((signed word)y_end[point_idx1])-((signed word)y_start[point_idx1]); + + if(abs16s(x_diff)>abs16s(y_diff)) { + // X is driver - abs(y/x) is < 1 + if(x_diff<0){ + // x add = -1.0 + x_add[point_idx] = -$10; + } else { + // x add = 1.0 + x_add[point_idx] = $10; + } + signed word x_stepf = divr16s(0, x_diff, y_diff); + y_add[point_idx1] = (signed byte)((>x_stepf)>>4); + } else { + // X is driver - abs(x/y) is < 1 + } x_cur[point_idx] = x_start[point_idx]<<4; - y_cur[point_idx] = ((word)y_start[point_idx>>1])<<4; - delay[point_idx>>1] = DELAY; + y_cur[point_idx] = ((word)y_start[point_idx1])<<4; + delay[point_idx1] = DELAY; +} + +// Return the absolute (unsigned) value of a word +inline word abs16s(signed word w) { + if(w<0) { + return (word) -w; + } else { + return (word) w; + } } // Fill the screen with a specific char @@ -104,6 +133,3 @@ void bitmap_plot(word x, byte y) { plotter += ( x & $fff8 ); *plotter |= bitmap_plot_bit[SCREEN)>>6 .const toD0181_return = (>(SCREEN&$3fff)<<2)|(>BITMAP)>>2&$f + .label i = 2 sei lda #PROCPORT_DDR_MEMORY_MASK sta PROCPORT_DDR @@ -36,32 +39,43 @@ main: { jsr bitmap_init jsr bitmap_clear jsr screen_fill - ldx #0 + lda #<0 + sta rem16s + sta rem16s+1 + sta rem16u + sta rem16u+1 + sta i b1: + ldx i jsr point_init - txa + lda i lsr + tax tay - lda x_start,x + lda x_start,y sta bitmap_plot.x - lda x_start+1,x + lda x_start+1,y sta bitmap_plot.x+1 - lda y_start,y + ldy y_start,x jsr bitmap_plot - inx - inx - cpx #8 + lda i + clc + adc #2 + sta i + cmp #8 bne b1 - b3: + b5: + lda RASTER + cmp #$ff + bne b5 inc BORDERCOL - jmp b3 + jmp b5 } bitmap_plot: { - .label _1 = 7 - .label x = 3 - .label plotter = 5 - .label _3 = 5 - tay + .label _1 = $b + .label x = 5 + .label plotter = 7 + .label _3 = 7 lda bitmap_plot_yhi,y sta _3+1 lda bitmap_plot_ylo,y @@ -88,49 +102,221 @@ bitmap_plot: { rts } point_init: { - .label _0 = 3 - .label _2 = 3 - .label _3 = 3 - lda x_start,x - sta _0 - lda x_start+1,x - sta _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - lda _0 - sta x_cur,x - lda _0+1 - sta x_cur+1,x + .label _4 = $d + .label _5 = 5 + .label y_diff = $d + .label abs16s1__2 = 5 + .label abs16s1_return = 5 + .label abs16s2__2 = 7 + .label abs16s2_return = 7 + .label x_diff = $b txa lsr tay - lda y_start,y - sta _2 + sec + lda x_end,x + sbc x_start,x + sta x_diff + lda x_end+1,x + sbc x_start+1,x + sta x_diff+1 + lda y_end,y + sta _4 lda #0 - sta _2+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - lda _3 - sta y_cur,x - lda _3+1 - sta y_cur+1,x - txa - lsr + sta _4+1 + lda y_start,y + sta _5 + lda #0 + sta _5+1 + lda y_diff + sec + sbc _5 + sta y_diff + lda y_diff+1 + sbc _5+1 + sta y_diff+1 + lda x_diff+1 + bmi abs16s1_b1 + lda x_diff + sta abs16s1_return + lda x_diff+1 + sta abs16s1_return+1 + abs16s2: + lda y_diff+1 + bmi abs16s2_b1 + lda y_diff + sta abs16s2_return + lda y_diff+1 + sta abs16s2_return+1 + b10: + lda abs16s1_return + cmp abs16s2_return + lda abs16s1_return+1 + sbc abs16s2_return+1 + bvc !+ + eor #$80 + !: + bpl b1 + breturn: + rts + b1: + lda x_diff+1 + bmi b3 + lda #$10 + sta x_add,x + b4: + lda y_diff + sta divr16s.rem + lda y_diff+1 + sta divr16s.rem+1 + jsr divr16s + jmp breturn + b3: + lda #-$10 + sta x_add,x + jmp b4 + abs16s2_b1: + sec + lda y_diff + eor #$ff + adc #0 + sta abs16s2__2 + lda y_diff+1 + eor #$ff + adc #0 + sta abs16s2__2+1 + jmp b10 + abs16s1_b1: + sec + lda x_diff + eor #$ff + adc #0 + sta abs16s1__2 + lda x_diff+1 + eor #$ff + adc #0 + sta abs16s1__2+1 + jmp abs16s2 +} +divr16s: { + .const dividend = 0 + .label _7 = 9 + .label _11 = $b + .label divisor = $b + .label rem = 9 + .label dividendu = 3 + .label divisoru = $b + .label remu = 9 + lda rem+1 + bmi b1 + lda #dividend + sta dividendu+1 + ldy #0 + b2: + lda divisor+1 + bmi b3 + b4: + jsr divr16u + cpy #0 + beq b19 + sec + lda divr16u.rem + eor #$ff + adc #0 + sta rem16s + lda divr16u.rem+1 + eor #$ff + adc #0 + sta rem16s+1 + breturn: + rts + b19: + lda divr16u.rem + sta rem16s + lda divr16u.rem+1 + sta rem16s+1 + jmp breturn + b3: + sec + lda _11 + eor #$ff + adc #0 + sta _11 + lda _11+1 + eor #$ff + adc #0 + sta _11+1 + tya + eor #1 tay - lda #DELAY - sta delay,y + jmp b4 + b1: + sec + lda _7 + eor #$ff + adc #0 + sta _7 + lda _7+1 + eor #$ff + adc #0 + sta _7+1 + lda #<-dividend + sta dividendu + lda #>-dividend + sta dividendu+1 + ldy #1 + jmp b2 +} +divr16u: { + .label rem = 9 + .label dividend = 3 + .label quotient = 5 + .label return = 5 + .label divisor = $b + ldx #0 + txa + sta quotient + sta quotient+1 + b1: + asl rem + rol rem+1 + lda dividend+1 + and #$80 + cmp #0 + beq b2 + lda #1 + ora rem + sta rem + b2: + asl dividend + rol dividend+1 + asl quotient + rol quotient+1 + lda rem+1 + cmp divisor+1 + bcc b3 + bne !+ + lda rem + cmp divisor + bcc b3 + !: + inc quotient + bne !+ + inc quotient+1 + !: + lda rem + sec + sbc divisor + sta rem + lda rem+1 + sbc divisor+1 + sta rem+1 + b3: + inx + cpx #$10 + bne b1 rts } screen_fill: { @@ -239,9 +425,9 @@ bitmap_init: { } x_start: .word $a, $14, $1e, $1e y_start: .byte $a, $a, $a, $14 - x_cur: .fill 8, 0 - y_cur: .fill 8, 0 - delay: .fill 4, 0 + x_end: .word $14, $a, $14, $14 + y_end: .byte $14, $14, $a, $14 + x_add: .fill 4, 0 bitmap_plot_ylo: .fill $100, 0 bitmap_plot_yhi: .fill $100, 0 bitmap_plot_bit: .fill $100, 0 diff --git a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.cfg b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.cfg index 46d640641..c7e0b9774 100644 --- a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.cfg +++ b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.cfg @@ -1,13 +1,13 @@ @begin: scope:[] from [0] phi() [ ] ( ) - to:@9 -@9: scope:[] from @begin + to:@18 +@18: scope:[] from @begin [1] phi() [ ] ( ) [2] call main [ ] ( ) to:@end -@end: scope:[] from @9 +@end: scope:[] from @18 [3] phi() [ ] ( ) -main: scope:[main] from @9 +main: scope:[main] from @18 asm { sei } [5] *((const byte*) PROCPORT_DDR#0) ← (const byte) PROCPORT_DDR_MEMORY_MASK#0 [ ] ( main:2 [ ] ) [6] *((const byte*) PROCPORT#0) ← (const byte) PROCPORT_RAM_IO#0 [ ] ( main:2 [ ] ) @@ -24,143 +24,273 @@ main::vicSelectGfxBank1_@1: scope:[main] from main::vicSelectGfxBank1_toDd001 to:main::toD0181 main::toD0181: scope:[main] from main::vicSelectGfxBank1_@1 [11] phi() [ ] ( main:2 [ ] ) - to:main::@10 -main::@10: scope:[main] from main::toD0181 + to:main::@16 +main::@16: scope:[main] from main::toD0181 [12] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) [13] call bitmap_init [ ] ( main:2 [ ] ) - to:main::@11 -main::@11: scope:[main] from main::@10 + to:main::@17 +main::@17: scope:[main] from main::@16 [14] phi() [ ] ( main:2 [ ] ) [15] call bitmap_clear [ ] ( main:2 [ ] ) - to:main::@12 -main::@12: scope:[main] from main::@11 + to:main::@18 +main::@18: scope:[main] from main::@17 [16] phi() [ ] ( main:2 [ ] ) [17] call screen_fill [ ] ( main:2 [ ] ) to:main::@1 -main::@1: scope:[main] from main::@12 main::@15 - [18] (byte) main::i#2 ← phi( main::@12/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@15/(byte) main::i#1 ) [ main::i#2 ] ( main:2 [ main::i#2 ] ) - [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 point_init::point_idx#0 ] ( main:2 [ main::i#2 point_init::point_idx#0 ] ) - [20] call point_init [ main::i#2 ] ( main:2 [ main::i#2 ] ) - to:main::@14 -main::@14: scope:[main] from main::@1 - [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 main::$9 ] ( main:2 [ main::i#2 main::$9 ] ) - [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 main::$9 bitmap_plot::x#0 ] ) - [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ) - [24] call bitmap_plot [ main::i#2 ] ( main:2 [ main::i#2 ] ) - to:main::@15 -main::@15: scope:[main] from main::@14 - [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 ] ( main:2 [ main::i#1 ] ) - [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 ] ( main:2 [ main::i#1 ] ) - to:main::@3 -main::@3: scope:[main] from main::@15 main::@3 - [27] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) - to:main::@3 -bitmap_plot: scope:[bitmap_plot] from main::@14 - [28] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 ] ) - [29] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) - [30] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) - [31] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) - [32] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) +main::@1: scope:[main] from main::@18 main::@21 + [18] (signed word) rem16s#15 ← phi( main::@18/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@21/(signed word) rem16s#13 ) [ main::i#2 rem16u#21 rem16s#15 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 ] ) + [18] (word) rem16u#21 ← phi( main::@18/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@21/(word) rem16u#18 ) [ main::i#2 rem16u#21 rem16s#15 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 ] ) + [18] (byte) main::i#2 ← phi( main::@18/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@21/(byte) main::i#1 ) [ main::i#2 rem16u#21 rem16s#15 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 ] ) + [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ) + [20] call point_init [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) + to:main::@20 +main::@20: scope:[main] from main::@1 + [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ) + [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ) + [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ) + [24] call bitmap_plot [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) + to:main::@21 +main::@21: scope:[main] from main::@20 + [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) + [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) + to:main::@5 +main::@5: scope:[main] from main::@21 main::@5 main::@7 + [27] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@5 [ ] ( main:2 [ ] ) + to:main::@7 +main::@7: scope:[main] from main::@5 + [28] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) + to:main::@5 +bitmap_plot: scope:[bitmap_plot] from main::@20 + [29] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 ] ) + [30] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) + [31] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) + [32] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) + [33] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) to:bitmap_plot::@return bitmap_plot::@return: scope:[bitmap_plot] from bitmap_plot - [33] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) + [34] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) to:@return point_init: scope:[point_init] from main::@1 - [34] (word~) point_init::$0 ← *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$0 ] ) - [35] *((const word[4]) x_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$0 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) - [36] (byte~) point_init::$1 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::point_idx#0 point_init::$1 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$1 ] ) - [37] (word~) point_init::$2 ← ((word)) *((const byte[4]) y_start#0 + (byte~) point_init::$1) [ point_init::point_idx#0 point_init::$2 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$2 ] ) - [38] (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$3 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$3 ] ) - [39] *((const word[4]) y_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$3 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) - [40] (byte~) point_init::$4 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::$4 ] ( main:2::point_init:20 [ main::i#2 point_init::$4 ] ) - [41] *((const byte[4]) delay#0 + (byte~) point_init::$4) ← (const byte) DELAY#0 [ ] ( main:2::point_init:20 [ main::i#2 ] ) + [35] (byte) point_init::point_idx1#0 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ) + [36] (signed word) point_init::x_diff#1 ← (signed word)*((const word[4]) x_end#0 + (byte) point_init::point_idx#0) - (signed word)*((const word[4]) x_start#0 + (byte) point_init::point_idx#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ) + [37] (signed word~) point_init::$4 ← ((signed word)) *((const byte[4]) y_end#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ) + [38] (signed word~) point_init::$5 ← ((signed word)) *((const byte[4]) y_start#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ) + [39] (signed word) point_init::y_diff#0 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::abs16s1 +point_init::abs16s1: scope:[point_init] from point_init + [40] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@12 +point_init::@12: scope:[point_init] from point_init::abs16s1 + [41] (word~) point_init::abs16s1_return#6 ← (word)(signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ) + to:point_init::abs16s1_@return +point_init::abs16s1_@return: scope:[point_init] from point_init::@12 point_init::abs16s1_@1 + [42] (word) point_init::abs16s1_return#2 ← phi( point_init::abs16s1_@1/(word~) point_init::abs16s1_return#5 point_init::@12/(word~) point_init::abs16s1_return#6 ) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) + to:point_init::abs16s2 +point_init::abs16s2: scope:[point_init] from point_init::abs16s1_@return + [43] if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) + to:point_init::@13 +point_init::@13: scope:[point_init] from point_init::abs16s2 + [44] (word~) point_init::abs16s2_return#6 ← (word)(signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ) + to:point_init::abs16s2_@return +point_init::abs16s2_@return: scope:[point_init] from point_init::@13 point_init::abs16s2_@1 + [45] (word) point_init::abs16s2_return#2 ← phi( point_init::abs16s2_@1/(word~) point_init::abs16s2_return#5 point_init::@13/(word~) point_init::abs16s2_return#6 ) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#2 ] ) + to:point_init::@10 +point_init::@10: scope:[point_init] from point_init::abs16s2_@return + [46] if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) to:point_init::@return -point_init::@return: scope:[point_init] from point_init - [42] return [ ] ( main:2::point_init:20 [ main::i#2 ] ) +point_init::@return: scope:[point_init] from point_init::@10 point_init::@4 + [47] (signed word) rem16s#13 ← phi( point_init::@10/(signed word) rem16s#15 point_init::@4/(signed word) rem16s#3 ) [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) + [47] (word) rem16u#18 ← phi( point_init::@10/(word) rem16u#21 point_init::@4/(word) divr16u::rem#10 ) [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) + [48] return [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) to:@return -screen_fill: scope:[screen_fill] from main::@12 - [43] phi() [ ] ( main:2::screen_fill:17 [ ] ) +point_init::@1: scope:[point_init] from point_init point_init::@10 + [49] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 [ point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@7 +point_init::@7: scope:[point_init] from point_init::@1 + [50] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← (byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@4 +point_init::@4: scope:[point_init] from point_init::@3 point_init::@7 + [51] (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#1 [ point_init::y_diff#0 divr16s::divisor#0 ] ( main:2::point_init:20 [ main::i#2 point_init::y_diff#0 divr16s::divisor#0 ] ) + [52] (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#0 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) + [53] call divr16s [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + to:point_init::@return +point_init::@3: scope:[point_init] from point_init::@1 + [54] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← -(byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@4 +point_init::abs16s2_@1: scope:[point_init] from point_init::abs16s2 + [55] (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ) + [56] (word~) point_init::abs16s2_return#5 ← (word)(signed word) point_init::abs16s2_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ) + to:point_init::abs16s2_@return +point_init::abs16s1_@1: scope:[point_init] from point_init::abs16s1 + [57] (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ) + [58] (word~) point_init::abs16s1_return#5 ← (word)(signed word) point_init::abs16s1_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ) + to:point_init::abs16s1_@return +divr16s: scope:[divr16s] from point_init::@4 + [59] phi() [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) + to:divr16s::@16 +divr16s::@16: scope:[divr16s] from divr16s + [60] if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) + to:divr16s::@17 +divr16s::@17: scope:[divr16s] from divr16s::@16 + [61] (word~) divr16s::remu#8 ← (word)(signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::remu#8 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#8 ] ) + to:divr16s::@2 +divr16s::@2: scope:[divr16s] from divr16s::@1 divr16s::@17 + [62] (word) divr16s::remu#3 ← phi( divr16s::@1/(word~) divr16s::remu#7 divr16s::@17/(word~) divr16s::remu#8 ) [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + [62] (word) divr16s::dividendu#3 ← phi( divr16s::@1/((word))-(const signed word) divr16s::dividend#0 divr16s::@17/((word))(const signed word) divr16s::dividend#0 ) [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + [62] (byte) divr16s::neg#3 ← phi( divr16s::@1/(byte/signed byte/word/signed word/dword/signed dword) 1 divr16s::@17/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + [63] if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + to:divr16s::@18 +divr16s::@18: scope:[divr16s] from divr16s::@2 + [64] (word~) divr16s::divisoru#5 ← (word)(signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ) + to:divr16s::@4 +divr16s::@4: scope:[divr16s] from divr16s::@18 divr16s::@3 + [65] (byte) divr16s::neg#4 ← phi( divr16s::@3/(byte) divr16s::neg#2 divr16s::@18/(byte) divr16s::neg#3 ) [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ) + [65] (word) divr16s::divisoru#3 ← phi( divr16s::@3/(word~) divr16s::divisoru#4 divr16s::@18/(word~) divr16s::divisoru#5 ) [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ) + [66] (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 [ divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ) + [67] (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 [ divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ) + [68] (word) divr16u::rem#3 ← (word) divr16s::remu#3 [ divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) + [69] call divr16u [ divr16u::rem#10 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 divr16s::neg#4 ] ) + to:divr16s::@15 +divr16s::@15: scope:[divr16s] from divr16s::@4 + [70] if((byte) divr16s::neg#4==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@19 [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 ] ) + to:divr16s::@11 +divr16s::@11: scope:[divr16s] from divr16s::@15 + [71] (signed word) rem16s#2 ← - (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#2 ] ) + to:divr16s::@return +divr16s::@return: scope:[divr16s] from divr16s::@11 divr16s::@19 + [72] (signed word) rem16s#3 ← phi( divr16s::@11/(signed word) rem16s#2 divr16s::@19/(signed word~) rem16s#56 ) [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + [73] return [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + to:@return +divr16s::@19: scope:[divr16s] from divr16s::@15 + [74] (signed word~) rem16s#56 ← (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#56 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#56 ] ) + to:divr16s::@return +divr16s::@3: scope:[divr16s] from divr16s::@2 + [75] (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ) + [76] (byte) divr16s::neg#2 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ) + [77] (word~) divr16s::divisoru#4 ← (word)(signed word~) divr16s::$11 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ) + to:divr16s::@4 +divr16s::@1: scope:[divr16s] from divr16s::@16 + [78] (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::$7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::$7 ] ) + [79] (word~) divr16s::remu#7 ← (word)(signed word~) divr16s::$7 [ divr16s::divisor#0 divr16s::remu#7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#7 ] ) + to:divr16s::@2 +divr16u: scope:[divr16u] from divr16s::@4 + [80] phi() [ divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) + to:divr16u::@1 +divr16u::@1: scope:[divr16u] from divr16u divr16u::@3 + [81] (byte) divr16u::i#2 ← phi( divr16u/(byte/signed byte/word/signed word/dword/signed dword) 0 divr16u::@3/(byte) divr16u::i#1 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [81] (word) divr16u::quotient#3 ← phi( divr16u/(byte/signed byte/word/signed word/dword/signed dword) 0 divr16u::@3/(word) divr16u::return#0 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [81] (word) divr16u::dividend#2 ← phi( divr16u/(word) divr16u::dividend#1 divr16u::@3/(word) divr16u::dividend#0 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [81] (word) divr16u::rem#4 ← phi( divr16u/(word) divr16u::rem#3 divr16u::@3/(word) divr16u::rem#10 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [82] (word) divr16u::rem#0 ← (word) divr16u::rem#4 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) + [83] (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ) + [84] (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ) + [85] if((byte~) divr16u::$2==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16u::@2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) + to:divr16u::@4 +divr16u::@4: scope:[divr16u] from divr16u::@1 + [86] (word) divr16u::rem#1 ← (word) divr16u::rem#0 | (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ) + to:divr16u::@2 +divr16u::@2: scope:[divr16u] from divr16u::@1 divr16u::@4 + [87] (word) divr16u::rem#5 ← phi( divr16u::@1/(word) divr16u::rem#0 divr16u::@4/(word) divr16u::rem#1 ) [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#5 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#5 ] ) + [88] (word) divr16u::dividend#0 ← (word) divr16u::dividend#2 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ) + [89] (word) divr16u::quotient#1 ← (word) divr16u::quotient#3 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) + [90] if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) + to:divr16u::@5 +divr16u::@5: scope:[divr16u] from divr16u::@2 + [91] (word) divr16u::quotient#2 ← ++ (word) divr16u::quotient#1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ) + [92] (word) divr16u::rem#2 ← (word) divr16u::rem#5 - (word) divr16u::divisor#0 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ) + to:divr16u::@3 +divr16u::@3: scope:[divr16u] from divr16u::@2 divr16u::@5 + [93] (word) divr16u::return#0 ← phi( divr16u::@2/(word) divr16u::quotient#1 divr16u::@5/(word) divr16u::quotient#2 ) [ divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ) + [93] (word) divr16u::rem#10 ← phi( divr16u::@2/(word) divr16u::rem#5 divr16u::@5/(word) divr16u::rem#2 ) [ divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ) + [94] (byte) divr16u::i#1 ← ++ (byte) divr16u::i#2 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) + [95] if((byte) divr16u::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 16) goto divr16u::@1 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) + to:divr16u::@return +divr16u::@return: scope:[divr16u] from divr16u::@3 + [96] return [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 ] ) + to:@return +screen_fill: scope:[screen_fill] from main::@18 + [97] phi() [ ] ( main:2::screen_fill:17 [ ] ) to:screen_fill::@1 screen_fill::@1: scope:[screen_fill] from screen_fill screen_fill::@3 - [44] (byte) screen_fill::y#4 ← phi( screen_fill/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@3/(byte) screen_fill::y#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) - [44] (byte*) screen_fill::screen#3 ← phi( screen_fill/(const byte*) SCREEN#0 screen_fill::@3/(byte*) screen_fill::screen#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) + [98] (byte) screen_fill::y#4 ← phi( screen_fill/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@3/(byte) screen_fill::y#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) + [98] (byte*) screen_fill::screen#3 ← phi( screen_fill/(const byte*) SCREEN#0 screen_fill::@3/(byte*) screen_fill::screen#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) to:screen_fill::@2 screen_fill::@2: scope:[screen_fill] from screen_fill::@1 screen_fill::@2 - [45] (byte) screen_fill::x#2 ← phi( screen_fill::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@2/(byte) screen_fill::x#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) - [45] (byte*) screen_fill::screen#2 ← phi( screen_fill::@1/(byte*) screen_fill::screen#3 screen_fill::@2/(byte*) screen_fill::screen#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) - [46] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) - [47] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) - [48] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) - [49] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) + [99] (byte) screen_fill::x#2 ← phi( screen_fill::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@2/(byte) screen_fill::x#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) + [99] (byte*) screen_fill::screen#2 ← phi( screen_fill::@1/(byte*) screen_fill::screen#3 screen_fill::@2/(byte*) screen_fill::screen#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) + [100] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) + [101] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) + [102] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) + [103] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) to:screen_fill::@3 screen_fill::@3: scope:[screen_fill] from screen_fill::@2 - [50] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) - [51] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) + [104] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) + [105] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) to:screen_fill::@return screen_fill::@return: scope:[screen_fill] from screen_fill::@3 - [52] return [ ] ( main:2::screen_fill:17 [ ] ) + [106] return [ ] ( main:2::screen_fill:17 [ ] ) to:@return -bitmap_clear: scope:[bitmap_clear] from main::@11 - [53] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) - [54] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) +bitmap_clear: scope:[bitmap_clear] from main::@17 + [107] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) + [108] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) to:bitmap_clear::@1 bitmap_clear::@1: scope:[bitmap_clear] from bitmap_clear bitmap_clear::@3 - [55] (byte) bitmap_clear::y#4 ← phi( bitmap_clear/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@3/(byte) bitmap_clear::y#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) - [55] (byte*) bitmap_clear::bitmap#3 ← phi( bitmap_clear/(byte*~) bitmap_clear::bitmap#5 bitmap_clear::@3/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) + [109] (byte) bitmap_clear::y#4 ← phi( bitmap_clear/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@3/(byte) bitmap_clear::y#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) + [109] (byte*) bitmap_clear::bitmap#3 ← phi( bitmap_clear/(byte*~) bitmap_clear::bitmap#5 bitmap_clear::@3/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) to:bitmap_clear::@2 bitmap_clear::@2: scope:[bitmap_clear] from bitmap_clear::@1 bitmap_clear::@2 - [56] (byte) bitmap_clear::x#2 ← phi( bitmap_clear::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@2/(byte) bitmap_clear::x#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) - [56] (byte*) bitmap_clear::bitmap#2 ← phi( bitmap_clear::@1/(byte*) bitmap_clear::bitmap#3 bitmap_clear::@2/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) - [57] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) - [58] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) - [59] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) - [60] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) + [110] (byte) bitmap_clear::x#2 ← phi( bitmap_clear::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@2/(byte) bitmap_clear::x#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) + [110] (byte*) bitmap_clear::bitmap#2 ← phi( bitmap_clear::@1/(byte*) bitmap_clear::bitmap#3 bitmap_clear::@2/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) + [111] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) + [112] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) + [113] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) + [114] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) to:bitmap_clear::@3 bitmap_clear::@3: scope:[bitmap_clear] from bitmap_clear::@2 - [61] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) - [62] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) + [115] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) + [116] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) to:bitmap_clear::@return bitmap_clear::@return: scope:[bitmap_clear] from bitmap_clear::@3 - [63] return [ ] ( main:2::bitmap_clear:15 [ ] ) + [117] return [ ] ( main:2::bitmap_clear:15 [ ] ) to:@return -bitmap_init: scope:[bitmap_init] from main::@10 - [64] phi() [ ] ( main:2::bitmap_init:13 [ ] ) +bitmap_init: scope:[bitmap_init] from main::@16 + [118] phi() [ ] ( main:2::bitmap_init:13 [ ] ) to:bitmap_init::@1 bitmap_init::@1: scope:[bitmap_init] from bitmap_init bitmap_init::@2 - [65] (byte) bitmap_init::x#2 ← phi( bitmap_init/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_init::@2/(byte) bitmap_init::x#1 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) - [65] (byte) bitmap_init::bits#3 ← phi( bitmap_init/(byte/word/signed word/dword/signed dword) 128 bitmap_init::@2/(byte) bitmap_init::bits#4 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) - [66] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) - [67] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) - [68] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) + [119] (byte) bitmap_init::x#2 ← phi( bitmap_init/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_init::@2/(byte) bitmap_init::x#1 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) + [119] (byte) bitmap_init::bits#3 ← phi( bitmap_init/(byte/word/signed word/dword/signed dword) 128 bitmap_init::@2/(byte) bitmap_init::bits#4 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) + [120] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) + [121] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) + [122] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) to:bitmap_init::@2 bitmap_init::@2: scope:[bitmap_init] from bitmap_init::@1 bitmap_init::@10 - [69] (byte) bitmap_init::bits#4 ← phi( bitmap_init::@10/(byte) bitmap_init::bits#1 bitmap_init::@1/(byte/word/signed word/dword/signed dword) 128 ) [ bitmap_init::x#2 bitmap_init::bits#4 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#4 ] ) - [70] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) - [71] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) + [123] (byte) bitmap_init::bits#4 ← phi( bitmap_init::@10/(byte) bitmap_init::bits#1 bitmap_init::@1/(byte/word/signed word/dword/signed dword) 128 ) [ bitmap_init::x#2 bitmap_init::bits#4 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#4 ] ) + [124] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) + [125] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) to:bitmap_init::@3 bitmap_init::@3: scope:[bitmap_init] from bitmap_init::@2 bitmap_init::@4 - [72] (byte*) bitmap_init::yoffs#2 ← phi( bitmap_init::@4/(byte*) bitmap_init::yoffs#4 bitmap_init::@2/(const byte*) BITMAP#0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [72] (byte) bitmap_init::y#2 ← phi( bitmap_init::@4/(byte) bitmap_init::y#1 bitmap_init::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [73] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) - [74] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) - [75] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) - [76] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [77] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) - [78] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [79] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) - [80] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [126] (byte*) bitmap_init::yoffs#2 ← phi( bitmap_init::@4/(byte*) bitmap_init::yoffs#4 bitmap_init::@2/(const byte*) BITMAP#0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [126] (byte) bitmap_init::y#2 ← phi( bitmap_init::@4/(byte) bitmap_init::y#1 bitmap_init::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [127] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) + [128] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) + [129] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) + [130] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [131] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) + [132] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [133] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) + [134] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) to:bitmap_init::@7 bitmap_init::@7: scope:[bitmap_init] from bitmap_init::@3 - [81] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) + [135] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) to:bitmap_init::@4 bitmap_init::@4: scope:[bitmap_init] from bitmap_init::@3 bitmap_init::@7 - [82] (byte*) bitmap_init::yoffs#4 ← phi( bitmap_init::@3/(byte*) bitmap_init::yoffs#2 bitmap_init::@7/(byte*) bitmap_init::yoffs#1 ) [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ) - [83] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) - [84] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) + [136] (byte*) bitmap_init::yoffs#4 ← phi( bitmap_init::@3/(byte*) bitmap_init::yoffs#2 bitmap_init::@7/(byte*) bitmap_init::yoffs#1 ) [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ) + [137] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) + [138] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) to:bitmap_init::@return bitmap_init::@return: scope:[bitmap_init] from bitmap_init::@4 - [85] return [ ] ( main:2::bitmap_init:13 [ ] ) + [139] return [ ] ( main:2::bitmap_init:13 [ ] ) to:@return bitmap_init::@10: scope:[bitmap_init] from bitmap_init::@1 - [86] phi() [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) + [140] phi() [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) to:bitmap_init::@2 diff --git a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log index 7e60b9942..bc34fc13a 100644 --- a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log +++ b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log @@ -1,6 +1,7 @@ PARSING src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc // Animated lines drawn on a single color bitmap import "c64.kc" +import "division.kc" byte* BITMAP = $a000; byte* SCREEN = $8800; @@ -45,15 +46,43 @@ void main() { bitmap_plot(x_start[i], y_start[i>>1]); } while(true) { + while(*RASTER!=$ff) {} (*BORDERCOL)++; } } // Initialize the points to be animated void point_init(byte point_idx) { - x_cur[point_idx] = x_start[point_idx]<<4; - y_cur[point_idx] = ((word)y_start[point_idx>>1])<<4; - delay[point_idx>>1] = DELAY; + byte point_idx1 = point_idx>>1; + signed word x_diff = ((signed word)x_end[point_idx])-((signed word)x_start[point_idx]); + signed word y_diff = ((signed word)y_end[point_idx1])-((signed word)y_start[point_idx1]); + + if(abs16s(x_diff)>abs16s(y_diff)) { + // X is driver - abs(y/x) is < 1 + if(x_diff<0){ + // x add = -1.0 + x_add[point_idx] = -$10; + } else { + // x add = 1.0 + x_add[point_idx] = $10; + } + signed word x_stepf = divr16s(0, x_diff, y_diff); + //y_add[point_idx1] = (signed byte)((>x_stepf)>>4); + } else { + // X is driver - abs(x/y) is < 1 + } + //x_cur[point_idx] = x_start[point_idx]<<4; + //y_cur[point_idx] = ((word)y_start[point_idx1])<<4; + //delay[point_idx1] = DELAY; +} + +// Return the absolute (unsigned) value of a word +inline word abs16s(signed word w) { + if(w<0) { + return (word) -w; + } else { + return (word) w; + } } // Fill the screen with a specific char @@ -106,9 +135,6 @@ void bitmap_plot(word x, byte y) { *plotter |= bitmap_plot_bit[=divisor) { + quotient++; + rem = rem - divisor; + } + } + rem8u = rem; + return quotient; +} + +// Remainder after unsigned 16-bit division +word rem16u = 0; + +// Performs division on two 16 bit unsigned words and an initial remainder +// Returns the quotient dividend/divisor. +// The final remainder will be set into the global variable rem16u +// Implemented using simple binary division +word divr16u(word dividend, word divisor, word rem) { + word quotient = 0; + for( byte i : 0..15) { + rem = rem << 1; + if( (>dividend & $80) != 0 ) { + rem = rem | 1; + } + dividend = dividend << 1; + quotient = quotient << 1; + if(rem>=divisor) { + quotient++; + rem = rem - divisor; + } + } + rem16u = rem; + return quotient; +} + +// Performs division on two 16 bit unsigned words +// Returns the quotient dividend/divisor. +// The remainder will be set into the global variable rem16u +// Implemented using simple binary division +word div16u(word dividend, word divisor) { + return divr16u(dividend, divisor, 0); +} + +// Divide unsigned 32-bit dword dividend with a 16-bit word divisor +// The 16-bit word remainder can be found in rem16u after the division +dword div32u16u(dword dividend, word divisor) { + word quotient_hi = divr16u(>dividend, divisor, 0); + word quotient_lo = divr16u(= (byte) divr8u::divisor + (bool~) divr8u::$8 ← ! (bool~) divr8u::$7 + if((bool~) divr8u::$8) goto divr8u::@3 + to:divr8u::@5 +divr8u::@4: scope:[divr8u] from divr8u::@1 + (byte/word/dword~) divr8u::$4 ← (byte) divr8u::rem | (byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) divr8u::rem ← (byte/word/dword~) divr8u::$4 + to:divr8u::@2 +divr8u::@3: scope:[divr8u] from divr8u::@2 divr8u::@5 + (byte) divr8u::i ← ++ (byte) divr8u::i + (bool~) divr8u::$10 ← (byte) divr8u::i != (byte/signed byte/word/signed word/dword/signed dword) 8 + if((bool~) divr8u::$10) goto divr8u::@1 + to:divr8u::@6 +divr8u::@5: scope:[divr8u] from divr8u::@2 + (byte) divr8u::quotient ← ++ (byte) divr8u::quotient + (byte~) divr8u::$9 ← (byte) divr8u::rem - (byte) divr8u::divisor + (byte) divr8u::rem ← (byte~) divr8u::$9 + to:divr8u::@3 +divr8u::@6: scope:[divr8u] from divr8u::@3 + (byte) rem8u ← (byte) divr8u::rem + (byte) divr8u::return ← (byte) divr8u::quotient + to:divr8u::@return +divr8u::@return: scope:[divr8u] from divr8u::@6 divr8u::@7 + (byte) divr8u::return ← (byte) divr8u::return + return (byte) divr8u::return + to:@return +divr8u::@7: scope:[divr8u] from + to:divr8u::@return +@5: scope:[] from @4 + (word) rem16u ← (byte/signed byte/word/signed word/dword/signed dword) 0 + to:@6 +divr16u: scope:[divr16u] from + (word) divr16u::quotient ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (byte) divr16u::i ← (byte/signed byte/word/signed word/dword/signed dword) 0 + to:divr16u::@1 +divr16u::@1: scope:[divr16u] from divr16u divr16u::@3 + (word~) divr16u::$0 ← (word) divr16u::rem << (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::rem ← (word~) divr16u::$0 + (byte~) divr16u::$1 ← > (word) divr16u::dividend + (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 + (bool~) divr16u::$3 ← (byte~) divr16u::$2 != (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16u::$4 ← ! (bool~) divr16u::$3 + if((bool~) divr16u::$4) goto divr16u::@2 + to:divr16u::@4 +divr16u::@2: scope:[divr16u] from divr16u::@1 divr16u::@4 + (word~) divr16u::$6 ← (word) divr16u::dividend << (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::dividend ← (word~) divr16u::$6 + (word~) divr16u::$7 ← (word) divr16u::quotient << (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::quotient ← (word~) divr16u::$7 + (bool~) divr16u::$8 ← (word) divr16u::rem >= (word) divr16u::divisor + (bool~) divr16u::$9 ← ! (bool~) divr16u::$8 + if((bool~) divr16u::$9) goto divr16u::@3 + to:divr16u::@5 +divr16u::@4: scope:[divr16u] from divr16u::@1 + (word/dword~) divr16u::$5 ← (word) divr16u::rem | (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::rem ← (word/dword~) divr16u::$5 + to:divr16u::@2 +divr16u::@3: scope:[divr16u] from divr16u::@2 divr16u::@5 + (byte) divr16u::i ← ++ (byte) divr16u::i + (bool~) divr16u::$11 ← (byte) divr16u::i != (byte/signed byte/word/signed word/dword/signed dword) 16 + if((bool~) divr16u::$11) goto divr16u::@1 + to:divr16u::@6 +divr16u::@5: scope:[divr16u] from divr16u::@2 + (word) divr16u::quotient ← ++ (word) divr16u::quotient + (word~) divr16u::$10 ← (word) divr16u::rem - (word) divr16u::divisor + (word) divr16u::rem ← (word~) divr16u::$10 + to:divr16u::@3 +divr16u::@6: scope:[divr16u] from divr16u::@3 + (word) rem16u ← (word) divr16u::rem + (word) divr16u::return ← (word) divr16u::quotient + to:divr16u::@return +divr16u::@return: scope:[divr16u] from divr16u::@6 divr16u::@7 + (word) divr16u::return ← (word) divr16u::return + return (word) divr16u::return + to:@return +divr16u::@7: scope:[divr16u] from + to:divr16u::@return +@6: scope:[] from @5 + to:@7 +div16u: scope:[div16u] from + (word~) div16u::$0 ← call divr16u (word) div16u::dividend (word) div16u::divisor (byte/signed byte/word/signed word/dword/signed dword) 0 + (word) div16u::return ← (word~) div16u::$0 + to:div16u::@return +div16u::@return: scope:[div16u] from div16u div16u::@1 + (word) div16u::return ← (word) div16u::return + return (word) div16u::return + to:@return +div16u::@1: scope:[div16u] from + to:div16u::@return +@7: scope:[] from @6 + to:@8 +div32u16u: scope:[div32u16u] from + (word~) div32u16u::$0 ← > (dword) div32u16u::dividend + (word~) div32u16u::$1 ← call divr16u (word~) div32u16u::$0 (word) div32u16u::divisor (byte/signed byte/word/signed word/dword/signed dword) 0 + (word) div32u16u::quotient_hi ← (word~) div32u16u::$1 + (word~) div32u16u::$2 ← < (dword) div32u16u::dividend + (word~) div32u16u::$3 ← call divr16u (word~) div32u16u::$2 (word) div32u16u::divisor (word) rem16u + (word) div32u16u::quotient_lo ← (word~) div32u16u::$3 + (dword) div32u16u::quotient ← { (word) div32u16u::quotient_hi, (word) div32u16u::quotient_lo } + (dword) div32u16u::return ← (dword) div32u16u::quotient + to:div32u16u::@return +div32u16u::@return: scope:[div32u16u] from div32u16u div32u16u::@1 + (dword) div32u16u::return ← (dword) div32u16u::return + return (dword) div32u16u::return + to:@return +div32u16u::@1: scope:[div32u16u] from + to:div32u16u::@return +@8: scope:[] from @7 + (signed byte) rem8s ← (byte/signed byte/word/signed word/dword/signed dword) 0 + to:@9 +div8s: scope:[div8s] from + (byte) div8s::neg ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (byte) div8s::dividendu ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) div8s::$0 ← (signed byte) div8s::dividend < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) div8s::$0) goto div8s::@1 + to:div8s::@7 +div8s::@1: scope:[div8s] from div8s div8s::@8 + (signed byte~) div8s::$2 ← - (signed byte) div8s::dividend + (byte~) div8s::$3 ← ((byte)) (signed byte~) div8s::$2 + (byte) div8s::dividendu ← (byte~) div8s::$3 + (byte) div8s::neg ← (byte/signed byte/word/signed word/dword/signed dword) 1 + to:div8s::@2 +div8s::@7: scope:[div8s] from div8s + (byte~) div8s::$1 ← ((byte)) (signed byte) div8s::dividend + (byte) div8s::dividendu ← (byte~) div8s::$1 + to:div8s::@2 +div8s::@2: scope:[div8s] from div8s::@1 div8s::@7 + (byte) div8s::divisoru ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) div8s::$4 ← (signed byte) div8s::divisor < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) div8s::$4) goto div8s::@3 + to:div8s::@9 +div8s::@8: scope:[div8s] from + to:div8s::@1 +div8s::@3: scope:[div8s] from div8s::@10 div8s::@2 + (signed byte~) div8s::$6 ← - (signed byte) div8s::divisor + (byte~) div8s::$7 ← ((byte)) (signed byte~) div8s::$6 + (byte) div8s::divisoru ← (byte~) div8s::$7 + (byte/word/dword~) div8s::$8 ← (byte) div8s::neg ^ (byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) div8s::neg ← (byte/word/dword~) div8s::$8 + to:div8s::@4 +div8s::@9: scope:[div8s] from div8s::@2 + (byte~) div8s::$5 ← ((byte)) (signed byte) div8s::divisor + (byte) div8s::divisoru ← (byte~) div8s::$5 + to:div8s::@4 +div8s::@4: scope:[div8s] from div8s::@3 div8s::@9 + (byte~) div8s::$9 ← call div8u (byte) div8s::dividendu (byte) div8s::divisoru + (byte) div8s::resultu ← (byte~) div8s::$9 + (bool~) div8s::$10 ← (byte) div8s::neg == (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) div8s::$10) goto div8s::@5 + to:div8s::@11 +div8s::@10: scope:[div8s] from + to:div8s::@3 +div8s::@5: scope:[div8s] from div8s::@13 div8s::@4 + (signed byte~) div8s::$15 ← ((signed byte)) (byte) rem8u + (signed byte) rem8s ← (signed byte~) div8s::$15 + (signed byte~) div8s::$16 ← ((signed byte)) (byte) div8s::resultu + (signed byte) div8s::return ← (signed byte~) div8s::$16 + to:div8s::@return +div8s::@11: scope:[div8s] from div8s::@4 + (signed byte~) div8s::$11 ← ((signed byte)) (byte) rem8u + (signed byte~) div8s::$12 ← - (signed byte~) div8s::$11 + (signed byte) rem8s ← (signed byte~) div8s::$12 + (signed byte~) div8s::$13 ← ((signed byte)) (byte) div8s::resultu + (signed byte~) div8s::$14 ← - (signed byte~) div8s::$13 + (signed byte) div8s::return ← (signed byte~) div8s::$14 + to:div8s::@return +div8s::@return: scope:[div8s] from div8s::@11 div8s::@5 div8s::@6 + (signed byte) div8s::return ← (signed byte) div8s::return + return (signed byte) div8s::return + to:@return +div8s::@12: scope:[div8s] from + to:div8s::@6 +div8s::@6: scope:[div8s] from div8s::@12 div8s::@14 + to:div8s::@return +div8s::@13: scope:[div8s] from + to:div8s::@5 +div8s::@14: scope:[div8s] from + to:div8s::@6 +@9: scope:[] from @8 + (signed word) rem16s ← (byte/signed byte/word/signed word/dword/signed dword) 0 + to:@10 +divr16s: scope:[divr16s] from + (byte) divr16s::neg ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (word) divr16s::dividendu ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (word) divr16s::remu ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$0 ← (signed word) divr16s::dividend < (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$1 ← (signed word) divr16s::rem < (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$2 ← (bool~) divr16s::$0 || (bool~) divr16s::$1 + if((bool~) divr16s::$2) goto divr16s::@1 + to:divr16s::@7 +divr16s::@1: scope:[divr16s] from divr16s divr16s::@8 + (signed word~) divr16s::$5 ← - (signed word) divr16s::dividend + (word~) divr16s::$6 ← ((word)) (signed word~) divr16s::$5 + (word) divr16s::dividendu ← (word~) divr16s::$6 + (signed word~) divr16s::$7 ← - (signed word) divr16s::rem + (word~) divr16s::$8 ← ((word)) (signed word~) divr16s::$7 + (word) divr16s::remu ← (word~) divr16s::$8 + (byte) divr16s::neg ← (byte/signed byte/word/signed word/dword/signed dword) 1 + to:divr16s::@2 +divr16s::@7: scope:[divr16s] from divr16s + (word~) divr16s::$3 ← ((word)) (signed word) divr16s::dividend + (word) divr16s::dividendu ← (word~) divr16s::$3 + (word~) divr16s::$4 ← ((word)) (signed word) divr16s::rem + (word) divr16s::remu ← (word~) divr16s::$4 + to:divr16s::@2 +divr16s::@2: scope:[divr16s] from divr16s::@1 divr16s::@7 + (word) divr16s::divisoru ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$9 ← (signed word) divr16s::divisor < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) divr16s::$9) goto divr16s::@3 + to:divr16s::@9 +divr16s::@8: scope:[divr16s] from + to:divr16s::@1 +divr16s::@3: scope:[divr16s] from divr16s::@10 divr16s::@2 + (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor + (word~) divr16s::$12 ← ((word)) (signed word~) divr16s::$11 + (word) divr16s::divisoru ← (word~) divr16s::$12 + (byte/word/dword~) divr16s::$13 ← (byte) divr16s::neg ^ (byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) divr16s::neg ← (byte/word/dword~) divr16s::$13 + to:divr16s::@4 +divr16s::@9: scope:[divr16s] from divr16s::@2 + (word~) divr16s::$10 ← ((word)) (signed word) divr16s::divisor + (word) divr16s::divisoru ← (word~) divr16s::$10 + to:divr16s::@4 +divr16s::@4: scope:[divr16s] from divr16s::@3 divr16s::@9 + (word~) divr16s::$14 ← call divr16u (word) divr16s::dividendu (word) divr16s::divisoru (word) divr16s::remu + (word) divr16s::resultu ← (word~) divr16s::$14 + (bool~) divr16s::$15 ← (byte) divr16s::neg == (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) divr16s::$15) goto divr16s::@5 + to:divr16s::@11 +divr16s::@10: scope:[divr16s] from + to:divr16s::@3 +divr16s::@5: scope:[divr16s] from divr16s::@13 divr16s::@4 + (signed word~) divr16s::$20 ← ((signed word)) (word) rem16u + (signed word) rem16s ← (signed word~) divr16s::$20 + (signed word~) divr16s::$21 ← ((signed word)) (word) divr16s::resultu + (signed word) divr16s::return ← (signed word~) divr16s::$21 + to:divr16s::@return +divr16s::@11: scope:[divr16s] from divr16s::@4 + (signed word~) divr16s::$16 ← ((signed word)) (word) rem16u + (signed word~) divr16s::$17 ← - (signed word~) divr16s::$16 + (signed word) rem16s ← (signed word~) divr16s::$17 + (signed word~) divr16s::$18 ← ((signed word)) (word) divr16s::resultu + (signed word~) divr16s::$19 ← - (signed word~) divr16s::$18 + (signed word) divr16s::return ← (signed word~) divr16s::$19 + to:divr16s::@return +divr16s::@return: scope:[divr16s] from divr16s::@11 divr16s::@5 divr16s::@6 + (signed word) divr16s::return ← (signed word) divr16s::return + return (signed word) divr16s::return + to:@return +divr16s::@12: scope:[divr16s] from + to:divr16s::@6 +divr16s::@6: scope:[divr16s] from divr16s::@12 divr16s::@14 + to:divr16s::@return +divr16s::@13: scope:[divr16s] from + to:divr16s::@5 +divr16s::@14: scope:[divr16s] from + to:divr16s::@6 +@10: scope:[] from @9 + to:@11 +div16s: scope:[div16s] from + (signed word~) div16s::$0 ← call divr16s (signed word) div16s::dividend (signed word) div16s::divisor (byte/signed byte/word/signed word/dword/signed dword) 0 + (signed word) div16s::return ← (signed word~) div16s::$0 + to:div16s::@return +div16s::@return: scope:[div16s] from div16s div16s::@1 + (signed word) div16s::return ← (signed word) div16s::return + return (signed word) div16s::return + to:@return +div16s::@1: scope:[div16s] from + to:div16s::@return +@11: scope:[] from @10 (byte*) BITMAP ← ((byte*)) (word/dword/signed dword) 40960 (byte*) SCREEN ← ((byte*)) (word/dword/signed dword) 34816 (byte) SIZE ← (byte/signed byte/word/signed word/dword/signed dword) 4 @@ -604,7 +1324,7 @@ vicSelectGfxBank::@return: scope:[vicSelectGfxBank] from vicSelectGfxBank (signed byte[4]) y_add ← { fill( 4, 0) } (byte[4]) delay ← { fill( 4, 0) } (byte[4]) frame ← { fill( 4, 0) } - to:@4 + to:@12 main: scope:[main] from asm { sei } *((byte*) PROCPORT_DDR) ← (byte) PROCPORT_DDR_MEMORY_MASK @@ -628,43 +1348,113 @@ main::@1: scope:[main] from main main::@1 (byte) main::i ← (byte) main::i + (byte/signed byte/word/signed word/dword/signed dword) 2 (bool~) main::$11 ← (byte) main::i != (byte/signed byte/word/signed word/dword/signed dword) 8 if((bool~) main::$11) goto main::@1 - to:main::@5 -main::@5: scope:[main] from main::@1 + to:main::@8 +main::@8: scope:[main] from main::@1 to:main::@2 -main::@2: scope:[main] from main::@3 main::@5 +main::@2: scope:[main] from main::@7 main::@8 if(true) goto main::@3 - to:main::@6 -main::@3: scope:[main] from main::@2 main::@7 + to:main::@9 +main::@3: scope:[main] from main::@10 main::@2 + to:main::@5 +main::@9: scope:[main] from main::@2 + to:main::@4 +main::@4: scope:[main] from main::@14 main::@9 + to:main::@return +main::@10: scope:[main] from + to:main::@3 +main::@5: scope:[main] from main::@3 main::@6 + (bool~) main::$12 ← *((byte*) RASTER) != (byte/word/signed word/dword/signed dword) 255 + if((bool~) main::$12) goto main::@6 + to:main::@11 +main::@6: scope:[main] from main::@12 main::@5 + to:main::@5 +main::@11: scope:[main] from main::@5 + to:main::@7 +main::@7: scope:[main] from main::@11 main::@13 *((byte*) BORDERCOL) ← ++ *((byte*) BORDERCOL) to:main::@2 -main::@6: scope:[main] from main::@2 - to:main::@4 -main::@4: scope:[main] from main::@6 main::@8 - to:main::@return -main::@7: scope:[main] from - to:main::@3 -main::@8: scope:[main] from +main::@12: scope:[main] from + to:main::@6 +main::@13: scope:[main] from + to:main::@7 +main::@14: scope:[main] from to:main::@4 main::@return: scope:[main] from main::@4 return to:@return -@4: scope:[] from @3 - to:@5 +@12: scope:[] from @11 + to:@13 point_init: scope:[point_init] from - (word~) point_init::$0 ← *((word[4]) x_start + (byte) point_init::point_idx) << (byte/signed byte/word/signed word/dword/signed dword) 4 - *((word[4]) x_cur + (byte) point_init::point_idx) ← (word~) point_init::$0 - (byte~) point_init::$1 ← (byte) point_init::point_idx >> (byte/signed byte/word/signed word/dword/signed dword) 1 - (word~) point_init::$2 ← ((word)) *((byte[4]) y_start + (byte~) point_init::$1) - (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 - *((word[4]) y_cur + (byte) point_init::point_idx) ← (word~) point_init::$3 - (byte~) point_init::$4 ← (byte) point_init::point_idx >> (byte/signed byte/word/signed word/dword/signed dword) 1 - *((byte[4]) delay + (byte~) point_init::$4) ← (byte) DELAY + (byte~) point_init::$0 ← (byte) point_init::point_idx >> (byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) point_init::point_idx1 ← (byte~) point_init::$0 + (signed word~) point_init::$1 ← ((signed word)) *((word[4]) x_end + (byte) point_init::point_idx) + (signed word~) point_init::$2 ← ((signed word)) *((word[4]) x_start + (byte) point_init::point_idx) + (signed word~) point_init::$3 ← (signed word~) point_init::$1 - (signed word~) point_init::$2 + (signed word) point_init::x_diff ← (signed word~) point_init::$3 + (signed word~) point_init::$4 ← ((signed word)) *((byte[4]) y_end + (byte) point_init::point_idx1) + (signed word~) point_init::$5 ← ((signed word)) *((byte[4]) y_start + (byte) point_init::point_idx1) + (signed word~) point_init::$6 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 + (signed word) point_init::y_diff ← (signed word~) point_init::$6 + (word~) point_init::$7 ← call abs16s (signed word) point_init::x_diff + (word~) point_init::$8 ← call abs16s (signed word) point_init::y_diff + (bool~) point_init::$9 ← (word~) point_init::$7 > (word~) point_init::$8 + if((bool~) point_init::$9) goto point_init::@1 + to:point_init::@5 +point_init::@1: scope:[point_init] from point_init point_init::@6 + (bool~) point_init::$10 ← (signed word) point_init::x_diff < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) point_init::$10) goto point_init::@3 + to:point_init::@7 +point_init::@5: scope:[point_init] from point_init + to:point_init::@2 +point_init::@2: scope:[point_init] from point_init::@4 point_init::@5 to:point_init::@return -point_init::@return: scope:[point_init] from point_init +point_init::@6: scope:[point_init] from + to:point_init::@1 +point_init::@3: scope:[point_init] from point_init::@1 point_init::@8 + (signed byte/signed word/signed dword~) point_init::$11 ← - (byte/signed byte/word/signed word/dword/signed dword) 16 + *((signed byte[4]) x_add + (byte) point_init::point_idx) ← (signed byte/signed word/signed dword~) point_init::$11 + to:point_init::@4 +point_init::@7: scope:[point_init] from point_init::@1 + *((signed byte[4]) x_add + (byte) point_init::point_idx) ← (byte/signed byte/word/signed word/dword/signed dword) 16 + to:point_init::@4 +point_init::@4: scope:[point_init] from point_init::@3 point_init::@7 + (signed word~) point_init::$12 ← call divr16s (byte/signed byte/word/signed word/dword/signed dword) 0 (signed word) point_init::x_diff (signed word) point_init::y_diff + (signed word) point_init::x_stepf ← (signed word~) point_init::$12 + to:point_init::@2 +point_init::@8: scope:[point_init] from + to:point_init::@3 +point_init::@return: scope:[point_init] from point_init::@2 return to:@return -@5: scope:[] from @4 - to:@6 +@13: scope:[] from @12 + to:@14 +abs16s: scope:[abs16s] from + (bool~) abs16s::$0 ← (signed word) abs16s::w < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) abs16s::$0) goto abs16s::@1 + to:abs16s::@3 +abs16s::@1: scope:[abs16s] from abs16s abs16s::@5 + (signed word~) abs16s::$2 ← - (signed word) abs16s::w + (word~) abs16s::$3 ← ((word)) (signed word~) abs16s::$2 + (word) abs16s::return ← (word~) abs16s::$3 + to:abs16s::@return +abs16s::@3: scope:[abs16s] from abs16s + (word~) abs16s::$1 ← ((word)) (signed word) abs16s::w + (word) abs16s::return ← (word~) abs16s::$1 + to:abs16s::@return +abs16s::@return: scope:[abs16s] from abs16s::@1 abs16s::@2 abs16s::@3 + (word) abs16s::return ← (word) abs16s::return + return (word) abs16s::return + to:@return +abs16s::@4: scope:[abs16s] from + to:abs16s::@2 +abs16s::@2: scope:[abs16s] from abs16s::@4 abs16s::@6 + to:abs16s::@return +abs16s::@5: scope:[abs16s] from + to:abs16s::@1 +abs16s::@6: scope:[abs16s] from + to:abs16s::@2 +@14: scope:[] from @13 + to:@15 screen_fill: scope:[screen_fill] from (byte) screen_fill::y ← (byte/signed byte/word/signed word/dword/signed dword) 0 to:screen_fill::@1 @@ -688,11 +1478,11 @@ screen_fill::@4: scope:[screen_fill] from screen_fill::@3 screen_fill::@return: scope:[screen_fill] from screen_fill::@4 return to:@return -@6: scope:[] from @5 +@15: scope:[] from @14 (byte[256]) bitmap_plot_ylo ← { fill( 256, 0) } (byte[256]) bitmap_plot_yhi ← { fill( 256, 0) } (byte[256]) bitmap_plot_bit ← { fill( 256, 0) } - to:@7 + to:@16 bitmap_init: scope:[bitmap_init] from (byte) bitmap_init::bits ← (byte/word/signed word/dword/signed dword) 128 (byte) bitmap_init::x ← (byte/signed byte/word/signed word/dword/signed dword) 0 @@ -743,8 +1533,8 @@ bitmap_init::@8: scope:[bitmap_init] from bitmap_init::@4 bitmap_init::@return: scope:[bitmap_init] from bitmap_init::@8 return to:@return -@7: scope:[] from @6 - to:@8 +@16: scope:[] from @15 + to:@17 bitmap_clear: scope:[bitmap_clear] from (byte*~) bitmap_clear::$0 ← ((byte*)) { *((byte[256]) bitmap_plot_yhi + (byte/signed byte/word/signed word/dword/signed dword) 0), *((byte[256]) bitmap_plot_ylo + (byte/signed byte/word/signed word/dword/signed dword) 0) } (byte*) bitmap_clear::bitmap ← (byte*~) bitmap_clear::$0 @@ -770,8 +1560,8 @@ bitmap_clear::@4: scope:[bitmap_clear] from bitmap_clear::@3 bitmap_clear::@return: scope:[bitmap_clear] from bitmap_clear::@4 return to:@return -@8: scope:[] from @7 - to:@9 +@17: scope:[] from @16 + to:@18 bitmap_plot: scope:[bitmap_plot] from (byte*~) bitmap_plot::$0 ← ((byte*)) { *((byte[256]) bitmap_plot_yhi + (byte) bitmap_plot::y), *((byte[256]) bitmap_plot_ylo + (byte) bitmap_plot::y) } (byte*) bitmap_plot::plotter ← (byte*~) bitmap_plot::$0 @@ -783,17 +1573,26 @@ bitmap_plot: scope:[bitmap_plot] from bitmap_plot::@return: scope:[bitmap_plot] from bitmap_plot return to:@return -@9: scope:[] from @8 +@18: scope:[] from @17 call main to:@end -@end: scope:[] from @9 +@end: scope:[] from @18 Inlined call (byte~) vicSelectGfxBank::$0 ← call toDd00 (byte*) vicSelectGfxBank::gfx Inlined call call vicSelectGfxBank (byte*) SCREEN Inlined call (byte~) main::$4 ← call toD018 (byte*) SCREEN (byte*) BITMAP +Inlined call (word~) point_init::$7 ← call abs16s (signed word) point_init::x_diff +Inlined call (word~) point_init::$8 ← call abs16s (signed word) point_init::y_diff Removing unused procedure toD018 Removing unused procedure toDd00 Removing unused procedure vicSelectGfxBank +Removing unused procedure div16u +Removing unused procedure div32u16u +Removing unused procedure div8s +Removing unused procedure div16s +Removing unused procedure abs16s +Removing unused procedure div8u +Removing unused procedure divr8u Eliminating unused variable (byte) PROCPORT_RAM_ALL and assignment [3] (byte) PROCPORT_RAM_ALL ← (byte/signed byte/word/signed word/dword/signed dword) 48 Eliminating unused variable (byte) PROCPORT_RAM_CHARROM and assignment [5] (byte) PROCPORT_RAM_CHARROM ← (byte/signed byte/word/signed word/dword/signed dword) 49 Eliminating unused variable (byte) PROCPORT_KERNEL_IO and assignment [6] (byte) PROCPORT_KERNEL_IO ← (byte/signed byte/word/signed word/dword/signed dword) 54 @@ -802,7 +1601,6 @@ Eliminating unused variable (byte*) CHARGEN and assignment [8] (byte*) CHARGEN Eliminating unused variable (byte*) SPRITES_XPOS and assignment [9] (byte*) SPRITES_XPOS ← ((byte*)) (word/dword/signed dword) 53248 Eliminating unused variable (byte*) SPRITES_YPOS and assignment [10] (byte*) SPRITES_YPOS ← ((byte*)) (word/dword/signed dword) 53249 Eliminating unused variable (byte*) SPRITES_XMSB and assignment [11] (byte*) SPRITES_XMSB ← ((byte*)) (word/dword/signed dword) 53264 -Eliminating unused variable (byte*) RASTER and assignment [12] (byte*) RASTER ← ((byte*)) (word/dword/signed dword) 53266 Eliminating unused variable (byte*) SPRITES_ENABLE and assignment [13] (byte*) SPRITES_ENABLE ← ((byte*)) (word/dword/signed dword) 53269 Eliminating unused variable (byte*) SPRITES_EXPAND_Y and assignment [14] (byte*) SPRITES_EXPAND_Y ← ((byte*)) (word/dword/signed dword) 53271 Eliminating unused variable (byte*) SPRITES_PRIORITY and assignment [15] (byte*) SPRITES_PRIORITY ← ((byte*)) (word/dword/signed dword) 53275 @@ -847,35 +1645,76 @@ Eliminating unused variable (byte) GREY and assignment [61] (byte) GREY ← (byt Eliminating unused variable (byte) LIGHT_GREEN and assignment [62] (byte) LIGHT_GREEN ← (byte/signed byte/word/signed word/dword/signed dword) 13 Eliminating unused variable (byte) LIGHT_BLUE and assignment [63] (byte) LIGHT_BLUE ← (byte/signed byte/word/signed word/dword/signed dword) 14 Eliminating unused variable (byte) LIGHT_GREY and assignment [64] (byte) LIGHT_GREY ← (byte/signed byte/word/signed word/dword/signed dword) 15 -Eliminating unused variable (byte) SIZE and assignment [67] (byte) SIZE ← (byte/signed byte/word/signed word/dword/signed dword) 4 -Eliminating unused variable (word[4]) x_end and assignment [71] (word[4]) x_end ← { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20 } -Eliminating unused variable (byte[4]) y_end and assignment [72] (byte[4]) y_end ← { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20 } -Eliminating unused variable (signed byte[4]) x_add and assignment [75] (signed byte[4]) x_add ← { fill( 4, 0) } -Eliminating unused variable (signed byte[4]) y_add and assignment [76] (signed byte[4]) y_add ← { fill( 4, 0) } -Eliminating unused variable (byte[4]) frame and assignment [78] (byte[4]) frame ← { fill( 4, 0) } +Eliminating unused variable (byte) rem8u and assignment [65] (byte) rem8u ← (byte/signed byte/word/signed word/dword/signed dword) 0 +Eliminating unused variable (signed byte) rem8s and assignment [95] (signed byte) rem8s ← (byte/signed byte/word/signed word/dword/signed dword) 0 +Eliminating unused variable (byte) SIZE and assignment [143] (byte) SIZE ← (byte/signed byte/word/signed word/dword/signed dword) 4 +Eliminating unused variable (byte) DELAY and assignment [144] (byte) DELAY ← (byte/signed byte/word/signed word/dword/signed dword) 8 +Eliminating unused variable (word[4]) x_cur and assignment [149] (word[4]) x_cur ← { fill( 4, 0) } +Eliminating unused variable (word[4]) y_cur and assignment [150] (word[4]) y_cur ← { fill( 4, 0) } +Eliminating unused variable (signed byte[4]) y_add and assignment [152] (signed byte[4]) y_add ← { fill( 4, 0) } +Eliminating unused variable (byte[4]) delay and assignment [153] (byte[4]) delay ← { fill( 4, 0) } +Eliminating unused variable (byte[4]) frame and assignment [154] (byte[4]) frame ← { fill( 4, 0) } Eliminating unused variable - keeping the call (void~) main::$5 Eliminating unused variable - keeping the call (void~) main::$6 Eliminating unused variable - keeping the call (void~) main::$7 Eliminating unused variable - keeping the call (void~) main::$8 Eliminating unused variable - keeping the call (void~) main::$10 +Eliminating unused variable (signed word) point_init::x_stepf and assignment [241] (signed word) point_init::x_stepf ← (signed word~) point_init::$12 +Eliminating unused variable - keeping the call (signed word~) point_init::$12 Removing empty block @1 Removing empty block @2 +Removing empty block @3 +Removing empty block @4 +Removing empty block divr16u::@7 +Removing empty block @6 +Removing empty block @7 +Removing empty block @8 +Removing empty block divr16s::@8 +Removing empty block divr16s::@10 +Removing empty block divr16s::@12 +Removing empty block divr16s::@6 +Removing empty block divr16s::@13 +Removing empty block divr16s::@14 +Removing empty block @10 Removing empty block main::vicSelectGfxBank1_toDd001_@1 Removing empty block main::vicSelectGfxBank1_@return Removing empty block main::toD0181_@1 -Removing empty block main::@5 -Removing empty block main::@6 -Removing empty block main::@4 -Removing empty block main::@7 Removing empty block main::@8 -Removing empty block @4 -Removing empty block @5 +Removing empty block main::@9 +Removing empty block main::@4 +Removing empty block main::@10 +Removing empty block main::@11 +Removing empty block main::@12 +Removing empty block main::@13 +Removing empty block main::@14 +Removing empty block @12 +Removing empty block point_init::abs16s1_@4 +Removing empty block point_init::abs16s1_@2 +Removing empty block point_init::abs16s1_@5 +Removing empty block point_init::abs16s1_@6 +Removing empty block point_init::abs16s2_@4 +Removing empty block point_init::abs16s2_@2 +Removing empty block point_init::abs16s2_@5 +Removing empty block point_init::abs16s2_@6 +Removing empty block point_init::@5 +Removing empty block point_init::@2 +Removing empty block point_init::@6 +Removing empty block point_init::@8 +Removing empty block @13 +Removing empty block @14 Removing empty block screen_fill::@4 Removing empty block bitmap_init::@8 -Removing empty block @7 +Removing empty block @16 Removing empty block bitmap_clear::@4 -Removing empty block @8 +Removing empty block @17 PROCEDURE MODIFY VARIABLE ANALYSIS +divr16u modifies rem16u +divr16s modifies rem16u +divr16s modifies rem16s +main modifies rem16u +main modifies rem16s +point_init modifies rem16u +point_init modifies rem16s Completing Phi functions... Completing Phi functions... @@ -885,6 +1724,12 @@ Completing Phi functions... Completing Phi functions... Completing Phi functions... Completing Phi functions... +Completing Phi functions... +Completing Phi functions... +Completing Phi functions... +Completing Phi functions... +Completing Phi functions... +Completing Phi functions... CONTROL FLOW GRAPH SSA WITH ASSIGNMENT CALL & RETURN @begin: scope:[] from @@ -892,6 +1737,7 @@ CONTROL FLOW GRAPH SSA WITH ASSIGNMENT CALL & RETURN (byte) PROCPORT_DDR_MEMORY_MASK#0 ← (byte/signed byte/word/signed word/dword/signed dword) 7 (byte*) PROCPORT#0 ← ((byte*)) (byte/signed byte/word/signed word/dword/signed dword) 1 (byte) PROCPORT_RAM_IO#0 ← (byte/signed byte/word/signed word/dword/signed dword) 53 + (byte*) RASTER#0 ← ((byte*)) (word/dword/signed dword) 53266 (byte*) BORDERCOL#0 ← ((byte*)) (word/dword/signed dword) 53280 (byte*) D011#0 ← ((byte*)) (word/dword/signed dword) 53265 (byte) VIC_BMM#0 ← (byte/signed byte/word/signed word/dword/signed dword) 32 @@ -900,20 +1746,224 @@ CONTROL FLOW GRAPH SSA WITH ASSIGNMENT CALL & RETURN (byte*) D018#0 ← ((byte*)) (word/dword/signed dword) 53272 (byte*) CIA2_PORT_A#0 ← ((byte*)) (word/dword/signed dword) 56576 (byte*) CIA2_PORT_A_DDR#0 ← ((byte*)) (word/dword/signed dword) 56578 - to:@3 -@3: scope:[] from @begin + to:@5 +@5: scope:[] from @begin + (word) rem16u#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + to:@9 +divr16u: scope:[divr16u] from divr16s::@4 + (word) divr16u::divisor#5 ← phi( divr16s::@4/(word) divr16u::divisor#0 ) + (word) divr16u::dividend#4 ← phi( divr16s::@4/(word) divr16u::dividend#1 ) + (word) divr16u::rem#9 ← phi( divr16s::@4/(word) divr16u::rem#3 ) + (word) divr16u::quotient#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (byte) divr16u::i#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + to:divr16u::@1 +divr16u::@1: scope:[divr16u] from divr16u divr16u::@3 + (byte) divr16u::i#5 ← phi( divr16u/(byte) divr16u::i#0 divr16u::@3/(byte) divr16u::i#1 ) + (word) divr16u::divisor#3 ← phi( divr16u/(word) divr16u::divisor#5 divr16u::@3/(word) divr16u::divisor#6 ) + (word) divr16u::quotient#6 ← phi( divr16u/(word) divr16u::quotient#0 divr16u::@3/(word) divr16u::quotient#8 ) + (word) divr16u::dividend#2 ← phi( divr16u/(word) divr16u::dividend#4 divr16u::@3/(word) divr16u::dividend#5 ) + (word) divr16u::rem#4 ← phi( divr16u/(word) divr16u::rem#9 divr16u::@3/(word) divr16u::rem#10 ) + (word~) divr16u::$0 ← (word) divr16u::rem#4 << (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::rem#0 ← (word~) divr16u::$0 + (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 + (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 + (bool~) divr16u::$3 ← (byte~) divr16u::$2 != (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16u::$4 ← ! (bool~) divr16u::$3 + if((bool~) divr16u::$4) goto divr16u::@2 + to:divr16u::@4 +divr16u::@2: scope:[divr16u] from divr16u::@1 divr16u::@4 + (byte) divr16u::i#3 ← phi( divr16u::@1/(byte) divr16u::i#5 divr16u::@4/(byte) divr16u::i#6 ) + (word) divr16u::divisor#1 ← phi( divr16u::@1/(word) divr16u::divisor#3 divr16u::@4/(word) divr16u::divisor#4 ) + (word) divr16u::rem#5 ← phi( divr16u::@1/(word) divr16u::rem#0 divr16u::@4/(word) divr16u::rem#1 ) + (word) divr16u::quotient#3 ← phi( divr16u::@1/(word) divr16u::quotient#6 divr16u::@4/(word) divr16u::quotient#7 ) + (word) divr16u::dividend#3 ← phi( divr16u::@1/(word) divr16u::dividend#2 divr16u::@4/(word) divr16u::dividend#6 ) + (word~) divr16u::$6 ← (word) divr16u::dividend#3 << (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::dividend#0 ← (word~) divr16u::$6 + (word~) divr16u::$7 ← (word) divr16u::quotient#3 << (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::quotient#1 ← (word~) divr16u::$7 + (bool~) divr16u::$8 ← (word) divr16u::rem#5 >= (word) divr16u::divisor#1 + (bool~) divr16u::$9 ← ! (bool~) divr16u::$8 + if((bool~) divr16u::$9) goto divr16u::@3 + to:divr16u::@5 +divr16u::@4: scope:[divr16u] from divr16u::@1 + (byte) divr16u::i#6 ← phi( divr16u::@1/(byte) divr16u::i#5 ) + (word) divr16u::divisor#4 ← phi( divr16u::@1/(word) divr16u::divisor#3 ) + (word) divr16u::quotient#7 ← phi( divr16u::@1/(word) divr16u::quotient#6 ) + (word) divr16u::dividend#6 ← phi( divr16u::@1/(word) divr16u::dividend#2 ) + (word) divr16u::rem#6 ← phi( divr16u::@1/(word) divr16u::rem#0 ) + (word/dword~) divr16u::$5 ← (word) divr16u::rem#6 | (byte/signed byte/word/signed word/dword/signed dword) 1 + (word) divr16u::rem#1 ← (word/dword~) divr16u::$5 + to:divr16u::@2 +divr16u::@3: scope:[divr16u] from divr16u::@2 divr16u::@5 + (word) divr16u::divisor#6 ← phi( divr16u::@2/(word) divr16u::divisor#1 divr16u::@5/(word) divr16u::divisor#2 ) + (word) divr16u::quotient#8 ← phi( divr16u::@2/(word) divr16u::quotient#1 divr16u::@5/(word) divr16u::quotient#2 ) + (word) divr16u::dividend#5 ← phi( divr16u::@2/(word) divr16u::dividend#0 divr16u::@5/(word) divr16u::dividend#7 ) + (word) divr16u::rem#10 ← phi( divr16u::@2/(word) divr16u::rem#5 divr16u::@5/(word) divr16u::rem#2 ) + (byte) divr16u::i#2 ← phi( divr16u::@2/(byte) divr16u::i#3 divr16u::@5/(byte) divr16u::i#4 ) + (byte) divr16u::i#1 ← ++ (byte) divr16u::i#2 + (bool~) divr16u::$11 ← (byte) divr16u::i#1 != (byte/signed byte/word/signed word/dword/signed dword) 16 + if((bool~) divr16u::$11) goto divr16u::@1 + to:divr16u::@6 +divr16u::@5: scope:[divr16u] from divr16u::@2 + (word) divr16u::dividend#7 ← phi( divr16u::@2/(word) divr16u::dividend#0 ) + (byte) divr16u::i#4 ← phi( divr16u::@2/(byte) divr16u::i#3 ) + (word) divr16u::divisor#2 ← phi( divr16u::@2/(word) divr16u::divisor#1 ) + (word) divr16u::rem#7 ← phi( divr16u::@2/(word) divr16u::rem#5 ) + (word) divr16u::quotient#4 ← phi( divr16u::@2/(word) divr16u::quotient#1 ) + (word) divr16u::quotient#2 ← ++ (word) divr16u::quotient#4 + (word~) divr16u::$10 ← (word) divr16u::rem#7 - (word) divr16u::divisor#2 + (word) divr16u::rem#2 ← (word~) divr16u::$10 + to:divr16u::@3 +divr16u::@6: scope:[divr16u] from divr16u::@3 + (word) divr16u::quotient#5 ← phi( divr16u::@3/(word) divr16u::quotient#8 ) + (word) divr16u::rem#8 ← phi( divr16u::@3/(word) divr16u::rem#10 ) + (word) rem16u#1 ← (word) divr16u::rem#8 + (word) divr16u::return#0 ← (word) divr16u::quotient#5 + to:divr16u::@return +divr16u::@return: scope:[divr16u] from divr16u::@6 + (word) rem16u#10 ← phi( divr16u::@6/(word) rem16u#1 ) + (word) divr16u::return#3 ← phi( divr16u::@6/(word) divr16u::return#0 ) + (word) divr16u::return#1 ← (word) divr16u::return#3 + (word) rem16u#2 ← (word) rem16u#10 + return + to:@return +@9: scope:[] from @5 + (word) rem16u#44 ← phi( @5/(word) rem16u#0 ) + (signed word) rem16s#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + to:@11 +divr16s: scope:[divr16s] from point_init::@4 + (word) rem16u#51 ← phi( point_init::@4/(word) rem16u#23 ) + (signed word) divr16s::divisor#6 ← phi( point_init::@4/(signed word) divr16s::divisor#0 ) + (signed word) divr16s::rem#1 ← phi( point_init::@4/(signed word) divr16s::rem#0 ) + (signed word) divr16s::dividend#1 ← phi( point_init::@4/(signed word) divr16s::dividend#0 ) + (byte) divr16s::neg#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (word) divr16s::dividendu#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (word) divr16s::remu#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$0 ← (signed word) divr16s::dividend#1 < (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$1 ← (signed word) divr16s::rem#1 < (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$2 ← (bool~) divr16s::$0 || (bool~) divr16s::$1 + if((bool~) divr16s::$2) goto divr16s::@1 + to:divr16s::@7 +divr16s::@1: scope:[divr16s] from divr16s + (word) rem16u#42 ← phi( divr16s/(word) rem16u#51 ) + (signed word) divr16s::divisor#4 ← phi( divr16s/(signed word) divr16s::divisor#6 ) + (signed word) divr16s::rem#2 ← phi( divr16s/(signed word) divr16s::rem#1 ) + (signed word) divr16s::dividend#2 ← phi( divr16s/(signed word) divr16s::dividend#1 ) + (signed word~) divr16s::$5 ← - (signed word) divr16s::dividend#2 + (word~) divr16s::$6 ← ((word)) (signed word~) divr16s::$5 + (word) divr16s::dividendu#1 ← (word~) divr16s::$6 + (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#2 + (word~) divr16s::$8 ← ((word)) (signed word~) divr16s::$7 + (word) divr16s::remu#1 ← (word~) divr16s::$8 + (byte) divr16s::neg#1 ← (byte/signed byte/word/signed word/dword/signed dword) 1 + to:divr16s::@2 +divr16s::@7: scope:[divr16s] from divr16s + (word) rem16u#43 ← phi( divr16s/(word) rem16u#51 ) + (byte) divr16s::neg#7 ← phi( divr16s/(byte) divr16s::neg#0 ) + (signed word) divr16s::divisor#5 ← phi( divr16s/(signed word) divr16s::divisor#6 ) + (signed word) divr16s::rem#3 ← phi( divr16s/(signed word) divr16s::rem#1 ) + (signed word) divr16s::dividend#3 ← phi( divr16s/(signed word) divr16s::dividend#1 ) + (word~) divr16s::$3 ← ((word)) (signed word) divr16s::dividend#3 + (word) divr16s::dividendu#2 ← (word~) divr16s::$3 + (word~) divr16s::$4 ← ((word)) (signed word) divr16s::rem#3 + (word) divr16s::remu#2 ← (word~) divr16s::$4 + to:divr16s::@2 +divr16s::@2: scope:[divr16s] from divr16s::@1 divr16s::@7 + (word) rem16u#35 ← phi( divr16s::@1/(word) rem16u#42 divr16s::@7/(word) rem16u#43 ) + (word) divr16s::remu#6 ← phi( divr16s::@1/(word) divr16s::remu#1 divr16s::@7/(word) divr16s::remu#2 ) + (word) divr16s::dividendu#6 ← phi( divr16s::@1/(word) divr16s::dividendu#1 divr16s::@7/(word) divr16s::dividendu#2 ) + (byte) divr16s::neg#5 ← phi( divr16s::@1/(byte) divr16s::neg#1 divr16s::@7/(byte) divr16s::neg#7 ) + (signed word) divr16s::divisor#1 ← phi( divr16s::@1/(signed word) divr16s::divisor#4 divr16s::@7/(signed word) divr16s::divisor#5 ) + (word) divr16s::divisoru#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (bool~) divr16s::$9 ← (signed word) divr16s::divisor#1 < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) divr16s::$9) goto divr16s::@3 + to:divr16s::@9 +divr16s::@3: scope:[divr16s] from divr16s::@2 + (word) rem16u#26 ← phi( divr16s::@2/(word) rem16u#35 ) + (word) divr16s::remu#4 ← phi( divr16s::@2/(word) divr16s::remu#6 ) + (word) divr16s::dividendu#4 ← phi( divr16s::@2/(word) divr16s::dividendu#6 ) + (byte) divr16s::neg#3 ← phi( divr16s::@2/(byte) divr16s::neg#5 ) + (signed word) divr16s::divisor#2 ← phi( divr16s::@2/(signed word) divr16s::divisor#1 ) + (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#2 + (word~) divr16s::$12 ← ((word)) (signed word~) divr16s::$11 + (word) divr16s::divisoru#1 ← (word~) divr16s::$12 + (byte/word/dword~) divr16s::$13 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) divr16s::neg#2 ← (byte/word/dword~) divr16s::$13 + to:divr16s::@4 +divr16s::@9: scope:[divr16s] from divr16s::@2 + (byte) divr16s::neg#8 ← phi( divr16s::@2/(byte) divr16s::neg#5 ) + (word) rem16u#27 ← phi( divr16s::@2/(word) rem16u#35 ) + (word) divr16s::remu#5 ← phi( divr16s::@2/(word) divr16s::remu#6 ) + (word) divr16s::dividendu#5 ← phi( divr16s::@2/(word) divr16s::dividendu#6 ) + (signed word) divr16s::divisor#3 ← phi( divr16s::@2/(signed word) divr16s::divisor#1 ) + (word~) divr16s::$10 ← ((word)) (signed word) divr16s::divisor#3 + (word) divr16s::divisoru#2 ← (word~) divr16s::$10 + to:divr16s::@4 +divr16s::@4: scope:[divr16s] from divr16s::@3 divr16s::@9 + (byte) divr16s::neg#6 ← phi( divr16s::@3/(byte) divr16s::neg#2 divr16s::@9/(byte) divr16s::neg#8 ) + (word) rem16u#20 ← phi( divr16s::@3/(word) rem16u#26 divr16s::@9/(word) rem16u#27 ) + (word) divr16s::remu#3 ← phi( divr16s::@3/(word) divr16s::remu#4 divr16s::@9/(word) divr16s::remu#5 ) + (word) divr16s::divisoru#3 ← phi( divr16s::@3/(word) divr16s::divisoru#1 divr16s::@9/(word) divr16s::divisoru#2 ) + (word) divr16s::dividendu#3 ← phi( divr16s::@3/(word) divr16s::dividendu#4 divr16s::@9/(word) divr16s::dividendu#5 ) + (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 + (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 + (word) divr16u::rem#3 ← (word) divr16s::remu#3 + call divr16u + (word) divr16u::return#2 ← (word) divr16u::return#1 + to:divr16s::@15 +divr16s::@15: scope:[divr16s] from divr16s::@4 + (byte) divr16s::neg#4 ← phi( divr16s::@4/(byte) divr16s::neg#6 ) + (word) rem16u#11 ← phi( divr16s::@4/(word) rem16u#2 ) + (word) divr16u::return#4 ← phi( divr16s::@4/(word) divr16u::return#2 ) + (word~) divr16s::$14 ← (word) divr16u::return#4 + (word) rem16u#3 ← (word) rem16u#11 + (word) divr16s::resultu#0 ← (word~) divr16s::$14 + (bool~) divr16s::$15 ← (byte) divr16s::neg#4 == (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) divr16s::$15) goto divr16s::@5 + to:divr16s::@11 +divr16s::@5: scope:[divr16s] from divr16s::@15 + (word) divr16s::resultu#1 ← phi( divr16s::@15/(word) divr16s::resultu#0 ) + (word) rem16u#12 ← phi( divr16s::@15/(word) rem16u#3 ) + (signed word~) divr16s::$20 ← ((signed word)) (word) rem16u#12 + (signed word) rem16s#1 ← (signed word~) divr16s::$20 + (signed word~) divr16s::$21 ← ((signed word)) (word) divr16s::resultu#1 + (signed word) divr16s::return#0 ← (signed word~) divr16s::$21 + to:divr16s::@return +divr16s::@11: scope:[divr16s] from divr16s::@15 + (word) divr16s::resultu#2 ← phi( divr16s::@15/(word) divr16s::resultu#0 ) + (word) rem16u#13 ← phi( divr16s::@15/(word) rem16u#3 ) + (signed word~) divr16s::$16 ← ((signed word)) (word) rem16u#13 + (signed word~) divr16s::$17 ← - (signed word~) divr16s::$16 + (signed word) rem16s#2 ← (signed word~) divr16s::$17 + (signed word~) divr16s::$18 ← ((signed word)) (word) divr16s::resultu#2 + (signed word~) divr16s::$19 ← - (signed word~) divr16s::$18 + (signed word) divr16s::return#1 ← (signed word~) divr16s::$19 + to:divr16s::@return +divr16s::@return: scope:[divr16s] from divr16s::@11 divr16s::@5 + (signed word) rem16s#9 ← phi( divr16s::@11/(signed word) rem16s#2 divr16s::@5/(signed word) rem16s#1 ) + (word) rem16u#14 ← phi( divr16s::@11/(word) rem16u#13 divr16s::@5/(word) rem16u#12 ) + (signed word) divr16s::return#4 ← phi( divr16s::@11/(signed word) divr16s::return#1 divr16s::@5/(signed word) divr16s::return#0 ) + (signed word) divr16s::return#2 ← (signed word) divr16s::return#4 + (word) rem16u#4 ← (word) rem16u#14 + (signed word) rem16s#3 ← (signed word) rem16s#9 + return + to:@return +@11: scope:[] from @9 + (signed word) rem16s#32 ← phi( @9/(signed word) rem16s#0 ) + (word) rem16u#41 ← phi( @9/(word) rem16u#44 ) (byte*) BITMAP#0 ← ((byte*)) (word/dword/signed dword) 40960 (byte*) SCREEN#0 ← ((byte*)) (word/dword/signed dword) 34816 - (byte) DELAY#0 ← (byte/signed byte/word/signed word/dword/signed dword) 8 (word[4]) x_start#0 ← { (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 30, (byte/signed byte/word/signed word/dword/signed dword) 30 } (byte[4]) y_start#0 ← { (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20 } - (word[4]) x_cur#0 ← { fill( 4, 0) } - (word[4]) y_cur#0 ← { fill( 4, 0) } - (byte[4]) delay#0 ← { fill( 4, 0) } - to:@6 -main: scope:[main] from @9 - (byte*) BITMAP#9 ← phi( @9/(byte*) BITMAP#10 ) - (byte*) SCREEN#1 ← phi( @9/(byte*) SCREEN#4 ) + (word[4]) x_end#0 ← { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20 } + (byte[4]) y_end#0 ← { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20 } + (signed byte[4]) x_add#0 ← { fill( 4, 0) } + to:@15 +main: scope:[main] from @18 + (signed word) rem16s#51 ← phi( @18/(signed word) rem16s#19 ) + (word) rem16u#64 ← phi( @18/(word) rem16u#25 ) + (byte*) BITMAP#9 ← phi( @18/(byte*) BITMAP#10 ) + (byte*) SCREEN#1 ← phi( @18/(byte*) SCREEN#4 ) asm { sei } *((byte*) PROCPORT_DDR#0) ← (byte) PROCPORT_DDR_MEMORY_MASK#0 *((byte*) PROCPORT#0) ← (byte) PROCPORT_RAM_IO#0 @@ -924,6 +1974,8 @@ main: scope:[main] from @9 (byte*) main::vicSelectGfxBank1_gfx#0 ← (byte*) SCREEN#1 to:main::vicSelectGfxBank1 main::vicSelectGfxBank1: scope:[main] from main + (signed word) rem16s#50 ← phi( main/(signed word) rem16s#51 ) + (word) rem16u#63 ← phi( main/(word) rem16u#64 ) (byte*) BITMAP#8 ← phi( main/(byte*) BITMAP#9 ) (byte*) SCREEN#12 ← phi( main/(byte*) SCREEN#1 ) (byte*) main::vicSelectGfxBank1_gfx#1 ← phi( main/(byte*) main::vicSelectGfxBank1_gfx#0 ) @@ -931,6 +1983,8 @@ main::vicSelectGfxBank1: scope:[main] from main (byte*) main::vicSelectGfxBank1_toDd001_gfx#0 ← (byte*) main::vicSelectGfxBank1_gfx#1 to:main::vicSelectGfxBank1_toDd001 main::vicSelectGfxBank1_toDd001: scope:[main] from main::vicSelectGfxBank1 + (signed word) rem16s#49 ← phi( main::vicSelectGfxBank1/(signed word) rem16s#50 ) + (word) rem16u#62 ← phi( main::vicSelectGfxBank1/(word) rem16u#63 ) (byte*) BITMAP#7 ← phi( main::vicSelectGfxBank1/(byte*) BITMAP#8 ) (byte*) SCREEN#10 ← phi( main::vicSelectGfxBank1/(byte*) SCREEN#12 ) (byte*) main::vicSelectGfxBank1_toDd001_gfx#1 ← phi( main::vicSelectGfxBank1/(byte*) main::vicSelectGfxBank1_toDd001_gfx#0 ) @@ -941,29 +1995,37 @@ main::vicSelectGfxBank1_toDd001: scope:[main] from main::vicSelectGfxBank1 (byte) main::vicSelectGfxBank1_toDd001_return#0 ← (byte/word/dword) main::vicSelectGfxBank1_toDd001_$3#0 to:main::vicSelectGfxBank1_toDd001_@return main::vicSelectGfxBank1_toDd001_@return: scope:[main] from main::vicSelectGfxBank1_toDd001 + (signed word) rem16s#48 ← phi( main::vicSelectGfxBank1_toDd001/(signed word) rem16s#49 ) + (word) rem16u#61 ← phi( main::vicSelectGfxBank1_toDd001/(word) rem16u#62 ) (byte*) BITMAP#5 ← phi( main::vicSelectGfxBank1_toDd001/(byte*) BITMAP#7 ) (byte*) SCREEN#7 ← phi( main::vicSelectGfxBank1_toDd001/(byte*) SCREEN#10 ) (byte) main::vicSelectGfxBank1_toDd001_return#2 ← phi( main::vicSelectGfxBank1_toDd001/(byte) main::vicSelectGfxBank1_toDd001_return#0 ) (byte) main::vicSelectGfxBank1_toDd001_return#1 ← (byte) main::vicSelectGfxBank1_toDd001_return#2 to:main::vicSelectGfxBank1_@1 main::vicSelectGfxBank1_@1: scope:[main] from main::vicSelectGfxBank1_toDd001_@return + (signed word) rem16s#47 ← phi( main::vicSelectGfxBank1_toDd001_@return/(signed word) rem16s#48 ) + (word) rem16u#60 ← phi( main::vicSelectGfxBank1_toDd001_@return/(word) rem16u#61 ) (byte*) BITMAP#3 ← phi( main::vicSelectGfxBank1_toDd001_@return/(byte*) BITMAP#5 ) (byte*) SCREEN#5 ← phi( main::vicSelectGfxBank1_toDd001_@return/(byte*) SCREEN#7 ) (byte) main::vicSelectGfxBank1_toDd001_return#3 ← phi( main::vicSelectGfxBank1_toDd001_@return/(byte) main::vicSelectGfxBank1_toDd001_return#1 ) (byte) main::vicSelectGfxBank1_$0#0 ← (byte) main::vicSelectGfxBank1_toDd001_return#3 *((byte*) CIA2_PORT_A#0) ← (byte) main::vicSelectGfxBank1_$0#0 - to:main::@9 -main::@9: scope:[main] from main::vicSelectGfxBank1_@1 + to:main::@15 +main::@15: scope:[main] from main::vicSelectGfxBank1_@1 + (signed word) rem16s#46 ← phi( main::vicSelectGfxBank1_@1/(signed word) rem16s#47 ) + (word) rem16u#59 ← phi( main::vicSelectGfxBank1_@1/(word) rem16u#60 ) (byte*) BITMAP#1 ← phi( main::vicSelectGfxBank1_@1/(byte*) BITMAP#3 ) (byte*) SCREEN#2 ← phi( main::vicSelectGfxBank1_@1/(byte*) SCREEN#5 ) (byte*) main::toD0181_screen#0 ← (byte*) SCREEN#2 (byte*) main::toD0181_gfx#0 ← (byte*) BITMAP#1 to:main::toD0181 -main::toD0181: scope:[main] from main::@9 - (byte*) SCREEN#13 ← phi( main::@9/(byte*) SCREEN#2 ) - (byte*) BITMAP#6 ← phi( main::@9/(byte*) BITMAP#1 ) - (byte*) main::toD0181_gfx#1 ← phi( main::@9/(byte*) main::toD0181_gfx#0 ) - (byte*) main::toD0181_screen#1 ← phi( main::@9/(byte*) main::toD0181_screen#0 ) +main::toD0181: scope:[main] from main::@15 + (signed word) rem16s#44 ← phi( main::@15/(signed word) rem16s#46 ) + (word) rem16u#57 ← phi( main::@15/(word) rem16u#59 ) + (byte*) SCREEN#13 ← phi( main::@15/(byte*) SCREEN#2 ) + (byte*) BITMAP#6 ← phi( main::@15/(byte*) BITMAP#1 ) + (byte*) main::toD0181_gfx#1 ← phi( main::@15/(byte*) main::toD0181_gfx#0 ) + (byte*) main::toD0181_screen#1 ← phi( main::@15/(byte*) main::toD0181_screen#0 ) (word) main::toD0181_$0#0 ← ((word)) (byte*) main::toD0181_screen#1 (word) main::toD0181_$1#0 ← (word) main::toD0181_$0#0 & (word/signed word/dword/signed dword) 16383 (word) main::toD0181_$2#0 ← (word) main::toD0181_$1#0 << (byte/signed byte/word/signed word/dword/signed dword) 2 @@ -976,12 +2038,16 @@ main::toD0181: scope:[main] from main::@9 (byte) main::toD0181_return#0 ← (byte) main::toD0181_$8#0 to:main::toD0181_@return main::toD0181_@return: scope:[main] from main::toD0181 + (signed word) rem16s#41 ← phi( main::toD0181/(signed word) rem16s#44 ) + (word) rem16u#54 ← phi( main::toD0181/(word) rem16u#57 ) (byte*) SCREEN#11 ← phi( main::toD0181/(byte*) SCREEN#13 ) (byte*) BITMAP#4 ← phi( main::toD0181/(byte*) BITMAP#6 ) (byte) main::toD0181_return#2 ← phi( main::toD0181/(byte) main::toD0181_return#0 ) (byte) main::toD0181_return#1 ← (byte) main::toD0181_return#2 - to:main::@10 -main::@10: scope:[main] from main::toD0181_@return + to:main::@16 +main::@16: scope:[main] from main::toD0181_@return + (signed word) rem16s#39 ← phi( main::toD0181_@return/(signed word) rem16s#41 ) + (word) rem16u#52 ← phi( main::toD0181_@return/(word) rem16u#54 ) (byte*) SCREEN#8 ← phi( main::toD0181_@return/(byte*) SCREEN#11 ) (byte*) BITMAP#2 ← phi( main::toD0181_@return/(byte*) BITMAP#4 ) (byte) main::toD0181_return#3 ← phi( main::toD0181_@return/(byte) main::toD0181_return#1 ) @@ -989,64 +2055,253 @@ main::@10: scope:[main] from main::toD0181_@return *((byte*) D018#0) ← (byte~) main::$4 (byte*) bitmap_init::bitmap#0 ← (byte*) BITMAP#2 call bitmap_init - to:main::@11 -main::@11: scope:[main] from main::@10 - (byte*) SCREEN#6 ← phi( main::@10/(byte*) SCREEN#8 ) + to:main::@17 +main::@17: scope:[main] from main::@16 + (signed word) rem16s#33 ← phi( main::@16/(signed word) rem16s#39 ) + (word) rem16u#45 ← phi( main::@16/(word) rem16u#52 ) + (byte*) SCREEN#6 ← phi( main::@16/(byte*) SCREEN#8 ) call bitmap_clear - to:main::@12 -main::@12: scope:[main] from main::@11 - (byte*) SCREEN#3 ← phi( main::@11/(byte*) SCREEN#6 ) + to:main::@18 +main::@18: scope:[main] from main::@17 + (signed word) rem16s#27 ← phi( main::@17/(signed word) rem16s#33 ) + (word) rem16u#36 ← phi( main::@17/(word) rem16u#45 ) + (byte*) SCREEN#3 ← phi( main::@17/(byte*) SCREEN#6 ) (byte*) screen_fill::screen#0 ← (byte*) SCREEN#3 (byte) screen_fill::ch#0 ← (byte/signed byte/word/signed word/dword/signed dword) 16 call screen_fill - to:main::@13 -main::@13: scope:[main] from main::@12 + to:main::@19 +main::@19: scope:[main] from main::@18 + (signed word) rem16s#20 ← phi( main::@18/(signed word) rem16s#27 ) + (word) rem16u#28 ← phi( main::@18/(word) rem16u#36 ) (byte) main::i#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 to:main::@1 -main::@1: scope:[main] from main::@13 main::@15 - (byte) main::i#2 ← phi( main::@13/(byte) main::i#0 main::@15/(byte) main::i#1 ) +main::@1: scope:[main] from main::@19 main::@21 + (signed word) rem16s#15 ← phi( main::@19/(signed word) rem16s#20 main::@21/(signed word) rem16s#21 ) + (word) rem16u#21 ← phi( main::@19/(word) rem16u#28 main::@21/(word) rem16u#29 ) + (byte) main::i#2 ← phi( main::@19/(byte) main::i#0 main::@21/(byte) main::i#1 ) (byte) point_init::point_idx#0 ← (byte) main::i#2 call point_init - to:main::@14 -main::@14: scope:[main] from main::@1 + to:main::@20 +main::@20: scope:[main] from main::@1 (byte) main::i#3 ← phi( main::@1/(byte) main::i#2 ) + (signed word) rem16s#10 ← phi( main::@1/(signed word) rem16s#7 ) + (word) rem16u#15 ← phi( main::@1/(word) rem16u#8 ) + (word) rem16u#5 ← (word) rem16u#15 + (signed word) rem16s#4 ← (signed word) rem16s#10 (byte~) main::$9 ← (byte) main::i#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 (word) bitmap_plot::x#0 ← *((word[4]) x_start#0 + (byte) main::i#3) (byte) bitmap_plot::y#0 ← *((byte[4]) y_start#0 + (byte~) main::$9) call bitmap_plot - to:main::@15 -main::@15: scope:[main] from main::@14 - (byte) main::i#4 ← phi( main::@14/(byte) main::i#3 ) + to:main::@21 +main::@21: scope:[main] from main::@20 + (signed word) rem16s#21 ← phi( main::@20/(signed word) rem16s#4 ) + (word) rem16u#29 ← phi( main::@20/(word) rem16u#5 ) + (byte) main::i#4 ← phi( main::@20/(byte) main::i#3 ) (byte) main::i#1 ← (byte) main::i#4 + (byte/signed byte/word/signed word/dword/signed dword) 2 (bool~) main::$11 ← (byte) main::i#1 != (byte/signed byte/word/signed word/dword/signed dword) 8 if((bool~) main::$11) goto main::@1 to:main::@2 -main::@2: scope:[main] from main::@15 main::@3 +main::@2: scope:[main] from main::@21 main::@7 + (signed word) rem16s#16 ← phi( main::@21/(signed word) rem16s#21 main::@7/(signed word) rem16s#22 ) + (word) rem16u#22 ← phi( main::@21/(word) rem16u#29 main::@7/(word) rem16u#30 ) if(true) goto main::@3 to:main::@return main::@3: scope:[main] from main::@2 + (signed word) rem16s#34 ← phi( main::@2/(signed word) rem16s#16 ) + (word) rem16u#46 ← phi( main::@2/(word) rem16u#22 ) + to:main::@5 +main::@5: scope:[main] from main::@3 main::@6 + (signed word) rem16s#28 ← phi( main::@3/(signed word) rem16s#34 main::@6/(signed word) rem16s#35 ) + (word) rem16u#37 ← phi( main::@3/(word) rem16u#46 main::@6/(word) rem16u#47 ) + (bool~) main::$12 ← *((byte*) RASTER#0) != (byte/word/signed word/dword/signed dword) 255 + if((bool~) main::$12) goto main::@6 + to:main::@7 +main::@6: scope:[main] from main::@5 + (signed word) rem16s#35 ← phi( main::@5/(signed word) rem16s#28 ) + (word) rem16u#47 ← phi( main::@5/(word) rem16u#37 ) + to:main::@5 +main::@7: scope:[main] from main::@5 + (signed word) rem16s#22 ← phi( main::@5/(signed word) rem16s#28 ) + (word) rem16u#30 ← phi( main::@5/(word) rem16u#37 ) *((byte*) BORDERCOL#0) ← ++ *((byte*) BORDERCOL#0) to:main::@2 main::@return: scope:[main] from main::@2 + (signed word) rem16s#11 ← phi( main::@2/(signed word) rem16s#16 ) + (word) rem16u#16 ← phi( main::@2/(word) rem16u#22 ) + (word) rem16u#6 ← (word) rem16u#16 + (signed word) rem16s#5 ← (signed word) rem16s#11 return to:@return point_init: scope:[point_init] from main::@1 + (signed word) rem16s#37 ← phi( main::@1/(signed word) rem16s#15 ) + (word) rem16u#49 ← phi( main::@1/(word) rem16u#21 ) (byte) point_init::point_idx#1 ← phi( main::@1/(byte) point_init::point_idx#0 ) - (word~) point_init::$0 ← *((word[4]) x_start#0 + (byte) point_init::point_idx#1) << (byte/signed byte/word/signed word/dword/signed dword) 4 - *((word[4]) x_cur#0 + (byte) point_init::point_idx#1) ← (word~) point_init::$0 - (byte~) point_init::$1 ← (byte) point_init::point_idx#1 >> (byte/signed byte/word/signed word/dword/signed dword) 1 - (word~) point_init::$2 ← ((word)) *((byte[4]) y_start#0 + (byte~) point_init::$1) - (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 - *((word[4]) y_cur#0 + (byte) point_init::point_idx#1) ← (word~) point_init::$3 - (byte~) point_init::$4 ← (byte) point_init::point_idx#1 >> (byte/signed byte/word/signed word/dword/signed dword) 1 - *((byte[4]) delay#0 + (byte~) point_init::$4) ← (byte) DELAY#0 + (byte~) point_init::$0 ← (byte) point_init::point_idx#1 >> (byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) point_init::point_idx1#0 ← (byte~) point_init::$0 + (signed word~) point_init::$1 ← ((signed word)) *((word[4]) x_end#0 + (byte) point_init::point_idx#1) + (signed word~) point_init::$2 ← ((signed word)) *((word[4]) x_start#0 + (byte) point_init::point_idx#1) + (signed word~) point_init::$3 ← (signed word~) point_init::$1 - (signed word~) point_init::$2 + (signed word) point_init::x_diff#0 ← (signed word~) point_init::$3 + (signed word~) point_init::$4 ← ((signed word)) *((byte[4]) y_end#0 + (byte) point_init::point_idx1#0) + (signed word~) point_init::$5 ← ((signed word)) *((byte[4]) y_start#0 + (byte) point_init::point_idx1#0) + (signed word~) point_init::$6 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 + (signed word) point_init::y_diff#0 ← (signed word~) point_init::$6 + (signed word) point_init::abs16s1_w#0 ← (signed word) point_init::x_diff#0 + to:point_init::abs16s1 +point_init::abs16s1: scope:[point_init] from point_init + (signed word) rem16s#45 ← phi( point_init/(signed word) rem16s#37 ) + (word) rem16u#58 ← phi( point_init/(word) rem16u#49 ) + (byte) point_init::point_idx#13 ← phi( point_init/(byte) point_init::point_idx#1 ) + (signed word) point_init::x_diff#13 ← phi( point_init/(signed word) point_init::x_diff#0 ) + (signed word) point_init::y_diff#9 ← phi( point_init/(signed word) point_init::y_diff#0 ) + (signed word) point_init::abs16s1_w#1 ← phi( point_init/(signed word) point_init::abs16s1_w#0 ) + (bool) point_init::abs16s1_$0#0 ← (signed word) point_init::abs16s1_w#1 < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool) point_init::abs16s1_$0#0) goto point_init::abs16s1_@1 + to:point_init::abs16s1_@3 +point_init::abs16s1_@1: scope:[point_init] from point_init::abs16s1 + (signed word) rem16s#42 ← phi( point_init::abs16s1/(signed word) rem16s#45 ) + (word) rem16u#55 ← phi( point_init::abs16s1/(word) rem16u#58 ) + (byte) point_init::point_idx#9 ← phi( point_init::abs16s1/(byte) point_init::point_idx#13 ) + (signed word) point_init::x_diff#9 ← phi( point_init::abs16s1/(signed word) point_init::x_diff#13 ) + (signed word) point_init::y_diff#6 ← phi( point_init::abs16s1/(signed word) point_init::y_diff#9 ) + (signed word) point_init::abs16s1_w#2 ← phi( point_init::abs16s1/(signed word) point_init::abs16s1_w#1 ) + (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::abs16s1_w#2 + (word) point_init::abs16s1_$3#0 ← ((word)) (signed word) point_init::abs16s1_$2#0 + (word) point_init::abs16s1_return#0 ← (word) point_init::abs16s1_$3#0 + to:point_init::abs16s1_@return +point_init::abs16s1_@3: scope:[point_init] from point_init::abs16s1 + (signed word) rem16s#43 ← phi( point_init::abs16s1/(signed word) rem16s#45 ) + (word) rem16u#56 ← phi( point_init::abs16s1/(word) rem16u#58 ) + (byte) point_init::point_idx#10 ← phi( point_init::abs16s1/(byte) point_init::point_idx#13 ) + (signed word) point_init::x_diff#10 ← phi( point_init::abs16s1/(signed word) point_init::x_diff#13 ) + (signed word) point_init::y_diff#7 ← phi( point_init::abs16s1/(signed word) point_init::y_diff#9 ) + (signed word) point_init::abs16s1_w#3 ← phi( point_init::abs16s1/(signed word) point_init::abs16s1_w#1 ) + (word) point_init::abs16s1_$1#0 ← ((word)) (signed word) point_init::abs16s1_w#3 + (word) point_init::abs16s1_return#1 ← (word) point_init::abs16s1_$1#0 + to:point_init::abs16s1_@return +point_init::abs16s1_@return: scope:[point_init] from point_init::abs16s1_@1 point_init::abs16s1_@3 + (signed word) rem16s#40 ← phi( point_init::abs16s1_@1/(signed word) rem16s#42 point_init::abs16s1_@3/(signed word) rem16s#43 ) + (word) rem16u#53 ← phi( point_init::abs16s1_@1/(word) rem16u#55 point_init::abs16s1_@3/(word) rem16u#56 ) + (byte) point_init::point_idx#7 ← phi( point_init::abs16s1_@1/(byte) point_init::point_idx#9 point_init::abs16s1_@3/(byte) point_init::point_idx#10 ) + (signed word) point_init::x_diff#7 ← phi( point_init::abs16s1_@1/(signed word) point_init::x_diff#9 point_init::abs16s1_@3/(signed word) point_init::x_diff#10 ) + (signed word) point_init::y_diff#3 ← phi( point_init::abs16s1_@1/(signed word) point_init::y_diff#6 point_init::abs16s1_@3/(signed word) point_init::y_diff#7 ) + (word) point_init::abs16s1_return#3 ← phi( point_init::abs16s1_@1/(word) point_init::abs16s1_return#0 point_init::abs16s1_@3/(word) point_init::abs16s1_return#1 ) + (word) point_init::abs16s1_return#2 ← (word) point_init::abs16s1_return#3 + to:point_init::@9 +point_init::@9: scope:[point_init] from point_init::abs16s1_@return + (signed word) rem16s#38 ← phi( point_init::abs16s1_@return/(signed word) rem16s#40 ) + (word) rem16u#50 ← phi( point_init::abs16s1_@return/(word) rem16u#53 ) + (byte) point_init::point_idx#6 ← phi( point_init::abs16s1_@return/(byte) point_init::point_idx#7 ) + (signed word) point_init::x_diff#4 ← phi( point_init::abs16s1_@return/(signed word) point_init::x_diff#7 ) + (signed word) point_init::y_diff#1 ← phi( point_init::abs16s1_@return/(signed word) point_init::y_diff#3 ) + (word) point_init::abs16s1_return#4 ← phi( point_init::abs16s1_@return/(word) point_init::abs16s1_return#2 ) + (word~) point_init::$7 ← (word) point_init::abs16s1_return#4 + (signed word) point_init::abs16s2_w#0 ← (signed word) point_init::y_diff#1 + to:point_init::abs16s2 +point_init::abs16s2: scope:[point_init] from point_init::@9 + (signed word) point_init::y_diff#14 ← phi( point_init::@9/(signed word) point_init::y_diff#1 ) + (byte) point_init::point_idx#14 ← phi( point_init::@9/(byte) point_init::point_idx#6 ) + (signed word) rem16s#36 ← phi( point_init::@9/(signed word) rem16s#38 ) + (word) rem16u#48 ← phi( point_init::@9/(word) rem16u#50 ) + (signed word) point_init::x_diff#14 ← phi( point_init::@9/(signed word) point_init::x_diff#4 ) + (signed word) point_init::abs16s2_w#1 ← phi( point_init::@9/(signed word) point_init::abs16s2_w#0 ) + (bool) point_init::abs16s2_$0#0 ← (signed word) point_init::abs16s2_w#1 < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool) point_init::abs16s2_$0#0) goto point_init::abs16s2_@1 + to:point_init::abs16s2_@3 +point_init::abs16s2_@1: scope:[point_init] from point_init::abs16s2 + (signed word) point_init::y_diff#12 ← phi( point_init::abs16s2/(signed word) point_init::y_diff#14 ) + (byte) point_init::point_idx#11 ← phi( point_init::abs16s2/(byte) point_init::point_idx#14 ) + (signed word) rem16s#29 ← phi( point_init::abs16s2/(signed word) rem16s#36 ) + (word) rem16u#38 ← phi( point_init::abs16s2/(word) rem16u#48 ) + (signed word) point_init::x_diff#11 ← phi( point_init::abs16s2/(signed word) point_init::x_diff#14 ) + (signed word) point_init::abs16s2_w#2 ← phi( point_init::abs16s2/(signed word) point_init::abs16s2_w#1 ) + (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::abs16s2_w#2 + (word) point_init::abs16s2_$3#0 ← ((word)) (signed word) point_init::abs16s2_$2#0 + (word) point_init::abs16s2_return#0 ← (word) point_init::abs16s2_$3#0 + to:point_init::abs16s2_@return +point_init::abs16s2_@3: scope:[point_init] from point_init::abs16s2 + (signed word) point_init::y_diff#13 ← phi( point_init::abs16s2/(signed word) point_init::y_diff#14 ) + (byte) point_init::point_idx#12 ← phi( point_init::abs16s2/(byte) point_init::point_idx#14 ) + (signed word) rem16s#30 ← phi( point_init::abs16s2/(signed word) rem16s#36 ) + (word) rem16u#39 ← phi( point_init::abs16s2/(word) rem16u#48 ) + (signed word) point_init::x_diff#12 ← phi( point_init::abs16s2/(signed word) point_init::x_diff#14 ) + (signed word) point_init::abs16s2_w#3 ← phi( point_init::abs16s2/(signed word) point_init::abs16s2_w#1 ) + (word) point_init::abs16s2_$1#0 ← ((word)) (signed word) point_init::abs16s2_w#3 + (word) point_init::abs16s2_return#1 ← (word) point_init::abs16s2_$1#0 + to:point_init::abs16s2_@return +point_init::abs16s2_@return: scope:[point_init] from point_init::abs16s2_@1 point_init::abs16s2_@3 + (signed word) point_init::y_diff#11 ← phi( point_init::abs16s2_@1/(signed word) point_init::y_diff#12 point_init::abs16s2_@3/(signed word) point_init::y_diff#13 ) + (byte) point_init::point_idx#8 ← phi( point_init::abs16s2_@1/(byte) point_init::point_idx#11 point_init::abs16s2_@3/(byte) point_init::point_idx#12 ) + (signed word) rem16s#23 ← phi( point_init::abs16s2_@1/(signed word) rem16s#29 point_init::abs16s2_@3/(signed word) rem16s#30 ) + (word) rem16u#31 ← phi( point_init::abs16s2_@1/(word) rem16u#38 point_init::abs16s2_@3/(word) rem16u#39 ) + (signed word) point_init::x_diff#8 ← phi( point_init::abs16s2_@1/(signed word) point_init::x_diff#11 point_init::abs16s2_@3/(signed word) point_init::x_diff#12 ) + (word) point_init::abs16s2_return#3 ← phi( point_init::abs16s2_@1/(word) point_init::abs16s2_return#0 point_init::abs16s2_@3/(word) point_init::abs16s2_return#1 ) + (word) point_init::abs16s2_return#2 ← (word) point_init::abs16s2_return#3 + to:point_init::@10 +point_init::@10: scope:[point_init] from point_init::abs16s2_@return + (signed word) point_init::y_diff#10 ← phi( point_init::abs16s2_@return/(signed word) point_init::y_diff#11 ) + (byte) point_init::point_idx#5 ← phi( point_init::abs16s2_@return/(byte) point_init::point_idx#8 ) + (signed word) rem16s#18 ← phi( point_init::abs16s2_@return/(signed word) rem16s#23 ) + (word) rem16u#24 ← phi( point_init::abs16s2_@return/(word) rem16u#31 ) + (signed word) point_init::x_diff#3 ← phi( point_init::abs16s2_@return/(signed word) point_init::x_diff#8 ) + (word) point_init::abs16s2_return#4 ← phi( point_init::abs16s2_@return/(word) point_init::abs16s2_return#2 ) + (word~) point_init::$8 ← (word) point_init::abs16s2_return#4 + (bool~) point_init::$9 ← (word~) point_init::$7 > (word~) point_init::$8 + if((bool~) point_init::$9) goto point_init::@1 to:point_init::@return -point_init::@return: scope:[point_init] from point_init +point_init::@1: scope:[point_init] from point_init point_init::@10 point_init::@9 + (signed word) rem16s#31 ← phi( point_init/(signed word) rem16s#37 point_init::@10/(signed word) rem16s#18 point_init::@9/(signed word) rem16s#38 ) + (word) rem16u#40 ← phi( point_init/(word) rem16u#49 point_init::@10/(word) rem16u#24 point_init::@9/(word) rem16u#50 ) + (signed word) point_init::y_diff#8 ← phi( point_init/(signed word) point_init::y_diff#0 point_init::@10/(signed word) point_init::y_diff#10 point_init::@9/(signed word) point_init::y_diff#1 ) + (byte) point_init::point_idx#4 ← phi( point_init/(byte) point_init::point_idx#1 point_init::@10/(byte) point_init::point_idx#5 point_init::@9/(byte) point_init::point_idx#6 ) + (signed word) point_init::x_diff#1 ← phi( point_init/(signed word) point_init::x_diff#0 point_init::@10/(signed word) point_init::x_diff#3 point_init::@9/(signed word) point_init::x_diff#4 ) + (bool~) point_init::$10 ← (signed word) point_init::x_diff#1 < (byte/signed byte/word/signed word/dword/signed dword) 0 + if((bool~) point_init::$10) goto point_init::@3 + to:point_init::@7 +point_init::@3: scope:[point_init] from point_init::@1 + (signed word) rem16s#24 ← phi( point_init::@1/(signed word) rem16s#31 ) + (word) rem16u#32 ← phi( point_init::@1/(word) rem16u#40 ) + (signed word) point_init::y_diff#4 ← phi( point_init::@1/(signed word) point_init::y_diff#8 ) + (signed word) point_init::x_diff#5 ← phi( point_init::@1/(signed word) point_init::x_diff#1 ) + (byte) point_init::point_idx#2 ← phi( point_init::@1/(byte) point_init::point_idx#4 ) + (signed byte/signed word/signed dword~) point_init::$11 ← - (byte/signed byte/word/signed word/dword/signed dword) 16 + *((signed byte[4]) x_add#0 + (byte) point_init::point_idx#2) ← (signed byte/signed word/signed dword~) point_init::$11 + to:point_init::@4 +point_init::@7: scope:[point_init] from point_init::@1 + (signed word) rem16s#25 ← phi( point_init::@1/(signed word) rem16s#31 ) + (word) rem16u#33 ← phi( point_init::@1/(word) rem16u#40 ) + (signed word) point_init::y_diff#5 ← phi( point_init::@1/(signed word) point_init::y_diff#8 ) + (signed word) point_init::x_diff#6 ← phi( point_init::@1/(signed word) point_init::x_diff#1 ) + (byte) point_init::point_idx#3 ← phi( point_init::@1/(byte) point_init::point_idx#4 ) + *((signed byte[4]) x_add#0 + (byte) point_init::point_idx#3) ← (byte/signed byte/word/signed word/dword/signed dword) 16 + to:point_init::@4 +point_init::@4: scope:[point_init] from point_init::@3 point_init::@7 + (signed word) rem16s#17 ← phi( point_init::@3/(signed word) rem16s#24 point_init::@7/(signed word) rem16s#25 ) + (word) rem16u#23 ← phi( point_init::@3/(word) rem16u#32 point_init::@7/(word) rem16u#33 ) + (signed word) point_init::y_diff#2 ← phi( point_init::@3/(signed word) point_init::y_diff#4 point_init::@7/(signed word) point_init::y_diff#5 ) + (signed word) point_init::x_diff#2 ← phi( point_init::@3/(signed word) point_init::x_diff#5 point_init::@7/(signed word) point_init::x_diff#6 ) + (signed word) divr16s::dividend#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#2 + (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#2 + call divr16s + (signed word) divr16s::return#3 ← (signed word) divr16s::return#2 + to:point_init::@11 +point_init::@11: scope:[point_init] from point_init::@4 + (signed word) rem16s#12 ← phi( point_init::@4/(signed word) rem16s#3 ) + (word) rem16u#17 ← phi( point_init::@4/(word) rem16u#4 ) + (word) rem16u#7 ← (word) rem16u#17 + (signed word) rem16s#6 ← (signed word) rem16s#12 + to:point_init::@return +point_init::@return: scope:[point_init] from point_init::@10 point_init::@11 + (signed word) rem16s#13 ← phi( point_init::@10/(signed word) rem16s#18 point_init::@11/(signed word) rem16s#6 ) + (word) rem16u#18 ← phi( point_init::@10/(word) rem16u#24 point_init::@11/(word) rem16u#7 ) + (word) rem16u#8 ← (word) rem16u#18 + (signed word) rem16s#7 ← (signed word) rem16s#13 return to:@return -screen_fill: scope:[screen_fill] from main::@12 - (byte*) screen_fill::screen#4 ← phi( main::@12/(byte*) screen_fill::screen#0 ) - (byte) screen_fill::ch#3 ← phi( main::@12/(byte) screen_fill::ch#0 ) +screen_fill: scope:[screen_fill] from main::@18 + (byte*) screen_fill::screen#4 ← phi( main::@18/(byte*) screen_fill::screen#0 ) + (byte) screen_fill::ch#3 ← phi( main::@18/(byte) screen_fill::ch#0 ) (byte) screen_fill::y#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 to:screen_fill::@1 screen_fill::@1: scope:[screen_fill] from screen_fill screen_fill::@3 @@ -1077,15 +2332,17 @@ screen_fill::@3: scope:[screen_fill] from screen_fill::@2 screen_fill::@return: scope:[screen_fill] from screen_fill::@3 return to:@return -@6: scope:[] from @3 - (byte*) BITMAP#11 ← phi( @3/(byte*) BITMAP#0 ) - (byte*) SCREEN#9 ← phi( @3/(byte*) SCREEN#0 ) +@15: scope:[] from @11 + (byte*) BITMAP#11 ← phi( @11/(byte*) BITMAP#0 ) + (signed word) rem16s#26 ← phi( @11/(signed word) rem16s#32 ) + (word) rem16u#34 ← phi( @11/(word) rem16u#41 ) + (byte*) SCREEN#9 ← phi( @11/(byte*) SCREEN#0 ) (byte[256]) bitmap_plot_ylo#0 ← { fill( 256, 0) } (byte[256]) bitmap_plot_yhi#0 ← { fill( 256, 0) } (byte[256]) bitmap_plot_bit#0 ← { fill( 256, 0) } - to:@9 -bitmap_init: scope:[bitmap_init] from main::@10 - (byte*) bitmap_init::bitmap#5 ← phi( main::@10/(byte*) bitmap_init::bitmap#0 ) + to:@18 +bitmap_init: scope:[bitmap_init] from main::@16 + (byte*) bitmap_init::bitmap#5 ← phi( main::@16/(byte*) bitmap_init::bitmap#0 ) (byte) bitmap_init::bits#0 ← (byte/word/signed word/dword/signed dword) 128 (byte) bitmap_init::x#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 to:bitmap_init::@1 @@ -1148,7 +2405,7 @@ bitmap_init::@7: scope:[bitmap_init] from bitmap_init::@3 bitmap_init::@return: scope:[bitmap_init] from bitmap_init::@4 return to:@return -bitmap_clear: scope:[bitmap_clear] from main::@11 +bitmap_clear: scope:[bitmap_clear] from main::@17 (byte*~) bitmap_clear::$0 ← ((byte*)) { *((byte[256]) bitmap_plot_yhi#0 + (byte/signed byte/word/signed word/dword/signed dword) 0), *((byte[256]) bitmap_plot_ylo#0 + (byte/signed byte/word/signed word/dword/signed dword) 0) } (byte*) bitmap_clear::bitmap#0 ← (byte*~) bitmap_clear::$0 (byte) bitmap_clear::y#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 @@ -1178,9 +2435,9 @@ bitmap_clear::@3: scope:[bitmap_clear] from bitmap_clear::@2 bitmap_clear::@return: scope:[bitmap_clear] from bitmap_clear::@3 return to:@return -bitmap_plot: scope:[bitmap_plot] from main::@14 - (word) bitmap_plot::x#1 ← phi( main::@14/(word) bitmap_plot::x#0 ) - (byte) bitmap_plot::y#1 ← phi( main::@14/(byte) bitmap_plot::y#0 ) +bitmap_plot: scope:[bitmap_plot] from main::@20 + (word) bitmap_plot::x#1 ← phi( main::@20/(word) bitmap_plot::x#0 ) + (byte) bitmap_plot::y#1 ← phi( main::@20/(byte) bitmap_plot::y#0 ) (byte*~) bitmap_plot::$0 ← ((byte*)) { *((byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#1), *((byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#1) } (byte*) bitmap_plot::plotter#0 ← (byte*~) bitmap_plot::$0 (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#1 & (word/dword/signed dword) 65528 @@ -1191,19 +2448,27 @@ bitmap_plot: scope:[bitmap_plot] from main::@14 bitmap_plot::@return: scope:[bitmap_plot] from bitmap_plot return to:@return -@9: scope:[] from @6 - (byte*) BITMAP#10 ← phi( @6/(byte*) BITMAP#11 ) - (byte*) SCREEN#4 ← phi( @6/(byte*) SCREEN#9 ) +@18: scope:[] from @15 + (byte*) BITMAP#10 ← phi( @15/(byte*) BITMAP#11 ) + (signed word) rem16s#19 ← phi( @15/(signed word) rem16s#26 ) + (word) rem16u#25 ← phi( @15/(word) rem16u#34 ) + (byte*) SCREEN#4 ← phi( @15/(byte*) SCREEN#9 ) call main - to:@10 -@10: scope:[] from @9 + to:@19 +@19: scope:[] from @18 + (signed word) rem16s#14 ← phi( @18/(signed word) rem16s#5 ) + (word) rem16u#19 ← phi( @18/(word) rem16u#6 ) + (word) rem16u#9 ← (word) rem16u#19 + (signed word) rem16s#8 ← (signed word) rem16s#14 to:@end -@end: scope:[] from @10 +@end: scope:[] from @19 SYMBOL TABLE SSA -(label) @10 -(label) @3 -(label) @6 +(label) @11 +(label) @15 +(label) @18 +(label) @19 +(label) @5 (label) @9 (label) @begin (label) @end @@ -1230,8 +2495,6 @@ SYMBOL TABLE SSA (byte*) D011#0 (byte*) D018 (byte*) D018#0 -(byte) DELAY -(byte) DELAY#0 (byte*) PROCPORT (byte*) PROCPORT#0 (byte*) PROCPORT_DDR @@ -1240,6 +2503,8 @@ SYMBOL TABLE SSA (byte) PROCPORT_DDR_MEMORY_MASK#0 (byte) PROCPORT_RAM_IO (byte) PROCPORT_RAM_IO#0 +(byte*) RASTER +(byte*) RASTER#0 (byte*) SCREEN (byte*) SCREEN#0 (byte*) SCREEN#1 @@ -1358,25 +2623,192 @@ SYMBOL TABLE SSA (byte[256]) bitmap_plot_yhi#0 (byte[256]) bitmap_plot_ylo (byte[256]) bitmap_plot_ylo#0 -(byte[4]) delay -(byte[4]) delay#0 +(signed word()) divr16s((signed word) divr16s::dividend , (signed word) divr16s::divisor , (signed word) divr16s::rem) +(bool~) divr16s::$0 +(bool~) divr16s::$1 +(word~) divr16s::$10 +(signed word~) divr16s::$11 +(word~) divr16s::$12 +(byte/word/dword~) divr16s::$13 +(word~) divr16s::$14 +(bool~) divr16s::$15 +(signed word~) divr16s::$16 +(signed word~) divr16s::$17 +(signed word~) divr16s::$18 +(signed word~) divr16s::$19 +(bool~) divr16s::$2 +(signed word~) divr16s::$20 +(signed word~) divr16s::$21 +(word~) divr16s::$3 +(word~) divr16s::$4 +(signed word~) divr16s::$5 +(word~) divr16s::$6 +(signed word~) divr16s::$7 +(word~) divr16s::$8 +(bool~) divr16s::$9 +(label) divr16s::@1 +(label) divr16s::@11 +(label) divr16s::@15 +(label) divr16s::@2 +(label) divr16s::@3 +(label) divr16s::@4 +(label) divr16s::@5 +(label) divr16s::@7 +(label) divr16s::@9 +(label) divr16s::@return +(signed word) divr16s::dividend +(signed word) divr16s::dividend#0 +(signed word) divr16s::dividend#1 +(signed word) divr16s::dividend#2 +(signed word) divr16s::dividend#3 +(word) divr16s::dividendu +(word) divr16s::dividendu#0 +(word) divr16s::dividendu#1 +(word) divr16s::dividendu#2 +(word) divr16s::dividendu#3 +(word) divr16s::dividendu#4 +(word) divr16s::dividendu#5 +(word) divr16s::dividendu#6 +(signed word) divr16s::divisor +(signed word) divr16s::divisor#0 +(signed word) divr16s::divisor#1 +(signed word) divr16s::divisor#2 +(signed word) divr16s::divisor#3 +(signed word) divr16s::divisor#4 +(signed word) divr16s::divisor#5 +(signed word) divr16s::divisor#6 +(word) divr16s::divisoru +(word) divr16s::divisoru#0 +(word) divr16s::divisoru#1 +(word) divr16s::divisoru#2 +(word) divr16s::divisoru#3 +(byte) divr16s::neg +(byte) divr16s::neg#0 +(byte) divr16s::neg#1 +(byte) divr16s::neg#2 +(byte) divr16s::neg#3 +(byte) divr16s::neg#4 +(byte) divr16s::neg#5 +(byte) divr16s::neg#6 +(byte) divr16s::neg#7 +(byte) divr16s::neg#8 +(signed word) divr16s::rem +(signed word) divr16s::rem#0 +(signed word) divr16s::rem#1 +(signed word) divr16s::rem#2 +(signed word) divr16s::rem#3 +(word) divr16s::remu +(word) divr16s::remu#0 +(word) divr16s::remu#1 +(word) divr16s::remu#2 +(word) divr16s::remu#3 +(word) divr16s::remu#4 +(word) divr16s::remu#5 +(word) divr16s::remu#6 +(word) divr16s::resultu +(word) divr16s::resultu#0 +(word) divr16s::resultu#1 +(word) divr16s::resultu#2 +(signed word) divr16s::return +(signed word) divr16s::return#0 +(signed word) divr16s::return#1 +(signed word) divr16s::return#2 +(signed word) divr16s::return#3 +(signed word) divr16s::return#4 +(word()) divr16u((word) divr16u::dividend , (word) divr16u::divisor , (word) divr16u::rem) +(word~) divr16u::$0 +(byte~) divr16u::$1 +(word~) divr16u::$10 +(bool~) divr16u::$11 +(byte~) divr16u::$2 +(bool~) divr16u::$3 +(bool~) divr16u::$4 +(word/dword~) divr16u::$5 +(word~) divr16u::$6 +(word~) divr16u::$7 +(bool~) divr16u::$8 +(bool~) divr16u::$9 +(label) divr16u::@1 +(label) divr16u::@2 +(label) divr16u::@3 +(label) divr16u::@4 +(label) divr16u::@5 +(label) divr16u::@6 +(label) divr16u::@return +(word) divr16u::dividend +(word) divr16u::dividend#0 +(word) divr16u::dividend#1 +(word) divr16u::dividend#2 +(word) divr16u::dividend#3 +(word) divr16u::dividend#4 +(word) divr16u::dividend#5 +(word) divr16u::dividend#6 +(word) divr16u::dividend#7 +(word) divr16u::divisor +(word) divr16u::divisor#0 +(word) divr16u::divisor#1 +(word) divr16u::divisor#2 +(word) divr16u::divisor#3 +(word) divr16u::divisor#4 +(word) divr16u::divisor#5 +(word) divr16u::divisor#6 +(byte) divr16u::i +(byte) divr16u::i#0 +(byte) divr16u::i#1 +(byte) divr16u::i#2 +(byte) divr16u::i#3 +(byte) divr16u::i#4 +(byte) divr16u::i#5 +(byte) divr16u::i#6 +(word) divr16u::quotient +(word) divr16u::quotient#0 +(word) divr16u::quotient#1 +(word) divr16u::quotient#2 +(word) divr16u::quotient#3 +(word) divr16u::quotient#4 +(word) divr16u::quotient#5 +(word) divr16u::quotient#6 +(word) divr16u::quotient#7 +(word) divr16u::quotient#8 +(word) divr16u::rem +(word) divr16u::rem#0 +(word) divr16u::rem#1 +(word) divr16u::rem#10 +(word) divr16u::rem#2 +(word) divr16u::rem#3 +(word) divr16u::rem#4 +(word) divr16u::rem#5 +(word) divr16u::rem#6 +(word) divr16u::rem#7 +(word) divr16u::rem#8 +(word) divr16u::rem#9 +(word) divr16u::return +(word) divr16u::return#0 +(word) divr16u::return#1 +(word) divr16u::return#2 +(word) divr16u::return#3 +(word) divr16u::return#4 (void()) main() (byte~) main::$0 (byte~) main::$1 (bool~) main::$11 +(bool~) main::$12 (byte/word/dword~) main::$2 (byte~) main::$4 (byte~) main::$9 (label) main::@1 -(label) main::@10 -(label) main::@11 -(label) main::@12 -(label) main::@13 -(label) main::@14 (label) main::@15 +(label) main::@16 +(label) main::@17 +(label) main::@18 +(label) main::@19 (label) main::@2 +(label) main::@20 +(label) main::@21 (label) main::@3 -(label) main::@9 +(label) main::@5 +(label) main::@6 +(label) main::@7 (label) main::@return (byte) main::i (byte) main::i#0 @@ -1441,15 +2873,241 @@ SYMBOL TABLE SSA (byte) main::vicSelectGfxBank1_toDd001_return#2 (byte) main::vicSelectGfxBank1_toDd001_return#3 (void()) point_init((byte) point_init::point_idx) -(word~) point_init::$0 -(byte~) point_init::$1 -(word~) point_init::$2 -(word~) point_init::$3 -(byte~) point_init::$4 +(byte~) point_init::$0 +(signed word~) point_init::$1 +(bool~) point_init::$10 +(signed byte/signed word/signed dword~) point_init::$11 +(signed word~) point_init::$2 +(signed word~) point_init::$3 +(signed word~) point_init::$4 +(signed word~) point_init::$5 +(signed word~) point_init::$6 +(word~) point_init::$7 +(word~) point_init::$8 +(bool~) point_init::$9 +(label) point_init::@1 +(label) point_init::@10 +(label) point_init::@11 +(label) point_init::@3 +(label) point_init::@4 +(label) point_init::@7 +(label) point_init::@9 (label) point_init::@return +(label) point_init::abs16s1 +(bool~) point_init::abs16s1_$0 +(bool) point_init::abs16s1_$0#0 +(word~) point_init::abs16s1_$1 +(word) point_init::abs16s1_$1#0 +(signed word~) point_init::abs16s1_$2 +(signed word) point_init::abs16s1_$2#0 +(word~) point_init::abs16s1_$3 +(word) point_init::abs16s1_$3#0 +(label) point_init::abs16s1_@1 +(label) point_init::abs16s1_@3 +(label) point_init::abs16s1_@return +(word) point_init::abs16s1_return +(word) point_init::abs16s1_return#0 +(word) point_init::abs16s1_return#1 +(word) point_init::abs16s1_return#2 +(word) point_init::abs16s1_return#3 +(word) point_init::abs16s1_return#4 +(signed word) point_init::abs16s1_w +(signed word) point_init::abs16s1_w#0 +(signed word) point_init::abs16s1_w#1 +(signed word) point_init::abs16s1_w#2 +(signed word) point_init::abs16s1_w#3 +(label) point_init::abs16s2 +(bool~) point_init::abs16s2_$0 +(bool) point_init::abs16s2_$0#0 +(word~) point_init::abs16s2_$1 +(word) point_init::abs16s2_$1#0 +(signed word~) point_init::abs16s2_$2 +(signed word) point_init::abs16s2_$2#0 +(word~) point_init::abs16s2_$3 +(word) point_init::abs16s2_$3#0 +(label) point_init::abs16s2_@1 +(label) point_init::abs16s2_@3 +(label) point_init::abs16s2_@return +(word) point_init::abs16s2_return +(word) point_init::abs16s2_return#0 +(word) point_init::abs16s2_return#1 +(word) point_init::abs16s2_return#2 +(word) point_init::abs16s2_return#3 +(word) point_init::abs16s2_return#4 +(signed word) point_init::abs16s2_w +(signed word) point_init::abs16s2_w#0 +(signed word) point_init::abs16s2_w#1 +(signed word) point_init::abs16s2_w#2 +(signed word) point_init::abs16s2_w#3 (byte) point_init::point_idx (byte) point_init::point_idx#0 (byte) point_init::point_idx#1 +(byte) point_init::point_idx#10 +(byte) point_init::point_idx#11 +(byte) point_init::point_idx#12 +(byte) point_init::point_idx#13 +(byte) point_init::point_idx#14 +(byte) point_init::point_idx#2 +(byte) point_init::point_idx#3 +(byte) point_init::point_idx#4 +(byte) point_init::point_idx#5 +(byte) point_init::point_idx#6 +(byte) point_init::point_idx#7 +(byte) point_init::point_idx#8 +(byte) point_init::point_idx#9 +(byte) point_init::point_idx1 +(byte) point_init::point_idx1#0 +(signed word) point_init::x_diff +(signed word) point_init::x_diff#0 +(signed word) point_init::x_diff#1 +(signed word) point_init::x_diff#10 +(signed word) point_init::x_diff#11 +(signed word) point_init::x_diff#12 +(signed word) point_init::x_diff#13 +(signed word) point_init::x_diff#14 +(signed word) point_init::x_diff#2 +(signed word) point_init::x_diff#3 +(signed word) point_init::x_diff#4 +(signed word) point_init::x_diff#5 +(signed word) point_init::x_diff#6 +(signed word) point_init::x_diff#7 +(signed word) point_init::x_diff#8 +(signed word) point_init::x_diff#9 +(signed word) point_init::y_diff +(signed word) point_init::y_diff#0 +(signed word) point_init::y_diff#1 +(signed word) point_init::y_diff#10 +(signed word) point_init::y_diff#11 +(signed word) point_init::y_diff#12 +(signed word) point_init::y_diff#13 +(signed word) point_init::y_diff#14 +(signed word) point_init::y_diff#2 +(signed word) point_init::y_diff#3 +(signed word) point_init::y_diff#4 +(signed word) point_init::y_diff#5 +(signed word) point_init::y_diff#6 +(signed word) point_init::y_diff#7 +(signed word) point_init::y_diff#8 +(signed word) point_init::y_diff#9 +(signed word) rem16s +(signed word) rem16s#0 +(signed word) rem16s#1 +(signed word) rem16s#10 +(signed word) rem16s#11 +(signed word) rem16s#12 +(signed word) rem16s#13 +(signed word) rem16s#14 +(signed word) rem16s#15 +(signed word) rem16s#16 +(signed word) rem16s#17 +(signed word) rem16s#18 +(signed word) rem16s#19 +(signed word) rem16s#2 +(signed word) rem16s#20 +(signed word) rem16s#21 +(signed word) rem16s#22 +(signed word) rem16s#23 +(signed word) rem16s#24 +(signed word) rem16s#25 +(signed word) rem16s#26 +(signed word) rem16s#27 +(signed word) rem16s#28 +(signed word) rem16s#29 +(signed word) rem16s#3 +(signed word) rem16s#30 +(signed word) rem16s#31 +(signed word) rem16s#32 +(signed word) rem16s#33 +(signed word) rem16s#34 +(signed word) rem16s#35 +(signed word) rem16s#36 +(signed word) rem16s#37 +(signed word) rem16s#38 +(signed word) rem16s#39 +(signed word) rem16s#4 +(signed word) rem16s#40 +(signed word) rem16s#41 +(signed word) rem16s#42 +(signed word) rem16s#43 +(signed word) rem16s#44 +(signed word) rem16s#45 +(signed word) rem16s#46 +(signed word) rem16s#47 +(signed word) rem16s#48 +(signed word) rem16s#49 +(signed word) rem16s#5 +(signed word) rem16s#50 +(signed word) rem16s#51 +(signed word) rem16s#6 +(signed word) rem16s#7 +(signed word) rem16s#8 +(signed word) rem16s#9 +(word) rem16u +(word) rem16u#0 +(word) rem16u#1 +(word) rem16u#10 +(word) rem16u#11 +(word) rem16u#12 +(word) rem16u#13 +(word) rem16u#14 +(word) rem16u#15 +(word) rem16u#16 +(word) rem16u#17 +(word) rem16u#18 +(word) rem16u#19 +(word) rem16u#2 +(word) rem16u#20 +(word) rem16u#21 +(word) rem16u#22 +(word) rem16u#23 +(word) rem16u#24 +(word) rem16u#25 +(word) rem16u#26 +(word) rem16u#27 +(word) rem16u#28 +(word) rem16u#29 +(word) rem16u#3 +(word) rem16u#30 +(word) rem16u#31 +(word) rem16u#32 +(word) rem16u#33 +(word) rem16u#34 +(word) rem16u#35 +(word) rem16u#36 +(word) rem16u#37 +(word) rem16u#38 +(word) rem16u#39 +(word) rem16u#4 +(word) rem16u#40 +(word) rem16u#41 +(word) rem16u#42 +(word) rem16u#43 +(word) rem16u#44 +(word) rem16u#45 +(word) rem16u#46 +(word) rem16u#47 +(word) rem16u#48 +(word) rem16u#49 +(word) rem16u#5 +(word) rem16u#50 +(word) rem16u#51 +(word) rem16u#52 +(word) rem16u#53 +(word) rem16u#54 +(word) rem16u#55 +(word) rem16u#56 +(word) rem16u#57 +(word) rem16u#58 +(word) rem16u#59 +(word) rem16u#6 +(word) rem16u#60 +(word) rem16u#61 +(word) rem16u#62 +(word) rem16u#63 +(word) rem16u#64 +(word) rem16u#7 +(word) rem16u#8 +(word) rem16u#9 (void()) screen_fill((byte*) screen_fill::screen , (byte) screen_fill::ch) (bool~) screen_fill::$0 (bool~) screen_fill::$1 @@ -1480,43 +3138,156 @@ SYMBOL TABLE SSA (byte) screen_fill::y#2 (byte) screen_fill::y#3 (byte) screen_fill::y#4 -(word[4]) x_cur -(word[4]) x_cur#0 +(signed byte[4]) x_add +(signed byte[4]) x_add#0 +(word[4]) x_end +(word[4]) x_end#0 (word[4]) x_start (word[4]) x_start#0 -(word[4]) y_cur -(word[4]) y_cur#0 +(byte[4]) y_end +(byte[4]) y_end#0 (byte[4]) y_start (byte[4]) y_start#0 OPTIMIZING CONTROL FLOW GRAPH -Culled Empty Block (label) @10 -Succesful SSA optimization Pass2CullEmptyBlocks +Inversing boolean not (bool~) divr16u::$4 ← (byte~) divr16u::$2 == (byte/signed byte/word/signed word/dword/signed dword) 0 from (bool~) divr16u::$3 ← (byte~) divr16u::$2 != (byte/signed byte/word/signed word/dword/signed dword) 0 +Inversing boolean not (bool~) divr16u::$9 ← (word) divr16u::rem#5 < (word) divr16u::divisor#1 from (bool~) divr16u::$8 ← (word) divr16u::rem#5 >= (word) divr16u::divisor#1 Inversing boolean not (bool~) bitmap_init::$1 ← (byte) bitmap_init::bits#1 != (byte/signed byte/word/signed word/dword/signed dword) 0 from (bool~) bitmap_init::$0 ← (byte) bitmap_init::bits#1 == (byte/signed byte/word/signed word/dword/signed dword) 0 Inversing boolean not (bool~) bitmap_init::$9 ← (byte~) bitmap_init::$7 != (byte/signed byte/word/signed word/dword/signed dword) 7 from (bool~) bitmap_init::$8 ← (byte~) bitmap_init::$7 == (byte/signed byte/word/signed word/dword/signed dword) 7 Succesful SSA optimization Pass2UnaryNotSimplification +Not aliassing across scopes: divr16u::rem#9 divr16u::rem#3 +Not aliassing across scopes: divr16u::dividend#4 divr16u::dividend#1 +Not aliassing across scopes: divr16u::divisor#5 divr16u::divisor#0 +Not aliassing across scopes: rem16u#1 divr16u::rem#8 +Not aliassing across scopes: divr16s::dividend#1 divr16s::dividend#0 +Not aliassing across scopes: divr16s::rem#1 divr16s::rem#0 +Not aliassing across scopes: divr16s::divisor#6 divr16s::divisor#0 +Not aliassing across scopes: rem16u#51 rem16u#23 +Not aliassing across scopes: divr16u::dividend#1 divr16s::dividendu#3 +Not aliassing across scopes: divr16u::divisor#0 divr16s::divisoru#3 +Not aliassing across scopes: divr16u::rem#3 divr16s::remu#3 +Not aliassing across scopes: divr16u::return#2 divr16u::return#1 +Not aliassing across scopes: rem16u#11 rem16u#2 +Not aliassing across scopes: divr16s::$14 divr16u::return#4 Not aliassing across scopes: SCREEN#1 SCREEN#4 Not aliassing across scopes: BITMAP#9 BITMAP#10 +Not aliassing across scopes: rem16u#64 rem16u#25 +Not aliassing across scopes: rem16s#51 rem16s#19 Not aliassing across scopes: main::vicSelectGfxBank1_gfx#0 SCREEN#1 Not aliassing across scopes: main::toD0181_screen#0 SCREEN#2 Not aliassing across scopes: main::toD0181_gfx#0 BITMAP#1 Not aliassing across scopes: bitmap_init::bitmap#0 BITMAP#2 Not aliassing across scopes: screen_fill::screen#0 SCREEN#3 Not aliassing across scopes: point_init::point_idx#0 main::i#2 +Not aliassing across scopes: rem16u#15 rem16u#8 +Not aliassing across scopes: rem16s#10 rem16s#7 Not aliassing across scopes: point_init::point_idx#1 point_init::point_idx#0 +Not aliassing across scopes: rem16u#49 rem16u#21 +Not aliassing across scopes: rem16s#37 rem16s#15 +Not aliassing across scopes: divr16s::divisor#0 point_init::x_diff#2 +Not aliassing across scopes: divr16s::rem#0 point_init::y_diff#2 +Not aliassing across scopes: divr16s::return#3 divr16s::return#2 +Not aliassing across scopes: rem16u#17 rem16u#4 +Not aliassing across scopes: rem16s#12 rem16s#3 Not aliassing across scopes: screen_fill::ch#3 screen_fill::ch#0 Not aliassing across scopes: screen_fill::screen#4 screen_fill::screen#0 Not aliassing across scopes: bitmap_init::bitmap#5 bitmap_init::bitmap#0 Not aliassing across scopes: bitmap_plot::y#1 bitmap_plot::y#0 Not aliassing across scopes: bitmap_plot::x#1 bitmap_plot::x#0 +Not aliassing across scopes: rem16u#19 rem16u#6 +Not aliassing across scopes: rem16s#14 rem16s#5 +Alias (word) divr16u::rem#0 = (word~) divr16u::$0 (word) divr16u::rem#6 +Alias (word) divr16u::dividend#0 = (word~) divr16u::$6 (word) divr16u::dividend#7 +Alias (word) divr16u::quotient#1 = (word~) divr16u::$7 (word) divr16u::quotient#4 +Alias (word) divr16u::dividend#2 = (word) divr16u::dividend#6 +Alias (word) divr16u::quotient#6 = (word) divr16u::quotient#7 +Alias (word) divr16u::divisor#3 = (word) divr16u::divisor#4 +Alias (byte) divr16u::i#5 = (byte) divr16u::i#6 +Alias (word) divr16u::rem#1 = (word/dword~) divr16u::$5 +Alias (word) divr16u::rem#5 = (word) divr16u::rem#7 +Alias (word) divr16u::divisor#1 = (word) divr16u::divisor#2 +Alias (byte) divr16u::i#3 = (byte) divr16u::i#4 +Alias (word) divr16u::rem#2 = (word~) divr16u::$10 +Alias (word) divr16u::rem#10 = (word) divr16u::rem#8 +Alias (word) divr16u::return#0 = (word) divr16u::quotient#5 (word) divr16u::quotient#8 (word) divr16u::return#3 (word) divr16u::return#1 +Alias (word) rem16u#1 = (word) rem16u#10 (word) rem16u#2 +Alias (word) rem16u#0 = (word) rem16u#44 (word) rem16u#41 (word) rem16u#34 (word) rem16u#25 +Alias (signed word) divr16s::dividend#1 = (signed word) divr16s::dividend#2 (signed word) divr16s::dividend#3 +Alias (signed word) divr16s::rem#1 = (signed word) divr16s::rem#2 (signed word) divr16s::rem#3 +Alias (signed word) divr16s::divisor#4 = (signed word) divr16s::divisor#6 (signed word) divr16s::divisor#5 +Alias (word) rem16u#42 = (word) rem16u#51 (word) rem16u#43 +Alias (word) divr16s::dividendu#1 = (word~) divr16s::$6 +Alias (word) divr16s::remu#1 = (word~) divr16s::$8 +Alias (byte) divr16s::neg#0 = (byte) divr16s::neg#7 +Alias (word) divr16s::dividendu#2 = (word~) divr16s::$3 +Alias (word) divr16s::remu#2 = (word~) divr16s::$4 +Alias (signed word) divr16s::divisor#1 = (signed word) divr16s::divisor#2 (signed word) divr16s::divisor#3 +Alias (byte) divr16s::neg#3 = (byte) divr16s::neg#5 (byte) divr16s::neg#8 +Alias (word) divr16s::dividendu#4 = (word) divr16s::dividendu#6 (word) divr16s::dividendu#5 +Alias (word) divr16s::remu#4 = (word) divr16s::remu#6 (word) divr16s::remu#5 +Alias (word) rem16u#26 = (word) rem16u#35 (word) rem16u#27 +Alias (word) divr16s::divisoru#1 = (word~) divr16s::$12 +Alias (byte) divr16s::neg#2 = (byte/word/dword~) divr16s::$13 +Alias (word) divr16s::divisoru#2 = (word~) divr16s::$10 +Alias (word) divr16u::return#2 = (word) divr16u::return#4 +Alias (byte) divr16s::neg#4 = (byte) divr16s::neg#6 +Alias (word) rem16u#11 = (word) rem16u#3 (word) rem16u#12 (word) rem16u#13 +Alias (word) divr16s::resultu#0 = (word~) divr16s::$14 (word) divr16s::resultu#1 (word) divr16s::resultu#2 +Alias (signed word) rem16s#1 = (signed word~) divr16s::$20 +Alias (signed word) divr16s::return#0 = (signed word~) divr16s::$21 +Alias (signed word) rem16s#2 = (signed word~) divr16s::$17 +Alias (signed word) divr16s::return#1 = (signed word~) divr16s::$19 +Alias (signed word) divr16s::return#2 = (signed word) divr16s::return#4 +Alias (word) rem16u#14 = (word) rem16u#4 +Alias (signed word) rem16s#3 = (signed word) rem16s#9 +Alias (signed word) rem16s#0 = (signed word) rem16s#32 (signed word) rem16s#26 (signed word) rem16s#19 Alias (byte*) main::vicSelectGfxBank1_gfx#0 = (byte*) main::vicSelectGfxBank1_gfx#1 (byte*) main::vicSelectGfxBank1_toDd001_gfx#0 (byte*) main::vicSelectGfxBank1_toDd001_gfx#1 Alias (byte*) SCREEN#1 = (byte*) SCREEN#12 (byte*) SCREEN#10 (byte*) SCREEN#7 (byte*) SCREEN#5 (byte*) SCREEN#2 (byte*) SCREEN#13 (byte*) SCREEN#11 (byte*) SCREEN#8 (byte*) SCREEN#6 (byte*) SCREEN#3 Alias (byte*) BITMAP#1 = (byte*) BITMAP#8 (byte*) BITMAP#9 (byte*) BITMAP#7 (byte*) BITMAP#5 (byte*) BITMAP#3 (byte*) BITMAP#6 (byte*) BITMAP#4 (byte*) BITMAP#2 +Alias (word) rem16u#28 = (word) rem16u#63 (word) rem16u#64 (word) rem16u#62 (word) rem16u#61 (word) rem16u#60 (word) rem16u#59 (word) rem16u#57 (word) rem16u#54 (word) rem16u#52 (word) rem16u#45 (word) rem16u#36 +Alias (signed word) rem16s#20 = (signed word) rem16s#50 (signed word) rem16s#51 (signed word) rem16s#49 (signed word) rem16s#48 (signed word) rem16s#47 (signed word) rem16s#46 (signed word) rem16s#44 (signed word) rem16s#41 (signed word) rem16s#39 (signed word) rem16s#33 (signed word) rem16s#27 Alias (byte) main::vicSelectGfxBank1_toDd001_return#0 = (byte/word/dword) main::vicSelectGfxBank1_toDd001_$3#0 (byte) main::vicSelectGfxBank1_toDd001_return#2 (byte) main::vicSelectGfxBank1_toDd001_return#1 (byte) main::vicSelectGfxBank1_toDd001_return#3 (byte) main::vicSelectGfxBank1_$0#0 Alias (byte*) main::toD0181_screen#0 = (byte*) main::toD0181_screen#1 Alias (byte*) main::toD0181_gfx#0 = (byte*) main::toD0181_gfx#1 Alias (byte) main::toD0181_return#0 = (byte) main::toD0181_$8#0 (byte) main::toD0181_return#2 (byte) main::toD0181_return#1 (byte) main::toD0181_return#3 (byte~) main::$4 Alias (byte) main::i#2 = (byte) main::i#3 (byte) main::i#4 +Alias (word) rem16u#15 = (word) rem16u#5 (word) rem16u#29 +Alias (signed word) rem16s#10 = (signed word) rem16s#4 (signed word) rem16s#21 +Alias (word) rem16u#16 = (word) rem16u#46 (word) rem16u#22 (word) rem16u#6 +Alias (signed word) rem16s#11 = (signed word) rem16s#34 (signed word) rem16s#16 (signed word) rem16s#5 +Alias (word) rem16u#30 = (word) rem16u#47 (word) rem16u#37 +Alias (signed word) rem16s#22 = (signed word) rem16s#35 (signed word) rem16s#28 +Alias (byte) point_init::point_idx1#0 = (byte~) point_init::$0 +Alias (signed word) point_init::abs16s1_w#0 = (signed word) point_init::x_diff#0 (signed word~) point_init::$3 (signed word) point_init::abs16s1_w#1 (signed word) point_init::x_diff#13 (signed word) point_init::abs16s1_w#2 (signed word) point_init::x_diff#9 (signed word) point_init::abs16s1_w#3 (signed word) point_init::x_diff#10 +Alias (signed word) point_init::y_diff#0 = (signed word~) point_init::$6 (signed word) point_init::y_diff#9 (signed word) point_init::y_diff#6 (signed word) point_init::y_diff#7 +Alias (byte) point_init::point_idx#1 = (byte) point_init::point_idx#13 (byte) point_init::point_idx#9 (byte) point_init::point_idx#10 +Alias (word) rem16u#49 = (word) rem16u#58 (word) rem16u#55 (word) rem16u#56 +Alias (signed word) rem16s#37 = (signed word) rem16s#45 (signed word) rem16s#42 (signed word) rem16s#43 +Alias (word) point_init::abs16s1_return#0 = (word) point_init::abs16s1_$3#0 +Alias (word) point_init::abs16s1_return#1 = (word) point_init::abs16s1_$1#0 +Alias (word) point_init::abs16s1_return#2 = (word) point_init::abs16s1_return#3 (word) point_init::abs16s1_return#4 (word~) point_init::$7 +Alias (signed word) point_init::y_diff#1 = (signed word) point_init::y_diff#3 (signed word) point_init::abs16s2_w#0 (signed word) point_init::abs16s2_w#1 (signed word) point_init::y_diff#14 (signed word) point_init::abs16s2_w#2 (signed word) point_init::y_diff#12 (signed word) point_init::abs16s2_w#3 (signed word) point_init::y_diff#13 +Alias (signed word) point_init::x_diff#11 = (signed word) point_init::x_diff#4 (signed word) point_init::x_diff#7 (signed word) point_init::x_diff#14 (signed word) point_init::x_diff#12 +Alias (byte) point_init::point_idx#11 = (byte) point_init::point_idx#6 (byte) point_init::point_idx#7 (byte) point_init::point_idx#14 (byte) point_init::point_idx#12 +Alias (word) rem16u#38 = (word) rem16u#50 (word) rem16u#53 (word) rem16u#48 (word) rem16u#39 +Alias (signed word) rem16s#29 = (signed word) rem16s#38 (signed word) rem16s#40 (signed word) rem16s#36 (signed word) rem16s#30 +Alias (word) point_init::abs16s2_return#0 = (word) point_init::abs16s2_$3#0 +Alias (word) point_init::abs16s2_return#1 = (word) point_init::abs16s2_$1#0 +Alias (word) point_init::abs16s2_return#2 = (word) point_init::abs16s2_return#3 (word) point_init::abs16s2_return#4 (word~) point_init::$8 +Alias (signed word) point_init::x_diff#3 = (signed word) point_init::x_diff#8 +Alias (word) rem16u#24 = (word) rem16u#31 +Alias (signed word) rem16s#18 = (signed word) rem16s#23 +Alias (byte) point_init::point_idx#5 = (byte) point_init::point_idx#8 +Alias (signed word) point_init::y_diff#10 = (signed word) point_init::y_diff#11 +Alias (byte) point_init::point_idx#2 = (byte) point_init::point_idx#4 (byte) point_init::point_idx#3 +Alias (signed word) point_init::x_diff#1 = (signed word) point_init::x_diff#5 (signed word) point_init::x_diff#6 +Alias (signed word) point_init::y_diff#4 = (signed word) point_init::y_diff#8 (signed word) point_init::y_diff#5 +Alias (word) rem16u#32 = (word) rem16u#40 (word) rem16u#33 +Alias (signed word) rem16s#24 = (signed word) rem16s#31 (signed word) rem16s#25 +Alias (word) rem16u#17 = (word) rem16u#7 +Alias (signed word) rem16s#12 = (signed word) rem16s#6 +Alias (word) rem16u#18 = (word) rem16u#8 +Alias (signed word) rem16s#13 = (signed word) rem16s#7 Alias (byte) screen_fill::y#2 = (byte) screen_fill::y#3 Alias (byte) screen_fill::ch#1 = (byte) screen_fill::ch#4 Alias (byte*) screen_fill::screen#1 = (byte*) screen_fill::screen#5 @@ -1532,47 +3303,191 @@ Alias (byte*) bitmap_clear::bitmap#0 = (byte*~) bitmap_clear::$0 Alias (byte) bitmap_clear::y#2 = (byte) bitmap_clear::y#3 Alias (byte*) bitmap_clear::bitmap#1 = (byte*) bitmap_clear::bitmap#4 Alias (byte*) bitmap_plot::plotter#0 = (byte*~) bitmap_plot::$0 +Alias (word) rem16u#19 = (word) rem16u#9 +Alias (signed word) rem16s#14 = (signed word) rem16s#8 Succesful SSA optimization Pass2AliasElimination +Not aliassing across scopes: divr16u::rem#9 divr16u::rem#3 +Not aliassing across scopes: divr16u::dividend#4 divr16u::dividend#1 +Not aliassing across scopes: divr16u::divisor#5 divr16u::divisor#0 +Not aliassing across scopes: rem16u#1 divr16u::rem#10 +Not aliassing across scopes: divr16s::dividend#1 divr16s::dividend#0 +Not aliassing across scopes: divr16s::rem#1 divr16s::rem#0 +Not aliassing across scopes: divr16s::divisor#4 divr16s::divisor#0 +Not aliassing across scopes: rem16u#42 rem16u#23 +Not aliassing across scopes: divr16u::dividend#1 divr16s::dividendu#3 +Not aliassing across scopes: divr16u::divisor#0 divr16s::divisoru#3 +Not aliassing across scopes: divr16u::rem#3 divr16s::remu#3 +Not aliassing across scopes: divr16u::return#2 divr16u::return#0 +Not aliassing across scopes: rem16u#11 rem16u#1 +Not aliassing across scopes: divr16s::resultu#0 divr16u::return#2 Not aliassing across scopes: SCREEN#1 SCREEN#0 Not aliassing across scopes: BITMAP#1 BITMAP#0 +Not aliassing across scopes: rem16u#28 rem16u#0 +Not aliassing across scopes: rem16s#20 rem16s#0 Not aliassing across scopes: main::vicSelectGfxBank1_gfx#0 SCREEN#1 Not aliassing across scopes: main::toD0181_screen#0 SCREEN#1 Not aliassing across scopes: main::toD0181_gfx#0 BITMAP#1 Not aliassing across scopes: bitmap_init::bitmap#0 BITMAP#1 Not aliassing across scopes: screen_fill::screen#0 SCREEN#1 Not aliassing across scopes: point_init::point_idx#0 main::i#2 +Not aliassing across scopes: rem16u#15 rem16u#18 +Not aliassing across scopes: rem16s#10 rem16s#13 Not aliassing across scopes: point_init::point_idx#1 point_init::point_idx#0 +Not aliassing across scopes: rem16u#49 rem16u#21 +Not aliassing across scopes: rem16s#37 rem16s#15 +Not aliassing across scopes: divr16s::divisor#0 point_init::x_diff#2 +Not aliassing across scopes: divr16s::rem#0 point_init::y_diff#2 +Not aliassing across scopes: divr16s::return#3 divr16s::return#2 +Not aliassing across scopes: rem16u#17 rem16u#14 +Not aliassing across scopes: rem16s#12 rem16s#3 Not aliassing across scopes: screen_fill::ch#3 screen_fill::ch#0 Not aliassing across scopes: screen_fill::screen#4 screen_fill::screen#0 Not aliassing across scopes: bitmap_init::bitmap#5 bitmap_init::bitmap#0 Not aliassing across scopes: bitmap_plot::y#1 bitmap_plot::y#0 Not aliassing across scopes: bitmap_plot::x#1 bitmap_plot::x#0 +Not aliassing across scopes: rem16u#19 rem16u#16 +Not aliassing across scopes: rem16s#14 rem16s#11 +Alias (word) divr16u::dividend#2 = (word) divr16u::dividend#3 +Alias (word) divr16u::quotient#3 = (word) divr16u::quotient#6 +Alias (word) divr16u::divisor#1 = (word) divr16u::divisor#3 (word) divr16u::divisor#6 +Alias (byte) divr16u::i#2 = (byte) divr16u::i#3 (byte) divr16u::i#5 +Alias (word) divr16u::dividend#0 = (word) divr16u::dividend#5 +Alias (signed word) divr16s::divisor#1 = (signed word) divr16s::divisor#4 +Alias (word) rem16u#20 = (word) rem16u#26 (word) rem16u#42 +Alias (word) divr16s::dividendu#3 = (word) divr16s::dividendu#4 +Alias (word) divr16s::remu#3 = (word) divr16s::remu#4 +Alias (word) rem16u#11 = (word) rem16u#14 +Alias (signed word) point_init::y_diff#0 = (signed word) point_init::y_diff#1 (signed word) point_init::y_diff#10 +Alias (signed word) point_init::x_diff#11 = (signed word) point_init::abs16s1_w#0 (signed word) point_init::x_diff#3 +Alias (byte) point_init::point_idx#1 = (byte) point_init::point_idx#11 (byte) point_init::point_idx#5 +Alias (word) rem16u#24 = (word) rem16u#38 (word) rem16u#49 +Alias (signed word) rem16s#18 = (signed word) rem16s#29 (signed word) rem16s#37 +Alias (signed word) point_init::x_diff#1 = (signed word) point_init::x_diff#2 +Alias (signed word) point_init::y_diff#2 = (signed word) point_init::y_diff#4 +Alias (word) rem16u#23 = (word) rem16u#32 +Alias (signed word) rem16s#17 = (signed word) rem16s#24 Alias (byte) bitmap_init::x#2 = (byte) bitmap_init::x#3 Alias (byte*) bitmap_init::bitmap#1 = (byte*) bitmap_init::bitmap#3 Alias (byte) bitmap_init::y#2 = (byte) bitmap_init::y#3 Succesful SSA optimization Pass2AliasElimination +Not aliassing across scopes: divr16u::rem#9 divr16u::rem#3 +Not aliassing across scopes: divr16u::dividend#4 divr16u::dividend#1 +Not aliassing across scopes: divr16u::divisor#5 divr16u::divisor#0 +Not aliassing across scopes: rem16u#1 divr16u::rem#10 +Not aliassing across scopes: divr16s::dividend#1 divr16s::dividend#0 +Not aliassing across scopes: divr16s::rem#1 divr16s::rem#0 +Not aliassing across scopes: divr16s::divisor#1 divr16s::divisor#0 +Not aliassing across scopes: rem16u#20 rem16u#23 +Not aliassing across scopes: divr16u::dividend#1 divr16s::dividendu#3 +Not aliassing across scopes: divr16u::divisor#0 divr16s::divisoru#3 +Not aliassing across scopes: divr16u::rem#3 divr16s::remu#3 +Not aliassing across scopes: divr16u::return#2 divr16u::return#0 +Not aliassing across scopes: rem16u#11 rem16u#1 +Not aliassing across scopes: divr16s::resultu#0 divr16u::return#2 Not aliassing across scopes: SCREEN#1 SCREEN#0 Not aliassing across scopes: BITMAP#1 BITMAP#0 +Not aliassing across scopes: rem16u#28 rem16u#0 +Not aliassing across scopes: rem16s#20 rem16s#0 Not aliassing across scopes: main::vicSelectGfxBank1_gfx#0 SCREEN#1 Not aliassing across scopes: main::toD0181_screen#0 SCREEN#1 Not aliassing across scopes: main::toD0181_gfx#0 BITMAP#1 Not aliassing across scopes: bitmap_init::bitmap#0 BITMAP#1 Not aliassing across scopes: screen_fill::screen#0 SCREEN#1 Not aliassing across scopes: point_init::point_idx#0 main::i#2 +Not aliassing across scopes: rem16u#15 rem16u#18 +Not aliassing across scopes: rem16s#10 rem16s#13 Not aliassing across scopes: point_init::point_idx#1 point_init::point_idx#0 +Not aliassing across scopes: rem16u#24 rem16u#21 +Not aliassing across scopes: rem16s#18 rem16s#15 +Not aliassing across scopes: divr16s::divisor#0 point_init::x_diff#1 +Not aliassing across scopes: divr16s::rem#0 point_init::y_diff#2 +Not aliassing across scopes: divr16s::return#3 divr16s::return#2 +Not aliassing across scopes: rem16u#17 rem16u#11 +Not aliassing across scopes: rem16s#12 rem16s#3 Not aliassing across scopes: screen_fill::ch#3 screen_fill::ch#0 Not aliassing across scopes: screen_fill::screen#4 screen_fill::screen#0 Not aliassing across scopes: bitmap_init::bitmap#5 bitmap_init::bitmap#0 Not aliassing across scopes: bitmap_plot::y#1 bitmap_plot::y#0 Not aliassing across scopes: bitmap_plot::x#1 bitmap_plot::x#0 +Not aliassing across scopes: rem16u#19 rem16u#16 +Not aliassing across scopes: rem16s#14 rem16s#11 +Alias (signed word) point_init::x_diff#1 = (signed word) point_init::x_diff#11 +Alias (byte) point_init::point_idx#1 = (byte) point_init::point_idx#2 +Alias (signed word) point_init::y_diff#0 = (signed word) point_init::y_diff#2 +Alias (word) rem16u#23 = (word) rem16u#24 +Alias (signed word) rem16s#17 = (signed word) rem16s#18 +Succesful SSA optimization Pass2AliasElimination +Not aliassing across scopes: divr16u::rem#9 divr16u::rem#3 +Not aliassing across scopes: divr16u::dividend#4 divr16u::dividend#1 +Not aliassing across scopes: divr16u::divisor#5 divr16u::divisor#0 +Not aliassing across scopes: rem16u#1 divr16u::rem#10 +Not aliassing across scopes: divr16s::dividend#1 divr16s::dividend#0 +Not aliassing across scopes: divr16s::rem#1 divr16s::rem#0 +Not aliassing across scopes: divr16s::divisor#1 divr16s::divisor#0 +Not aliassing across scopes: rem16u#20 rem16u#23 +Not aliassing across scopes: divr16u::dividend#1 divr16s::dividendu#3 +Not aliassing across scopes: divr16u::divisor#0 divr16s::divisoru#3 +Not aliassing across scopes: divr16u::rem#3 divr16s::remu#3 +Not aliassing across scopes: divr16u::return#2 divr16u::return#0 +Not aliassing across scopes: rem16u#11 rem16u#1 +Not aliassing across scopes: divr16s::resultu#0 divr16u::return#2 +Not aliassing across scopes: SCREEN#1 SCREEN#0 +Not aliassing across scopes: BITMAP#1 BITMAP#0 +Not aliassing across scopes: rem16u#28 rem16u#0 +Not aliassing across scopes: rem16s#20 rem16s#0 +Not aliassing across scopes: main::vicSelectGfxBank1_gfx#0 SCREEN#1 +Not aliassing across scopes: main::toD0181_screen#0 SCREEN#1 +Not aliassing across scopes: main::toD0181_gfx#0 BITMAP#1 +Not aliassing across scopes: bitmap_init::bitmap#0 BITMAP#1 +Not aliassing across scopes: screen_fill::screen#0 SCREEN#1 +Not aliassing across scopes: point_init::point_idx#0 main::i#2 +Not aliassing across scopes: rem16u#15 rem16u#18 +Not aliassing across scopes: rem16s#10 rem16s#13 +Not aliassing across scopes: point_init::point_idx#1 point_init::point_idx#0 +Not aliassing across scopes: rem16u#23 rem16u#21 +Not aliassing across scopes: rem16s#17 rem16s#15 +Not aliassing across scopes: divr16s::divisor#0 point_init::x_diff#1 +Not aliassing across scopes: divr16s::rem#0 point_init::y_diff#0 +Not aliassing across scopes: divr16s::return#3 divr16s::return#2 +Not aliassing across scopes: rem16u#17 rem16u#11 +Not aliassing across scopes: rem16s#12 rem16s#3 +Not aliassing across scopes: screen_fill::ch#3 screen_fill::ch#0 +Not aliassing across scopes: screen_fill::screen#4 screen_fill::screen#0 +Not aliassing across scopes: bitmap_init::bitmap#5 bitmap_init::bitmap#0 +Not aliassing across scopes: bitmap_plot::y#1 bitmap_plot::y#0 +Not aliassing across scopes: bitmap_plot::x#1 bitmap_plot::x#0 +Not aliassing across scopes: rem16u#19 rem16u#16 +Not aliassing across scopes: rem16s#14 rem16s#11 +Self Phi Eliminated (word) divr16u::divisor#1 +Self Phi Eliminated (word) rem16u#30 +Self Phi Eliminated (signed word) rem16s#22 Self Phi Eliminated (byte) screen_fill::ch#1 Self Phi Eliminated (byte) screen_fill::y#2 Self Phi Eliminated (byte*) bitmap_init::bitmap#1 Self Phi Eliminated (byte) bitmap_clear::y#2 Succesful SSA optimization Pass2SelfPhiElimination +Redundant Phi (word) divr16u::rem#9 (word) divr16u::rem#3 +Redundant Phi (word) divr16u::dividend#4 (word) divr16u::dividend#1 +Redundant Phi (word) divr16u::divisor#5 (word) divr16u::divisor#0 +Redundant Phi (word) divr16u::divisor#1 (word) divr16u::divisor#5 +Redundant Phi (signed word) divr16s::dividend#1 (signed word) divr16s::dividend#0 +Redundant Phi (signed word) divr16s::rem#1 (signed word) divr16s::rem#0 +Redundant Phi (signed word) divr16s::divisor#1 (signed word) divr16s::divisor#0 +Redundant Phi (word) rem16u#20 (word) rem16u#23 +Redundant Phi (word) rem16u#11 (word) rem16u#1 Redundant Phi (byte*) SCREEN#1 (byte*) SCREEN#0 Redundant Phi (byte*) BITMAP#1 (byte*) BITMAP#0 +Redundant Phi (word) rem16u#28 (word) rem16u#0 +Redundant Phi (signed word) rem16s#20 (signed word) rem16s#0 +Redundant Phi (word) rem16u#15 (word) rem16u#18 +Redundant Phi (signed word) rem16s#10 (signed word) rem16s#13 +Redundant Phi (word) rem16u#30 (word) rem16u#16 +Redundant Phi (signed word) rem16s#22 (signed word) rem16s#11 Redundant Phi (byte) point_init::point_idx#1 (byte) point_init::point_idx#0 +Redundant Phi (word) rem16u#23 (word) rem16u#21 +Redundant Phi (signed word) rem16s#17 (signed word) rem16s#15 +Redundant Phi (word) rem16u#17 (word) rem16u#11 +Redundant Phi (signed word) rem16s#12 (signed word) rem16s#3 Redundant Phi (byte) screen_fill::ch#3 (byte) screen_fill::ch#0 Redundant Phi (byte*) screen_fill::screen#4 (byte*) screen_fill::screen#0 Redundant Phi (byte) screen_fill::ch#1 (byte) screen_fill::ch#2 @@ -1582,8 +3497,20 @@ Redundant Phi (byte*) bitmap_init::bitmap#1 (byte*) bitmap_init::bitmap#5 Redundant Phi (byte) bitmap_clear::y#2 (byte) bitmap_clear::y#4 Redundant Phi (byte) bitmap_plot::y#1 (byte) bitmap_plot::y#0 Redundant Phi (word) bitmap_plot::x#1 (word) bitmap_plot::x#0 +Redundant Phi (word) rem16u#19 (word) rem16u#16 +Redundant Phi (signed word) rem16s#14 (signed word) rem16s#11 Succesful SSA optimization Pass2RedundantPhiElimination +Simple Condition (bool~) divr16u::$4 if((byte~) divr16u::$2==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16u::@2 +Simple Condition (bool~) divr16u::$9 if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 +Simple Condition (bool~) divr16u::$11 if((byte) divr16u::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 16) goto divr16u::@1 +Simple Condition (bool~) divr16s::$9 if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 +Simple Condition (bool~) divr16s::$15 if((byte) divr16s::neg#4==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@5 Simple Condition (bool~) main::$11 if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 +Simple Condition (bool~) main::$12 if(*((byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@6 +Simple Condition (bool) point_init::abs16s1_$0#0 if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 +Simple Condition (bool) point_init::abs16s2_$0#0 if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 +Simple Condition (bool~) point_init::$9 if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 +Simple Condition (bool~) point_init::$10 if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 Simple Condition (bool~) screen_fill::$0 if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 Simple Condition (bool~) screen_fill::$1 if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 Simple Condition (bool~) bitmap_init::$1 if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@2 @@ -1593,10 +3520,13 @@ Simple Condition (bool~) bitmap_init::$12 if((byte) bitmap_init::y#1!=(byte/sign Simple Condition (bool~) bitmap_clear::$1 if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 Simple Condition (bool~) bitmap_clear::$2 if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 Succesful SSA optimization Pass2ConditionalJumpSimplification +Rewriting || if()-condition to two if()s (bool~) divr16s::$2 ← (bool~) divr16s::$0 || (bool~) divr16s::$1 +Succesful SSA optimization Pass2ConditionalAndOrRewriting Constant (const byte*) PROCPORT_DDR#0 = ((byte*))0 Constant (const byte) PROCPORT_DDR_MEMORY_MASK#0 = 7 Constant (const byte*) PROCPORT#0 = ((byte*))1 Constant (const byte) PROCPORT_RAM_IO#0 = 53 +Constant (const byte*) RASTER#0 = ((byte*))53266 Constant (const byte*) BORDERCOL#0 = ((byte*))53280 Constant (const byte*) D011#0 = ((byte*))53265 Constant (const byte) VIC_BMM#0 = 32 @@ -1605,16 +3535,26 @@ Constant (const byte) VIC_RSEL#0 = 8 Constant (const byte*) D018#0 = ((byte*))53272 Constant (const byte*) CIA2_PORT_A#0 = ((byte*))56576 Constant (const byte*) CIA2_PORT_A_DDR#0 = ((byte*))56578 +Constant (const word) rem16u#0 = 0 +Constant (const word) divr16u::quotient#0 = 0 +Constant (const byte) divr16u::i#0 = 0 +Constant (const signed word) rem16s#0 = 0 +Constant (const byte) divr16s::neg#0 = 0 +Constant (const word) divr16s::dividendu#0 = 0 +Constant (const word) divr16s::remu#0 = 0 +Constant (const byte) divr16s::neg#1 = 1 +Constant (const word) divr16s::divisoru#0 = 0 Constant (const byte*) BITMAP#0 = ((byte*))40960 Constant (const byte*) SCREEN#0 = ((byte*))34816 -Constant (const byte) DELAY#0 = 8 Constant (const word[4]) x_start#0 = { 10, 20, 30, 30 } Constant (const byte[4]) y_start#0 = { 10, 10, 10, 20 } -Constant (const word[4]) x_cur#0 = { fill( 4, 0) } -Constant (const word[4]) y_cur#0 = { fill( 4, 0) } -Constant (const byte[4]) delay#0 = { fill( 4, 0) } +Constant (const word[4]) x_end#0 = { 20, 10, 20, 20 } +Constant (const byte[4]) y_end#0 = { 20, 20, 10, 20 } +Constant (const signed byte[4]) x_add#0 = { fill( 4, 0) } Constant (const byte) screen_fill::ch#0 = 16 Constant (const byte) main::i#0 = 0 +Constant (const signed byte/signed word/signed dword) point_init::$11 = -16 +Constant (const signed word) divr16s::dividend#0 = 0 Constant (const byte) screen_fill::y#0 = 0 Constant (const byte) screen_fill::x#0 = 0 Constant (const byte[256]) bitmap_plot_ylo#0 = { fill( 256, 0) } @@ -1628,6 +3568,9 @@ Constant (const word/signed word/dword/signed dword) bitmap_init::$10 = 40*8 Constant (const byte) bitmap_clear::y#0 = 0 Constant (const byte) bitmap_clear::x#0 = 0 Succesful SSA optimization Pass2ConstantIdentification +Constant (const bool) divr16s::$0 = divr16s::dividend#0<0 +Constant (const signed word) divr16s::$5 = -divr16s::dividend#0 +Constant (const word) divr16s::dividendu#2 = ((word))divr16s::dividend#0 Constant (const byte) main::$0 = VIC_BMM#0|VIC_DEN#0 Constant (const byte*) main::vicSelectGfxBank1_gfx#0 = SCREEN#0 Constant (const byte*) main::toD0181_screen#0 = SCREEN#0 @@ -1635,6 +3578,7 @@ Constant (const byte*) main::toD0181_gfx#0 = BITMAP#0 Constant (const byte*) bitmap_init::bitmap#0 = BITMAP#0 Constant (const byte*) screen_fill::screen#0 = SCREEN#0 Succesful SSA optimization Pass2ConstantIdentification +Constant (const word) divr16s::dividendu#1 = ((word))divr16s::$5 Constant (const byte) main::$1 = main::$0|VIC_RSEL#0 Constant (const word) main::vicSelectGfxBank1_toDd001_$0#0 = ((word))main::vicSelectGfxBank1_gfx#0 Constant (const word) main::toD0181_$0#0 = ((word))main::toD0181_screen#0 @@ -1655,38 +3599,135 @@ Constant (const byte) main::toD0181_$7#0 = main::toD0181_$6#0&15 Succesful SSA optimization Pass2ConstantIdentification Constant (const byte) main::toD0181_return#0 = main::toD0181_$3#0|main::toD0181_$7#0 Succesful SSA optimization Pass2ConstantIdentification +if() condition always false - eliminating if((const bool) divr16s::$0) goto divr16s::@1 if() condition always true - replacing block destination if(true) goto main::@3 Succesful SSA optimization Pass2ConstantIfs Fixing inline constructor with bitmap_clear::$3 ← *(bitmap_plot_yhi#0 + 0) w= *(bitmap_plot_ylo#0 + 0) Fixing inline constructor with bitmap_plot::$3 ← *(bitmap_plot_yhi#0 + bitmap_plot::y#0) w= *(bitmap_plot_ylo#0 + bitmap_plot::y#0) Succesful SSA optimization Pass2FixInlineConstructors +Eliminating unused variable - keeping the phi block (word) rem16u#16 +Eliminating unused variable - keeping the phi block (signed word) rem16s#11 +Eliminating unused variable (signed word) divr16s::return#3 and assignment [90] (signed word) divr16s::return#3 ← (signed word) divr16s::return#2 +Eliminating unused constant (const word) divr16s::dividendu#0 +Eliminating unused constant (const word) divr16s::remu#0 +Eliminating unused constant (const word) divr16s::divisoru#0 +Eliminating unused constant (const bool) divr16s::$0 +Succesful SSA optimization PassNEliminateUnusedVars +Eliminating unused variable - keeping the phi block (signed word) divr16s::return#2 +Succesful SSA optimization PassNEliminateUnusedVars +Eliminating unused variable (signed word) divr16s::return#0 and assignment [36] (signed word) divr16s::return#0 ← ((signed word)) (word) divr16s::resultu#0 +Eliminating unused variable (signed word) divr16s::return#1 and assignment [40] (signed word) divr16s::return#1 ← - (signed word~) divr16s::$18 +Succesful SSA optimization PassNEliminateUnusedVars +Eliminating unused variable (signed word~) divr16s::$18 and assignment [38] (signed word~) divr16s::$18 ← ((signed word)) (word) divr16s::resultu#0 +Succesful SSA optimization PassNEliminateUnusedVars +Eliminating unused variable (word) divr16s::resultu#0 and assignment [33] (word) divr16s::resultu#0 ← (word) divr16u::return#2 +Succesful SSA optimization PassNEliminateUnusedVars +Eliminating unused variable (word) divr16u::return#2 and assignment [32] (word) divr16u::return#2 ← (word) divr16u::return#0 +Succesful SSA optimization PassNEliminateUnusedVars +Eliminating Noop Cast (word) divr16s::remu#1 ← ((word)) (signed word~) divr16s::$7 +Eliminating Noop Cast (word) divr16s::remu#2 ← ((word)) (signed word) divr16s::rem#0 +Eliminating Noop Cast (word) divr16s::divisoru#1 ← ((word)) (signed word~) divr16s::$11 +Eliminating Noop Cast (word) divr16s::divisoru#2 ← ((word)) (signed word) divr16s::divisor#0 +Eliminating Noop Cast (signed word) rem16s#1 ← ((signed word)) (word) rem16u#1 +Eliminating Noop Cast (signed word~) divr16s::$16 ← ((signed word)) (word) rem16u#1 +Eliminating Noop Cast (signed word~) point_init::$1 ← ((signed word)) *((const word[4]) x_end#0 + (byte) point_init::point_idx#0) +Eliminating Noop Cast (signed word~) point_init::$2 ← ((signed word)) *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) +Eliminating Noop Cast (word) point_init::abs16s1_return#0 ← ((word)) (signed word) point_init::abs16s1_$2#0 +Eliminating Noop Cast (word) point_init::abs16s1_return#1 ← ((word)) (signed word) point_init::x_diff#1 +Eliminating Noop Cast (word) point_init::abs16s2_return#0 ← ((word)) (signed word) point_init::abs16s2_$2#0 +Eliminating Noop Cast (word) point_init::abs16s2_return#1 ← ((word)) (signed word) point_init::y_diff#0 Eliminating Noop Cast (byte*) bitmap_clear::bitmap#0 ← ((byte*)) (word~) bitmap_clear::$3 Eliminating Noop Cast (byte*) bitmap_plot::plotter#0 ← ((byte*)) (word~) bitmap_plot::$3 Succesful SSA optimization Pass2NopCastElimination Removing unused block main::@return Succesful SSA optimization Pass2EliminateUnusedBlocks -Culled Empty Block (label) @3 +Culled Empty Block (label) @5 +Culled Empty Block (label) @9 +Culled Empty Block (label) divr16s::@7 +Culled Empty Block (label) divr16s::@9 +Culled Empty Block (label) divr16s::@5 +Culled Empty Block (label) @11 Culled Empty Block (label) main::vicSelectGfxBank1_toDd001_@return -Culled Empty Block (label) main::@9 +Culled Empty Block (label) main::@15 Culled Empty Block (label) main::toD0181_@return -Culled Empty Block (label) main::@13 -Culled Empty Block (label) main::@2 -Culled Empty Block (label) @6 +Culled Empty Block (label) main::@19 +Culled Empty Block (label) main::@3 +Culled Empty Block (label) main::@6 +Culled Empty Block (label) point_init::abs16s1_@3 +Culled Empty Block (label) point_init::@9 +Culled Empty Block (label) point_init::abs16s2_@3 +Culled Empty Block (label) point_init::@11 +Culled Empty Block (label) @15 Not culling empty block because it shares successor with its predecessor. (label) bitmap_init::@5 Culled Empty Block (label) bitmap_init::@6 +Culled Empty Block (label) @19 Succesful SSA optimization Pass2CullEmptyBlocks Not culling empty block because it shares successor with its predecessor. (label) bitmap_init::@5 +Not aliassing across scopes: divr16u::rem#4 divr16u::rem#3 +Not aliassing across scopes: divr16u::dividend#2 divr16u::dividend#1 +Not aliassing across scopes: rem16u#1 divr16u::rem#10 +Not aliassing across scopes: divr16u::dividend#1 divr16s::dividendu#3 +Not aliassing across scopes: divr16u::divisor#0 divr16s::divisoru#3 +Not aliassing across scopes: divr16u::rem#3 divr16s::remu#3 Not aliassing across scopes: point_init::point_idx#0 main::i#2 +Not aliassing across scopes: divr16s::divisor#0 point_init::x_diff#1 +Not aliassing across scopes: divr16s::rem#0 point_init::y_diff#0 +Not aliassing across scopes: rem16u#18 rem16u#21 +Not aliassing across scopes: rem16s#13 rem16s#15 Self Phi Eliminated (byte) screen_fill::ch#2 Succesful SSA optimization Pass2SelfPhiElimination Redundant Phi (byte) screen_fill::ch#2 (const byte) screen_fill::ch#0 Succesful SSA optimization Pass2RedundantPhiElimination +Simple Condition (bool~) divr16s::$1 if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 +Succesful SSA optimization Pass2ConditionalJumpSimplification Consolidated array index constant in *(bitmap_plot_yhi#0+0) Consolidated array index constant in *(bitmap_plot_ylo#0+0) Succesful SSA optimization Pass2ConstantAdditionElimination +Culled Empty Block (label) main::@2 Not culling empty block because it shares successor with its predecessor. (label) bitmap_init::@5 +Succesful SSA optimization Pass2CullEmptyBlocks +Not culling empty block because it shares successor with its predecessor. (label) bitmap_init::@5 +Not aliassing across scopes: divr16u::rem#4 divr16u::rem#3 +Not aliassing across scopes: divr16u::dividend#2 divr16u::dividend#1 +Not aliassing across scopes: rem16u#1 divr16u::rem#10 +Not aliassing across scopes: divr16u::dividend#1 divr16s::dividendu#3 +Not aliassing across scopes: divr16u::divisor#0 divr16s::divisoru#3 +Not aliassing across scopes: divr16u::rem#3 divr16s::remu#3 Not aliassing across scopes: point_init::point_idx#0 main::i#2 +Not aliassing across scopes: divr16s::divisor#0 point_init::x_diff#1 +Not aliassing across scopes: divr16s::rem#0 point_init::y_diff#0 +Not aliassing across scopes: rem16u#18 rem16u#21 +Not aliassing across scopes: rem16s#13 rem16s#15 +Not culling empty block because it shares successor with its predecessor. (label) bitmap_init::@5 +Not aliassing across scopes: divr16u::rem#4 divr16u::rem#3 +Not aliassing across scopes: divr16u::dividend#2 divr16u::dividend#1 +Not aliassing across scopes: rem16u#1 divr16u::rem#10 +Not aliassing across scopes: divr16u::dividend#1 divr16s::dividendu#3 +Not aliassing across scopes: divr16u::divisor#0 divr16s::divisoru#3 +Not aliassing across scopes: divr16u::rem#3 divr16s::remu#3 +Not aliassing across scopes: point_init::point_idx#0 main::i#2 +Not aliassing across scopes: divr16s::divisor#0 point_init::x_diff#1 +Not aliassing across scopes: divr16s::rem#0 point_init::y_diff#0 +Not aliassing across scopes: rem16u#18 rem16u#21 +Not aliassing across scopes: rem16s#13 rem16s#15 OPTIMIZING CONTROL FLOW GRAPH +Inlining constant with var siblings (const word) divr16u::quotient#0 +Inlining constant with var siblings (const word) divr16u::quotient#0 +Inlining constant with var siblings (const word) divr16u::quotient#0 +Inlining constant with var siblings (const byte) divr16u::i#0 +Inlining constant with var siblings (const byte) divr16u::i#0 +Inlining constant with var siblings (const byte) divr16s::neg#0 +Inlining constant with var siblings (const byte) divr16s::neg#0 +Inlining constant with var siblings (const byte) divr16s::neg#0 +Inlining constant with different constant siblings (const byte) divr16s::neg#0 +Inlining constant with var siblings (const byte) divr16s::neg#1 +Inlining constant with var siblings (const byte) divr16s::neg#1 +Inlining constant with var siblings (const byte) divr16s::neg#1 +Inlining constant with different constant siblings (const byte) divr16s::neg#1 +Inlining constant with var siblings (const word) divr16s::dividendu#2 +Inlining constant with different constant siblings (const word) divr16s::dividendu#2 +Inlining constant with var siblings (const word) divr16s::dividendu#1 +Inlining constant with different constant siblings (const word) divr16s::dividendu#1 Inlining constant with var siblings (const byte) main::i#0 Inlining constant with var siblings (const byte) main::i#0 Inlining constant with var siblings (const byte) screen_fill::y#0 @@ -1710,10 +3751,24 @@ Inlining constant with var siblings (const byte) bitmap_clear::y#0 Inlining constant with var siblings (const byte) bitmap_clear::y#0 Inlining constant with var siblings (const byte) bitmap_clear::x#0 Inlining constant with var siblings (const byte) bitmap_clear::x#0 +Inlining constant with var siblings (const word) rem16u#0 +Inlining constant with var siblings (const word) rem16u#0 +Inlining constant with var siblings (const word) rem16u#0 +Inlining constant with var siblings (const signed word) rem16s#0 +Inlining constant with var siblings (const signed word) rem16s#0 +Inlining constant with var siblings (const signed word) rem16s#0 +Inlining constant with var siblings (const signed word) rem16s#0 Constant inlined main::toD0181_screen#0 = (const byte*) SCREEN#0 Constant inlined main::toD0181_gfx#0 = (const byte*) BITMAP#0 +Constant inlined divr16u::i#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined divr16s::dividendu#1 = ((word))-(const signed word) divr16s::dividend#0 +Constant inlined divr16s::dividendu#2 = ((word))(const signed word) divr16s::dividend#0 Constant inlined bitmap_init::bits#0 = (byte/word/signed word/dword/signed dword) 128 Constant inlined bitmap_init::bits#2 = (byte/word/signed word/dword/signed dword) 128 +Constant inlined divr16s::neg#1 = (byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined divr16s::neg#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined divr16u::quotient#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined point_init::$11 = -(byte/signed byte/word/signed word/dword/signed dword) 16 Constant inlined main::i#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 Constant inlined bitmap_init::$10 = (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 Constant inlined main::vicSelectGfxBank1_toDd001_$2#0 = >((word))(const byte*) SCREEN#0>>(byte/signed byte/word/signed word/dword/signed dword) 6 @@ -1722,11 +3777,14 @@ Constant inlined main::vicSelectGfxBank1_toDd001_$1#0 = >((word))(const byte*) S Constant inlined main::vicSelectGfxBank1_toDd001_$0#0 = ((word))(const byte*) SCREEN#0 Constant inlined bitmap_clear::x#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 Constant inlined bitmap_clear::y#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined rem16s#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 Constant inlined main::toD0181_$0#0 = ((word))(const byte*) SCREEN#0 Constant inlined main::toD0181_$1#0 = ((word))(const byte*) SCREEN#0&(word/signed word/dword/signed dword) 16383 +Constant inlined rem16u#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 Constant inlined main::toD0181_$6#0 = >((word))(const byte*) BITMAP#0>>(byte/signed byte/word/signed word/dword/signed dword) 2 Constant inlined main::toD0181_$7#0 = >((word))(const byte*) BITMAP#0>>(byte/signed byte/word/signed word/dword/signed dword) 2&(byte/signed byte/word/signed word/dword/signed dword) 15 Constant inlined screen_fill::screen#0 = (const byte*) SCREEN#0 +Constant inlined divr16s::$5 = -(const signed word) divr16s::dividend#0 Constant inlined main::$1 = (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0 Constant inlined main::toD0181_$2#0 = ((word))(const byte*) SCREEN#0&(word/signed word/dword/signed dword) 16383<<(byte/signed byte/word/signed word/dword/signed dword) 2 Constant inlined main::$2 = (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte/signed byte/word/signed word/dword/signed dword) 3 @@ -1740,8 +3798,19 @@ Constant inlined screen_fill::y#0 = (byte/signed byte/word/signed word/dword/sig Constant inlined bitmap_init::x#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 Constant inlined bitmap_init::bitmap#0 = (const byte*) BITMAP#0 Succesful SSA optimization Pass2ConstantInlining -Block Sequence Planned @begin @9 @end main main::vicSelectGfxBank1 main::vicSelectGfxBank1_toDd001 main::vicSelectGfxBank1_@1 main::toD0181 main::@10 main::@11 main::@12 main::@1 main::@14 main::@15 main::@3 bitmap_plot bitmap_plot::@return point_init point_init::@return screen_fill screen_fill::@1 screen_fill::@2 screen_fill::@3 screen_fill::@return bitmap_clear bitmap_clear::@1 bitmap_clear::@2 bitmap_clear::@3 bitmap_clear::@return bitmap_init bitmap_init::@1 bitmap_init::@5 bitmap_init::@2 bitmap_init::@3 bitmap_init::@7 bitmap_init::@4 bitmap_init::@return -Added new block during phi lifting main::@16(between main::@15 and main::@1) +Block Sequence Planned @begin @18 @end main main::vicSelectGfxBank1 main::vicSelectGfxBank1_toDd001 main::vicSelectGfxBank1_@1 main::toD0181 main::@16 main::@17 main::@18 main::@1 main::@20 main::@21 main::@5 main::@7 bitmap_plot bitmap_plot::@return point_init point_init::abs16s1 point_init::abs16s1_@return point_init::abs16s2 point_init::abs16s2_@return point_init::@10 point_init::@return point_init::@1 point_init::@7 point_init::@4 point_init::@3 point_init::abs16s2_@1 point_init::abs16s1_@1 divr16s divr16s::@16 divr16s::@2 divr16s::@4 divr16s::@15 divr16s::@11 divr16s::@return divr16s::@3 divr16s::@1 divr16u divr16u::@1 divr16u::@4 divr16u::@2 divr16u::@5 divr16u::@3 divr16u::@6 divr16u::@return screen_fill screen_fill::@1 screen_fill::@2 screen_fill::@3 screen_fill::@return bitmap_clear bitmap_clear::@1 bitmap_clear::@2 bitmap_clear::@3 bitmap_clear::@return bitmap_init bitmap_init::@1 bitmap_init::@5 bitmap_init::@2 bitmap_init::@3 bitmap_init::@7 bitmap_init::@4 bitmap_init::@return +Added new block during phi lifting main::@22(between main::@21 and main::@1) +Added new block during phi lifting point_init::@12(between point_init::abs16s1 and point_init::abs16s1_@return) +Added new block during phi lifting point_init::@13(between point_init::abs16s2 and point_init::abs16s2_@return) +Added new block during phi lifting point_init::@14(between point_init::@10 and point_init::@return) +Added new block during phi lifting divr16s::@17(between divr16s::@16 and divr16s::@2) +Fixing phi predecessor for divr16s::neg#3 to new block ( divr16s::@16 -> divr16s::@17 ) during phi lifting. +Fixing phi predecessor for divr16s::dividendu#3 to new block ( divr16s::@16 -> divr16s::@17 ) during phi lifting. +Added new block during phi lifting divr16s::@18(between divr16s::@2 and divr16s::@4) +Added new block during phi lifting divr16s::@19(between divr16s::@15 and divr16s::@return) +Added new block during phi lifting divr16u::@8(between divr16u::@3 and divr16u::@1) +Added new block during phi lifting divr16u::@9(between divr16u::@1 and divr16u::@2) +Added new block during phi lifting divr16u::@10(between divr16u::@2 and divr16u::@3) Added new block during phi lifting screen_fill::@5(between screen_fill::@3 and screen_fill::@1) Added new block during phi lifting screen_fill::@6(between screen_fill::@2 and screen_fill::@2) Added new block during phi lifting bitmap_clear::@5(between bitmap_clear::@3 and bitmap_clear::@1) @@ -1750,20 +3819,23 @@ Added new block during phi lifting bitmap_init::@9(between bitmap_init::@2 and b Added new block during phi lifting bitmap_init::@10(between bitmap_init::@1 and bitmap_init::@2) Added new block during phi lifting bitmap_init::@11(between bitmap_init::@4 and bitmap_init::@3) Added new block during phi lifting bitmap_init::@12(between bitmap_init::@3 and bitmap_init::@4) -Block Sequence Planned @begin @9 @end main main::vicSelectGfxBank1 main::vicSelectGfxBank1_toDd001 main::vicSelectGfxBank1_@1 main::toD0181 main::@10 main::@11 main::@12 main::@1 main::@14 main::@15 main::@3 main::@16 bitmap_plot bitmap_plot::@return point_init point_init::@return screen_fill screen_fill::@1 screen_fill::@2 screen_fill::@3 screen_fill::@return screen_fill::@5 screen_fill::@6 bitmap_clear bitmap_clear::@1 bitmap_clear::@2 bitmap_clear::@3 bitmap_clear::@return bitmap_clear::@5 bitmap_clear::@6 bitmap_init bitmap_init::@1 bitmap_init::@5 bitmap_init::@2 bitmap_init::@3 bitmap_init::@7 bitmap_init::@4 bitmap_init::@return bitmap_init::@11 bitmap_init::@12 bitmap_init::@9 bitmap_init::@10 +Block Sequence Planned @begin @18 @end main main::vicSelectGfxBank1 main::vicSelectGfxBank1_toDd001 main::vicSelectGfxBank1_@1 main::toD0181 main::@16 main::@17 main::@18 main::@1 main::@20 main::@21 main::@5 main::@7 main::@22 bitmap_plot bitmap_plot::@return point_init point_init::abs16s1 point_init::@12 point_init::abs16s1_@return point_init::abs16s2 point_init::@13 point_init::abs16s2_@return point_init::@10 point_init::@14 point_init::@return point_init::@1 point_init::@7 point_init::@4 point_init::@3 point_init::abs16s2_@1 point_init::abs16s1_@1 divr16s divr16s::@16 divr16s::@17 divr16s::@2 divr16s::@18 divr16s::@4 divr16s::@15 divr16s::@11 divr16s::@return divr16s::@19 divr16s::@3 divr16s::@1 divr16u divr16u::@1 divr16u::@4 divr16u::@2 divr16u::@5 divr16u::@3 divr16u::@6 divr16u::@return divr16u::@8 divr16u::@10 divr16u::@9 screen_fill screen_fill::@1 screen_fill::@2 screen_fill::@3 screen_fill::@return screen_fill::@5 screen_fill::@6 bitmap_clear bitmap_clear::@1 bitmap_clear::@2 bitmap_clear::@3 bitmap_clear::@return bitmap_clear::@5 bitmap_clear::@6 bitmap_init bitmap_init::@1 bitmap_init::@5 bitmap_init::@2 bitmap_init::@3 bitmap_init::@7 bitmap_init::@4 bitmap_init::@return bitmap_init::@11 bitmap_init::@12 bitmap_init::@9 bitmap_init::@10 Adding NOP phi() at start of @begin -Adding NOP phi() at start of @9 +Adding NOP phi() at start of @18 Adding NOP phi() at start of @end Adding NOP phi() at start of main::vicSelectGfxBank1_toDd001 Adding NOP phi() at start of main::toD0181 -Adding NOP phi() at start of main::@11 -Adding NOP phi() at start of main::@12 +Adding NOP phi() at start of main::@17 +Adding NOP phi() at start of main::@18 +Adding NOP phi() at start of divr16s Adding NOP phi() at start of screen_fill Adding NOP phi() at start of bitmap_init Adding NOP phi() at start of bitmap_init::@5 CALL GRAPH Calls in [] to main:2 Calls in [main] to bitmap_init:13 bitmap_clear:15 screen_fill:17 point_init:20 bitmap_plot:24 +Calls in [point_init] to divr16s:58 +Calls in [divr16s] to divr16u:77 Propagating live ranges... Propagating live ranges... @@ -1773,27 +3845,64 @@ Propagating live ranges... Propagating live ranges... Propagating live ranges... Propagating live ranges... -Created 15 initial phi equivalence classes -Coalesced [28] main::i#5 ← main::i#1 -Coalesced [46] screen_fill::screen#7 ← screen_fill::screen#3 -Coalesced [55] screen_fill::screen#6 ← screen_fill::screen#1 -Coalesced [56] screen_fill::y#5 ← screen_fill::y#1 -Coalesced (already) [57] screen_fill::screen#8 ← screen_fill::screen#1 -Coalesced [58] screen_fill::x#3 ← screen_fill::x#1 -Coalesced [62] bitmap_clear::bitmap#7 ← bitmap_clear::bitmap#3 -Coalesced [71] bitmap_clear::bitmap#6 ← bitmap_clear::bitmap#1 -Coalesced [72] bitmap_clear::y#5 ← bitmap_clear::y#1 -Coalesced (already) [73] bitmap_clear::bitmap#8 ← bitmap_clear::bitmap#1 -Coalesced [74] bitmap_clear::x#3 ← bitmap_clear::x#1 -Coalesced [94] bitmap_init::yoffs#7 ← bitmap_init::yoffs#1 -Coalesced [99] bitmap_init::y#5 ← bitmap_init::y#1 -Coalesced [100] bitmap_init::yoffs#5 ← bitmap_init::yoffs#4 -Coalesced (already) [101] bitmap_init::yoffs#6 ← bitmap_init::yoffs#2 -Coalesced [102] bitmap_init::bits#5 ← bitmap_init::bits#4 -Coalesced [103] bitmap_init::x#5 ← bitmap_init::x#1 -Coalesced [104] bitmap_init::bits#6 ← bitmap_init::bits#1 -Coalesced down to 11 phi equivalence classes -Culled Empty Block (label) main::@16 +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Created 34 initial phi equivalence classes +Coalesced [29] main::i#5 ← main::i#1 +Coalesced [30] rem16u#65 ← rem16u#18 +Coalesced [31] rem16s#52 ← rem16s#13 +Coalesced (already) [50] rem16u#66 ← rem16u#21 +Coalesced (already) [51] rem16s#53 ← rem16s#15 +Coalesced [59] rem16u#67 ← rem16u#1 +Coalesced [60] rem16s#54 ← rem16s#3 +Coalesced [72] divr16s::neg#10 ← divr16s::neg#3 +Coalesced [80] rem16s#55 ← rem16s#2 +Coalesced [87] divr16s::neg#9 ← divr16s::neg#2 +Coalesced [90] divr16u::rem#11 ← divr16u::rem#3 +Coalesced [91] divr16u::dividend#8 ← divr16u::dividend#1 +Coalesced [98] divr16u::rem#14 ← divr16u::rem#1 +Coalesced [105] divr16u::rem#16 ← divr16u::rem#2 +Coalesced [106] divr16u::return#6 ← divr16u::quotient#2 +Coalesced [110] rem16u#1 ← divr16u::rem#10 +Coalesced [112] divr16u::rem#12 ← divr16u::rem#10 +Coalesced [113] divr16u::dividend#9 ← divr16u::dividend#0 +Coalesced [114] divr16u::quotient#9 ← divr16u::return#0 +Coalesced [115] divr16u::i#7 ← divr16u::i#1 +Coalesced [116] divr16u::rem#15 ← divr16u::rem#5 +Coalesced [117] divr16u::return#5 ← divr16u::quotient#1 +Coalesced [118] divr16u::rem#13 ← divr16u::rem#0 +Coalesced [121] screen_fill::screen#7 ← screen_fill::screen#3 +Coalesced [130] screen_fill::screen#6 ← screen_fill::screen#1 +Coalesced [131] screen_fill::y#5 ← screen_fill::y#1 +Coalesced (already) [132] screen_fill::screen#8 ← screen_fill::screen#1 +Coalesced [133] screen_fill::x#3 ← screen_fill::x#1 +Coalesced [137] bitmap_clear::bitmap#7 ← bitmap_clear::bitmap#3 +Coalesced [146] bitmap_clear::bitmap#6 ← bitmap_clear::bitmap#1 +Coalesced [147] bitmap_clear::y#5 ← bitmap_clear::y#1 +Coalesced (already) [148] bitmap_clear::bitmap#8 ← bitmap_clear::bitmap#1 +Coalesced [149] bitmap_clear::x#3 ← bitmap_clear::x#1 +Coalesced [169] bitmap_init::yoffs#7 ← bitmap_init::yoffs#1 +Coalesced [174] bitmap_init::y#5 ← bitmap_init::y#1 +Coalesced [175] bitmap_init::yoffs#5 ← bitmap_init::yoffs#4 +Coalesced (already) [176] bitmap_init::yoffs#6 ← bitmap_init::yoffs#2 +Coalesced [177] bitmap_init::bits#5 ← bitmap_init::bits#4 +Coalesced [178] bitmap_init::x#5 ← bitmap_init::x#1 +Coalesced [179] bitmap_init::bits#6 ← bitmap_init::bits#1 +Coalesced down to 22 phi equivalence classes +Culled Empty Block (label) main::@22 +Culled Empty Block (label) point_init::@14 +Culled Empty Block (label) divr16u::@6 +Culled Empty Block (label) divr16u::@8 +Culled Empty Block (label) divr16u::@10 +Culled Empty Block (label) divr16u::@9 Culled Empty Block (label) screen_fill::@5 Culled Empty Block (label) screen_fill::@6 Culled Empty Block (label) bitmap_clear::@5 @@ -1803,14 +3912,16 @@ Culled Empty Block (label) bitmap_init::@11 Culled Empty Block (label) bitmap_init::@12 Culled Empty Block (label) bitmap_init::@9 Not culling empty block because it shares successor with its predecessor. (label) bitmap_init::@10 -Block Sequence Planned @begin @9 @end main main::vicSelectGfxBank1 main::vicSelectGfxBank1_toDd001 main::vicSelectGfxBank1_@1 main::toD0181 main::@10 main::@11 main::@12 main::@1 main::@14 main::@15 main::@3 bitmap_plot bitmap_plot::@return point_init point_init::@return screen_fill screen_fill::@1 screen_fill::@2 screen_fill::@3 screen_fill::@return bitmap_clear bitmap_clear::@1 bitmap_clear::@2 bitmap_clear::@3 bitmap_clear::@return bitmap_init bitmap_init::@1 bitmap_init::@2 bitmap_init::@3 bitmap_init::@7 bitmap_init::@4 bitmap_init::@return bitmap_init::@10 +Block Sequence Planned @begin @18 @end main main::vicSelectGfxBank1 main::vicSelectGfxBank1_toDd001 main::vicSelectGfxBank1_@1 main::toD0181 main::@16 main::@17 main::@18 main::@1 main::@20 main::@21 main::@5 main::@7 bitmap_plot bitmap_plot::@return point_init point_init::abs16s1 point_init::@12 point_init::abs16s1_@return point_init::abs16s2 point_init::@13 point_init::abs16s2_@return point_init::@10 point_init::@return point_init::@1 point_init::@7 point_init::@4 point_init::@3 point_init::abs16s2_@1 point_init::abs16s1_@1 divr16s divr16s::@16 divr16s::@17 divr16s::@2 divr16s::@18 divr16s::@4 divr16s::@15 divr16s::@11 divr16s::@return divr16s::@19 divr16s::@3 divr16s::@1 divr16u divr16u::@1 divr16u::@4 divr16u::@2 divr16u::@5 divr16u::@3 divr16u::@return screen_fill screen_fill::@1 screen_fill::@2 screen_fill::@3 screen_fill::@return bitmap_clear bitmap_clear::@1 bitmap_clear::@2 bitmap_clear::@3 bitmap_clear::@return bitmap_init bitmap_init::@1 bitmap_init::@2 bitmap_init::@3 bitmap_init::@7 bitmap_init::@4 bitmap_init::@return bitmap_init::@10 Adding NOP phi() at start of @begin -Adding NOP phi() at start of @9 +Adding NOP phi() at start of @18 Adding NOP phi() at start of @end Adding NOP phi() at start of main::vicSelectGfxBank1_toDd001 Adding NOP phi() at start of main::toD0181 -Adding NOP phi() at start of main::@11 -Adding NOP phi() at start of main::@12 +Adding NOP phi() at start of main::@17 +Adding NOP phi() at start of main::@18 +Adding NOP phi() at start of divr16s +Adding NOP phi() at start of divr16u Adding NOP phi() at start of screen_fill Adding NOP phi() at start of bitmap_init Adding NOP phi() at start of bitmap_init::@10 @@ -1821,18 +3932,26 @@ Propagating live ranges... Propagating live ranges... Propagating live ranges... Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... +Propagating live ranges... FINAL CONTROL FLOW GRAPH @begin: scope:[] from [0] phi() [ ] ( ) - to:@9 -@9: scope:[] from @begin + to:@18 +@18: scope:[] from @begin [1] phi() [ ] ( ) [2] call main [ ] ( ) to:@end -@end: scope:[] from @9 +@end: scope:[] from @18 [3] phi() [ ] ( ) -main: scope:[main] from @9 +main: scope:[main] from @18 asm { sei } [5] *((const byte*) PROCPORT_DDR#0) ← (const byte) PROCPORT_DDR_MEMORY_MASK#0 [ ] ( main:2 [ ] ) [6] *((const byte*) PROCPORT#0) ← (const byte) PROCPORT_RAM_IO#0 [ ] ( main:2 [ ] ) @@ -1849,205 +3968,374 @@ main::vicSelectGfxBank1_@1: scope:[main] from main::vicSelectGfxBank1_toDd001 to:main::toD0181 main::toD0181: scope:[main] from main::vicSelectGfxBank1_@1 [11] phi() [ ] ( main:2 [ ] ) - to:main::@10 -main::@10: scope:[main] from main::toD0181 + to:main::@16 +main::@16: scope:[main] from main::toD0181 [12] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) [13] call bitmap_init [ ] ( main:2 [ ] ) - to:main::@11 -main::@11: scope:[main] from main::@10 + to:main::@17 +main::@17: scope:[main] from main::@16 [14] phi() [ ] ( main:2 [ ] ) [15] call bitmap_clear [ ] ( main:2 [ ] ) - to:main::@12 -main::@12: scope:[main] from main::@11 + to:main::@18 +main::@18: scope:[main] from main::@17 [16] phi() [ ] ( main:2 [ ] ) [17] call screen_fill [ ] ( main:2 [ ] ) to:main::@1 -main::@1: scope:[main] from main::@12 main::@15 - [18] (byte) main::i#2 ← phi( main::@12/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@15/(byte) main::i#1 ) [ main::i#2 ] ( main:2 [ main::i#2 ] ) - [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 point_init::point_idx#0 ] ( main:2 [ main::i#2 point_init::point_idx#0 ] ) - [20] call point_init [ main::i#2 ] ( main:2 [ main::i#2 ] ) - to:main::@14 -main::@14: scope:[main] from main::@1 - [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 main::$9 ] ( main:2 [ main::i#2 main::$9 ] ) - [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 main::$9 bitmap_plot::x#0 ] ) - [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ) - [24] call bitmap_plot [ main::i#2 ] ( main:2 [ main::i#2 ] ) - to:main::@15 -main::@15: scope:[main] from main::@14 - [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 ] ( main:2 [ main::i#1 ] ) - [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 ] ( main:2 [ main::i#1 ] ) - to:main::@3 -main::@3: scope:[main] from main::@15 main::@3 - [27] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) - to:main::@3 -bitmap_plot: scope:[bitmap_plot] from main::@14 - [28] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 ] ) - [29] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) - [30] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) - [31] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) - [32] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) +main::@1: scope:[main] from main::@18 main::@21 + [18] (signed word) rem16s#15 ← phi( main::@18/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@21/(signed word) rem16s#13 ) [ main::i#2 rem16u#21 rem16s#15 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 ] ) + [18] (word) rem16u#21 ← phi( main::@18/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@21/(word) rem16u#18 ) [ main::i#2 rem16u#21 rem16s#15 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 ] ) + [18] (byte) main::i#2 ← phi( main::@18/(byte/signed byte/word/signed word/dword/signed dword) 0 main::@21/(byte) main::i#1 ) [ main::i#2 rem16u#21 rem16s#15 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 ] ) + [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ) + [20] call point_init [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) + to:main::@20 +main::@20: scope:[main] from main::@1 + [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ) + [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ) + [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ) + [24] call bitmap_plot [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) + to:main::@21 +main::@21: scope:[main] from main::@20 + [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) + [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) + to:main::@5 +main::@5: scope:[main] from main::@21 main::@5 main::@7 + [27] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@5 [ ] ( main:2 [ ] ) + to:main::@7 +main::@7: scope:[main] from main::@5 + [28] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) + to:main::@5 +bitmap_plot: scope:[bitmap_plot] from main::@20 + [29] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 ] ) + [30] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) + [31] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) + [32] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) + [33] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) to:bitmap_plot::@return bitmap_plot::@return: scope:[bitmap_plot] from bitmap_plot - [33] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) + [34] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) to:@return point_init: scope:[point_init] from main::@1 - [34] (word~) point_init::$0 ← *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$0 ] ) - [35] *((const word[4]) x_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$0 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) - [36] (byte~) point_init::$1 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::point_idx#0 point_init::$1 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$1 ] ) - [37] (word~) point_init::$2 ← ((word)) *((const byte[4]) y_start#0 + (byte~) point_init::$1) [ point_init::point_idx#0 point_init::$2 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$2 ] ) - [38] (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$3 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$3 ] ) - [39] *((const word[4]) y_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$3 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) - [40] (byte~) point_init::$4 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::$4 ] ( main:2::point_init:20 [ main::i#2 point_init::$4 ] ) - [41] *((const byte[4]) delay#0 + (byte~) point_init::$4) ← (const byte) DELAY#0 [ ] ( main:2::point_init:20 [ main::i#2 ] ) + [35] (byte) point_init::point_idx1#0 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ) + [36] (signed word) point_init::x_diff#1 ← (signed word)*((const word[4]) x_end#0 + (byte) point_init::point_idx#0) - (signed word)*((const word[4]) x_start#0 + (byte) point_init::point_idx#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ) + [37] (signed word~) point_init::$4 ← ((signed word)) *((const byte[4]) y_end#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ) + [38] (signed word~) point_init::$5 ← ((signed word)) *((const byte[4]) y_start#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ) + [39] (signed word) point_init::y_diff#0 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::abs16s1 +point_init::abs16s1: scope:[point_init] from point_init + [40] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@12 +point_init::@12: scope:[point_init] from point_init::abs16s1 + [41] (word~) point_init::abs16s1_return#6 ← (word)(signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ) + to:point_init::abs16s1_@return +point_init::abs16s1_@return: scope:[point_init] from point_init::@12 point_init::abs16s1_@1 + [42] (word) point_init::abs16s1_return#2 ← phi( point_init::abs16s1_@1/(word~) point_init::abs16s1_return#5 point_init::@12/(word~) point_init::abs16s1_return#6 ) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) + to:point_init::abs16s2 +point_init::abs16s2: scope:[point_init] from point_init::abs16s1_@return + [43] if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) + to:point_init::@13 +point_init::@13: scope:[point_init] from point_init::abs16s2 + [44] (word~) point_init::abs16s2_return#6 ← (word)(signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ) + to:point_init::abs16s2_@return +point_init::abs16s2_@return: scope:[point_init] from point_init::@13 point_init::abs16s2_@1 + [45] (word) point_init::abs16s2_return#2 ← phi( point_init::abs16s2_@1/(word~) point_init::abs16s2_return#5 point_init::@13/(word~) point_init::abs16s2_return#6 ) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#2 ] ) + to:point_init::@10 +point_init::@10: scope:[point_init] from point_init::abs16s2_@return + [46] if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) to:point_init::@return -point_init::@return: scope:[point_init] from point_init - [42] return [ ] ( main:2::point_init:20 [ main::i#2 ] ) +point_init::@return: scope:[point_init] from point_init::@10 point_init::@4 + [47] (signed word) rem16s#13 ← phi( point_init::@10/(signed word) rem16s#15 point_init::@4/(signed word) rem16s#3 ) [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) + [47] (word) rem16u#18 ← phi( point_init::@10/(word) rem16u#21 point_init::@4/(word) divr16u::rem#10 ) [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) + [48] return [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) to:@return -screen_fill: scope:[screen_fill] from main::@12 - [43] phi() [ ] ( main:2::screen_fill:17 [ ] ) +point_init::@1: scope:[point_init] from point_init point_init::@10 + [49] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 [ point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@7 +point_init::@7: scope:[point_init] from point_init::@1 + [50] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← (byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@4 +point_init::@4: scope:[point_init] from point_init::@3 point_init::@7 + [51] (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#1 [ point_init::y_diff#0 divr16s::divisor#0 ] ( main:2::point_init:20 [ main::i#2 point_init::y_diff#0 divr16s::divisor#0 ] ) + [52] (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#0 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) + [53] call divr16s [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + to:point_init::@return +point_init::@3: scope:[point_init] from point_init::@1 + [54] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← -(byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) + to:point_init::@4 +point_init::abs16s2_@1: scope:[point_init] from point_init::abs16s2 + [55] (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ) + [56] (word~) point_init::abs16s2_return#5 ← (word)(signed word) point_init::abs16s2_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ) + to:point_init::abs16s2_@return +point_init::abs16s1_@1: scope:[point_init] from point_init::abs16s1 + [57] (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ) + [58] (word~) point_init::abs16s1_return#5 ← (word)(signed word) point_init::abs16s1_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ) + to:point_init::abs16s1_@return +divr16s: scope:[divr16s] from point_init::@4 + [59] phi() [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) + to:divr16s::@16 +divr16s::@16: scope:[divr16s] from divr16s + [60] if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) + to:divr16s::@17 +divr16s::@17: scope:[divr16s] from divr16s::@16 + [61] (word~) divr16s::remu#8 ← (word)(signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::remu#8 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#8 ] ) + to:divr16s::@2 +divr16s::@2: scope:[divr16s] from divr16s::@1 divr16s::@17 + [62] (word) divr16s::remu#3 ← phi( divr16s::@1/(word~) divr16s::remu#7 divr16s::@17/(word~) divr16s::remu#8 ) [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + [62] (word) divr16s::dividendu#3 ← phi( divr16s::@1/((word))-(const signed word) divr16s::dividend#0 divr16s::@17/((word))(const signed word) divr16s::dividend#0 ) [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + [62] (byte) divr16s::neg#3 ← phi( divr16s::@1/(byte/signed byte/word/signed word/dword/signed dword) 1 divr16s::@17/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + [63] if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) + to:divr16s::@18 +divr16s::@18: scope:[divr16s] from divr16s::@2 + [64] (word~) divr16s::divisoru#5 ← (word)(signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ) + to:divr16s::@4 +divr16s::@4: scope:[divr16s] from divr16s::@18 divr16s::@3 + [65] (byte) divr16s::neg#4 ← phi( divr16s::@3/(byte) divr16s::neg#2 divr16s::@18/(byte) divr16s::neg#3 ) [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ) + [65] (word) divr16s::divisoru#3 ← phi( divr16s::@3/(word~) divr16s::divisoru#4 divr16s::@18/(word~) divr16s::divisoru#5 ) [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 ] ) + [66] (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 [ divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ) + [67] (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 [ divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ) + [68] (word) divr16u::rem#3 ← (word) divr16s::remu#3 [ divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) + [69] call divr16u [ divr16u::rem#10 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 divr16s::neg#4 ] ) + to:divr16s::@15 +divr16s::@15: scope:[divr16s] from divr16s::@4 + [70] if((byte) divr16s::neg#4==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@19 [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 ] ) + to:divr16s::@11 +divr16s::@11: scope:[divr16s] from divr16s::@15 + [71] (signed word) rem16s#2 ← - (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#2 ] ) + to:divr16s::@return +divr16s::@return: scope:[divr16s] from divr16s::@11 divr16s::@19 + [72] (signed word) rem16s#3 ← phi( divr16s::@11/(signed word) rem16s#2 divr16s::@19/(signed word~) rem16s#56 ) [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + [73] return [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + to:@return +divr16s::@19: scope:[divr16s] from divr16s::@15 + [74] (signed word~) rem16s#56 ← (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#56 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#56 ] ) + to:divr16s::@return +divr16s::@3: scope:[divr16s] from divr16s::@2 + [75] (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ) + [76] (byte) divr16s::neg#2 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ) + [77] (word~) divr16s::divisoru#4 ← (word)(signed word~) divr16s::$11 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ) + to:divr16s::@4 +divr16s::@1: scope:[divr16s] from divr16s::@16 + [78] (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::$7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::$7 ] ) + [79] (word~) divr16s::remu#7 ← (word)(signed word~) divr16s::$7 [ divr16s::divisor#0 divr16s::remu#7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#7 ] ) + to:divr16s::@2 +divr16u: scope:[divr16u] from divr16s::@4 + [80] phi() [ divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) + to:divr16u::@1 +divr16u::@1: scope:[divr16u] from divr16u divr16u::@3 + [81] (byte) divr16u::i#2 ← phi( divr16u/(byte/signed byte/word/signed word/dword/signed dword) 0 divr16u::@3/(byte) divr16u::i#1 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [81] (word) divr16u::quotient#3 ← phi( divr16u/(byte/signed byte/word/signed word/dword/signed dword) 0 divr16u::@3/(word) divr16u::return#0 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [81] (word) divr16u::dividend#2 ← phi( divr16u/(word) divr16u::dividend#1 divr16u::@3/(word) divr16u::dividend#0 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [81] (word) divr16u::rem#4 ← phi( divr16u/(word) divr16u::rem#3 divr16u::@3/(word) divr16u::rem#10 ) [ divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::rem#4 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 ] ) + [82] (word) divr16u::rem#0 ← (word) divr16u::rem#4 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) + [83] (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ) + [84] (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ) + [85] if((byte~) divr16u::$2==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16u::@2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) + to:divr16u::@4 +divr16u::@4: scope:[divr16u] from divr16u::@1 + [86] (word) divr16u::rem#1 ← (word) divr16u::rem#0 | (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ) + to:divr16u::@2 +divr16u::@2: scope:[divr16u] from divr16u::@1 divr16u::@4 + [87] (word) divr16u::rem#5 ← phi( divr16u::@1/(word) divr16u::rem#0 divr16u::@4/(word) divr16u::rem#1 ) [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#5 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#5 ] ) + [88] (word) divr16u::dividend#0 ← (word) divr16u::dividend#2 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ) + [89] (word) divr16u::quotient#1 ← (word) divr16u::quotient#3 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) + [90] if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) + to:divr16u::@5 +divr16u::@5: scope:[divr16u] from divr16u::@2 + [91] (word) divr16u::quotient#2 ← ++ (word) divr16u::quotient#1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ) + [92] (word) divr16u::rem#2 ← (word) divr16u::rem#5 - (word) divr16u::divisor#0 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ) + to:divr16u::@3 +divr16u::@3: scope:[divr16u] from divr16u::@2 divr16u::@5 + [93] (word) divr16u::return#0 ← phi( divr16u::@2/(word) divr16u::quotient#1 divr16u::@5/(word) divr16u::quotient#2 ) [ divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ) + [93] (word) divr16u::rem#10 ← phi( divr16u::@2/(word) divr16u::rem#5 divr16u::@5/(word) divr16u::rem#2 ) [ divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::return#0 ] ) + [94] (byte) divr16u::i#1 ← ++ (byte) divr16u::i#2 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) + [95] if((byte) divr16u::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 16) goto divr16u::@1 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) + to:divr16u::@return +divr16u::@return: scope:[divr16u] from divr16u::@3 + [96] return [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 ] ) + to:@return +screen_fill: scope:[screen_fill] from main::@18 + [97] phi() [ ] ( main:2::screen_fill:17 [ ] ) to:screen_fill::@1 screen_fill::@1: scope:[screen_fill] from screen_fill screen_fill::@3 - [44] (byte) screen_fill::y#4 ← phi( screen_fill/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@3/(byte) screen_fill::y#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) - [44] (byte*) screen_fill::screen#3 ← phi( screen_fill/(const byte*) SCREEN#0 screen_fill::@3/(byte*) screen_fill::screen#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) + [98] (byte) screen_fill::y#4 ← phi( screen_fill/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@3/(byte) screen_fill::y#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) + [98] (byte*) screen_fill::screen#3 ← phi( screen_fill/(const byte*) SCREEN#0 screen_fill::@3/(byte*) screen_fill::screen#1 ) [ screen_fill::screen#3 screen_fill::y#4 ] ( main:2::screen_fill:17 [ screen_fill::screen#3 screen_fill::y#4 ] ) to:screen_fill::@2 screen_fill::@2: scope:[screen_fill] from screen_fill::@1 screen_fill::@2 - [45] (byte) screen_fill::x#2 ← phi( screen_fill::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@2/(byte) screen_fill::x#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) - [45] (byte*) screen_fill::screen#2 ← phi( screen_fill::@1/(byte*) screen_fill::screen#3 screen_fill::@2/(byte*) screen_fill::screen#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) - [46] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) - [47] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) - [48] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) - [49] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) + [99] (byte) screen_fill::x#2 ← phi( screen_fill::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 screen_fill::@2/(byte) screen_fill::x#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) + [99] (byte*) screen_fill::screen#2 ← phi( screen_fill::@1/(byte*) screen_fill::screen#3 screen_fill::@2/(byte*) screen_fill::screen#1 ) [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) + [100] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) + [101] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) + [102] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) + [103] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) to:screen_fill::@3 screen_fill::@3: scope:[screen_fill] from screen_fill::@2 - [50] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) - [51] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) + [104] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) + [105] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) to:screen_fill::@return screen_fill::@return: scope:[screen_fill] from screen_fill::@3 - [52] return [ ] ( main:2::screen_fill:17 [ ] ) + [106] return [ ] ( main:2::screen_fill:17 [ ] ) to:@return -bitmap_clear: scope:[bitmap_clear] from main::@11 - [53] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) - [54] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) +bitmap_clear: scope:[bitmap_clear] from main::@17 + [107] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) + [108] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) to:bitmap_clear::@1 bitmap_clear::@1: scope:[bitmap_clear] from bitmap_clear bitmap_clear::@3 - [55] (byte) bitmap_clear::y#4 ← phi( bitmap_clear/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@3/(byte) bitmap_clear::y#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) - [55] (byte*) bitmap_clear::bitmap#3 ← phi( bitmap_clear/(byte*~) bitmap_clear::bitmap#5 bitmap_clear::@3/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) + [109] (byte) bitmap_clear::y#4 ← phi( bitmap_clear/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@3/(byte) bitmap_clear::y#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) + [109] (byte*) bitmap_clear::bitmap#3 ← phi( bitmap_clear/(byte*~) bitmap_clear::bitmap#5 bitmap_clear::@3/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#3 bitmap_clear::y#4 ] ) to:bitmap_clear::@2 bitmap_clear::@2: scope:[bitmap_clear] from bitmap_clear::@1 bitmap_clear::@2 - [56] (byte) bitmap_clear::x#2 ← phi( bitmap_clear::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@2/(byte) bitmap_clear::x#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) - [56] (byte*) bitmap_clear::bitmap#2 ← phi( bitmap_clear::@1/(byte*) bitmap_clear::bitmap#3 bitmap_clear::@2/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) - [57] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) - [58] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) - [59] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) - [60] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) + [110] (byte) bitmap_clear::x#2 ← phi( bitmap_clear::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_clear::@2/(byte) bitmap_clear::x#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) + [110] (byte*) bitmap_clear::bitmap#2 ← phi( bitmap_clear::@1/(byte*) bitmap_clear::bitmap#3 bitmap_clear::@2/(byte*) bitmap_clear::bitmap#1 ) [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) + [111] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) + [112] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) + [113] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) + [114] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) to:bitmap_clear::@3 bitmap_clear::@3: scope:[bitmap_clear] from bitmap_clear::@2 - [61] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) - [62] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) + [115] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) + [116] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) to:bitmap_clear::@return bitmap_clear::@return: scope:[bitmap_clear] from bitmap_clear::@3 - [63] return [ ] ( main:2::bitmap_clear:15 [ ] ) + [117] return [ ] ( main:2::bitmap_clear:15 [ ] ) to:@return -bitmap_init: scope:[bitmap_init] from main::@10 - [64] phi() [ ] ( main:2::bitmap_init:13 [ ] ) +bitmap_init: scope:[bitmap_init] from main::@16 + [118] phi() [ ] ( main:2::bitmap_init:13 [ ] ) to:bitmap_init::@1 bitmap_init::@1: scope:[bitmap_init] from bitmap_init bitmap_init::@2 - [65] (byte) bitmap_init::x#2 ← phi( bitmap_init/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_init::@2/(byte) bitmap_init::x#1 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) - [65] (byte) bitmap_init::bits#3 ← phi( bitmap_init/(byte/word/signed word/dword/signed dword) 128 bitmap_init::@2/(byte) bitmap_init::bits#4 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) - [66] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) - [67] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) - [68] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) + [119] (byte) bitmap_init::x#2 ← phi( bitmap_init/(byte/signed byte/word/signed word/dword/signed dword) 0 bitmap_init::@2/(byte) bitmap_init::x#1 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) + [119] (byte) bitmap_init::bits#3 ← phi( bitmap_init/(byte/word/signed word/dword/signed dword) 128 bitmap_init::@2/(byte) bitmap_init::bits#4 ) [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) + [120] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) + [121] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) + [122] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) to:bitmap_init::@2 bitmap_init::@2: scope:[bitmap_init] from bitmap_init::@1 bitmap_init::@10 - [69] (byte) bitmap_init::bits#4 ← phi( bitmap_init::@10/(byte) bitmap_init::bits#1 bitmap_init::@1/(byte/word/signed word/dword/signed dword) 128 ) [ bitmap_init::x#2 bitmap_init::bits#4 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#4 ] ) - [70] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) - [71] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) + [123] (byte) bitmap_init::bits#4 ← phi( bitmap_init::@10/(byte) bitmap_init::bits#1 bitmap_init::@1/(byte/word/signed word/dword/signed dword) 128 ) [ bitmap_init::x#2 bitmap_init::bits#4 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#4 ] ) + [124] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) + [125] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) to:bitmap_init::@3 bitmap_init::@3: scope:[bitmap_init] from bitmap_init::@2 bitmap_init::@4 - [72] (byte*) bitmap_init::yoffs#2 ← phi( bitmap_init::@4/(byte*) bitmap_init::yoffs#4 bitmap_init::@2/(const byte*) BITMAP#0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [72] (byte) bitmap_init::y#2 ← phi( bitmap_init::@4/(byte) bitmap_init::y#1 bitmap_init::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [73] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) - [74] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) - [75] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) - [76] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [77] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) - [78] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) - [79] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) - [80] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [126] (byte*) bitmap_init::yoffs#2 ← phi( bitmap_init::@4/(byte*) bitmap_init::yoffs#4 bitmap_init::@2/(const byte*) BITMAP#0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [126] (byte) bitmap_init::y#2 ← phi( bitmap_init::@4/(byte) bitmap_init::y#1 bitmap_init::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [127] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) + [128] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) + [129] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) + [130] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [131] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) + [132] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) + [133] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) + [134] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) to:bitmap_init::@7 bitmap_init::@7: scope:[bitmap_init] from bitmap_init::@3 - [81] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) + [135] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) to:bitmap_init::@4 bitmap_init::@4: scope:[bitmap_init] from bitmap_init::@3 bitmap_init::@7 - [82] (byte*) bitmap_init::yoffs#4 ← phi( bitmap_init::@3/(byte*) bitmap_init::yoffs#2 bitmap_init::@7/(byte*) bitmap_init::yoffs#1 ) [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ) - [83] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) - [84] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) + [136] (byte*) bitmap_init::yoffs#4 ← phi( bitmap_init::@3/(byte*) bitmap_init::yoffs#2 bitmap_init::@7/(byte*) bitmap_init::yoffs#1 ) [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#4 ] ) + [137] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) + [138] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) to:bitmap_init::@return bitmap_init::@return: scope:[bitmap_init] from bitmap_init::@4 - [85] return [ ] ( main:2::bitmap_init:13 [ ] ) + [139] return [ ] ( main:2::bitmap_init:13 [ ] ) to:@return bitmap_init::@10: scope:[bitmap_init] from bitmap_init::@1 - [86] phi() [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) + [140] phi() [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) to:bitmap_init::@2 DOMINATORS @begin dominated by @begin -@9 dominated by @begin @9 -@end dominated by @end @begin @9 -main dominated by main @begin @9 -main::vicSelectGfxBank1 dominated by main::vicSelectGfxBank1 main @begin @9 -main::vicSelectGfxBank1_toDd001 dominated by main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_toDd001 @9 -main::vicSelectGfxBank1_@1 dominated by main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::toD0181 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::@10 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::@10 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::@11 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@11 @begin main::@10 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::@12 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@11 @begin main::@10 main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@11 @begin main::@10 main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::@14 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@11 @begin main::@10 main::@12 main::@14 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::@15 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@11 @begin main::@10 main::@12 main::@15 main::@14 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -main::@3 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@3 main::@11 @begin main::@10 main::@12 main::@15 main::@14 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_plot dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@11 @begin main::@10 bitmap_plot main::@12 main::@14 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_plot::@return dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@11 @begin main::@10 bitmap_plot main::@12 main::@14 bitmap_plot::@return main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -point_init dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@11 @begin main::@10 point_init main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -point_init::@return dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 point_init::@return main::@11 @begin main::@10 point_init main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -screen_fill dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill main::@11 @begin main::@10 main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -screen_fill::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill::@1 screen_fill main::@11 @begin main::@10 main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -screen_fill::@2 dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill::@1 screen_fill::@2 screen_fill main::@11 @begin main::@10 main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -screen_fill::@3 dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill::@1 screen_fill::@3 screen_fill::@2 screen_fill main::@11 @begin main::@10 main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -screen_fill::@return dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill::@1 screen_fill::@3 screen_fill::@2 screen_fill main::@11 @begin main::@10 screen_fill::@return main::@12 main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_clear dominated by main::toD0181 main::vicSelectGfxBank1 main main::@11 @begin main::@10 main::vicSelectGfxBank1_toDd001 @9 bitmap_clear main::vicSelectGfxBank1_@1 -bitmap_clear::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 main::@11 @begin main::@10 main::vicSelectGfxBank1_toDd001 @9 bitmap_clear main::vicSelectGfxBank1_@1 -bitmap_clear::@2 dominated by main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 bitmap_clear::@2 main::@11 @begin main::@10 main::vicSelectGfxBank1_toDd001 @9 bitmap_clear main::vicSelectGfxBank1_@1 -bitmap_clear::@3 dominated by bitmap_clear::@3 main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 bitmap_clear::@2 main::@11 @begin main::@10 main::vicSelectGfxBank1_toDd001 @9 bitmap_clear main::vicSelectGfxBank1_@1 -bitmap_clear::@return dominated by bitmap_clear::@3 main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 bitmap_clear::@2 main::@11 @begin main::@10 bitmap_clear::@return main::vicSelectGfxBank1_toDd001 @9 bitmap_clear main::vicSelectGfxBank1_@1 -bitmap_init dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_init::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main bitmap_init::@1 @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_init::@2 dominated by main::toD0181 bitmap_init::@2 main::vicSelectGfxBank1 main bitmap_init::@1 @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_init::@3 dominated by main::toD0181 bitmap_init::@2 main::vicSelectGfxBank1 bitmap_init::@3 main bitmap_init::@1 @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_init::@7 dominated by main::toD0181 bitmap_init::@2 main::vicSelectGfxBank1 bitmap_init::@3 main bitmap_init::@1 bitmap_init::@7 @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_init::@4 dominated by main::toD0181 bitmap_init::@2 main::vicSelectGfxBank1 bitmap_init::@3 main bitmap_init::@1 bitmap_init::@4 @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_init::@return dominated by main::toD0181 bitmap_init::@2 main::vicSelectGfxBank1 bitmap_init::@3 main bitmap_init::@1 bitmap_init::@4 bitmap_init::@return @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 -bitmap_init::@10 dominated by bitmap_init::@10 main::toD0181 main::vicSelectGfxBank1 main bitmap_init::@1 @begin main::@10 bitmap_init main::vicSelectGfxBank1_toDd001 @9 main::vicSelectGfxBank1_@1 +@18 dominated by @begin @18 +@end dominated by @end @begin @18 +main dominated by main @begin @18 +main::vicSelectGfxBank1 dominated by main::vicSelectGfxBank1 main @begin @18 +main::vicSelectGfxBank1_toDd001 dominated by main::vicSelectGfxBank1 main @begin @18 main::vicSelectGfxBank1_toDd001 +main::vicSelectGfxBank1_@1 dominated by main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 @18 main::vicSelectGfxBank1_toDd001 +main::toD0181 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 @18 main::vicSelectGfxBank1_toDd001 +main::@16 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 @18 main::@16 main::vicSelectGfxBank1_toDd001 +main::@17 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::vicSelectGfxBank1_toDd001 +main::@18 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +main::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +main::@20 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin main::vicSelectGfxBank1_@1 main::@20 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +main::@21 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin main::vicSelectGfxBank1_@1 main::@20 main::@21 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +main::@5 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@5 @begin main::vicSelectGfxBank1_@1 main::@20 main::@21 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +main::@7 dominated by main::@7 main::toD0181 main::vicSelectGfxBank1 main main::@1 main::@5 @begin main::vicSelectGfxBank1_@1 main::@20 main::@21 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +bitmap_plot dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin bitmap_plot main::vicSelectGfxBank1_@1 main::@20 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +bitmap_plot::@return dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin bitmap_plot bitmap_plot::@return main::vicSelectGfxBank1_@1 main::@20 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::abs16s1 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::abs16s1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@12 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::@12 point_init::abs16s1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::abs16s1_@return dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::abs16s1 point_init::abs16s1_@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::abs16s2 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::abs16s1 point_init::abs16s2 point_init::abs16s1_@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@13 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::@13 point_init::abs16s1 point_init::abs16s2 point_init::abs16s1_@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::abs16s2_@return dominated by main::toD0181 main::vicSelectGfxBank1 main point_init::abs16s2_@return main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::abs16s1 point_init::abs16s2 point_init::abs16s1_@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@10 dominated by main::toD0181 main::vicSelectGfxBank1 main point_init::abs16s2_@return main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::@10 point_init::abs16s1 point_init::abs16s2 point_init::abs16s1_@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@return dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@1 dominated by main::toD0181 main::vicSelectGfxBank1 point_init::@1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@7 dominated by main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@7 main::@1 @begin point_init main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@4 dominated by main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 main::@1 @begin point_init main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::@3 dominated by main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@3 main::@1 @begin point_init main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::abs16s2_@1 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 point_init::abs16s2_@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::abs16s1 point_init::abs16s2 point_init::abs16s1_@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +point_init::abs16s1_@1 dominated by main::toD0181 main::vicSelectGfxBank1 main main::@1 @begin point_init main::vicSelectGfxBank1_@1 point_init::abs16s1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 point_init::abs16s1_@1 +divr16s dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 main::@1 @begin point_init main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +divr16s::@16 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +divr16s::@17 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@17 divr16s::@16 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +divr16s::@2 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +divr16s::@18 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 divr16s::@18 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +divr16s::@4 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16s::@15 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 divr16s::@15 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16s::@11 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 divr16s::@11 divr16s::@15 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16s::@return dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin divr16s::@return point_init main::vicSelectGfxBank1_@1 divr16s::@16 divr16s::@15 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16s::@19 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 divr16s::@19 divr16s::@15 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16s::@3 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@3 main::vicSelectGfxBank1_toDd001 +divr16s::@1 dominated by divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@1 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +divr16u dominated by divr16u divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16u::@1 dominated by divr16u divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 divr16u::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16u::@4 dominated by divr16u divr16s main::toD0181 main::vicSelectGfxBank1 point_init::@1 divr16u::@1 main point_init::@4 divr16u::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16u::@2 dominated by divr16u divr16s main::toD0181 divr16u::@2 main::vicSelectGfxBank1 point_init::@1 divr16u::@1 main point_init::@4 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16u::@5 dominated by divr16u divr16s main::toD0181 divr16u::@2 main::vicSelectGfxBank1 point_init::@1 divr16u::@1 main point_init::@4 divr16u::@5 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16u::@3 dominated by divr16u divr16s main::toD0181 divr16u::@2 main::vicSelectGfxBank1 point_init::@1 divr16u::@1 main point_init::@4 divr16u::@3 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 +divr16u::@return dominated by divr16u divr16s main::toD0181 divr16u::@2 main::vicSelectGfxBank1 point_init::@1 divr16u::@1 main point_init::@4 divr16u::@3 divr16s::@2 main::@1 @begin point_init main::vicSelectGfxBank1_@1 divr16s::@16 @18 main::@17 main::@16 main::@18 divr16s::@4 main::vicSelectGfxBank1_toDd001 divr16u::@return +screen_fill dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill @begin main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +screen_fill::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill @begin main::vicSelectGfxBank1_@1 screen_fill::@1 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +screen_fill::@2 dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill @begin main::vicSelectGfxBank1_@1 screen_fill::@1 screen_fill::@2 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +screen_fill::@3 dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill @begin main::vicSelectGfxBank1_@1 screen_fill::@1 screen_fill::@3 screen_fill::@2 @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +screen_fill::@return dominated by main::toD0181 main::vicSelectGfxBank1 main screen_fill @begin main::vicSelectGfxBank1_@1 screen_fill::@1 screen_fill::@3 screen_fill::@2 screen_fill::@return @18 main::@17 main::@16 main::@18 main::vicSelectGfxBank1_toDd001 +bitmap_clear dominated by main::toD0181 main::vicSelectGfxBank1 main @begin bitmap_clear main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::vicSelectGfxBank1_toDd001 +bitmap_clear::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 @begin bitmap_clear main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::vicSelectGfxBank1_toDd001 +bitmap_clear::@2 dominated by main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 bitmap_clear::@2 @begin bitmap_clear main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::vicSelectGfxBank1_toDd001 +bitmap_clear::@3 dominated by bitmap_clear::@3 main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 bitmap_clear::@2 @begin bitmap_clear main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::vicSelectGfxBank1_toDd001 +bitmap_clear::@return dominated by bitmap_clear::@3 main::toD0181 main::vicSelectGfxBank1 main bitmap_clear::@1 bitmap_clear::@2 @begin bitmap_clear::@return bitmap_clear main::vicSelectGfxBank1_@1 @18 main::@17 main::@16 main::vicSelectGfxBank1_toDd001 +bitmap_init dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 +bitmap_init::@1 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 bitmap_init::@1 @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 +bitmap_init::@2 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 bitmap_init::@2 bitmap_init::@1 @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 +bitmap_init::@3 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 bitmap_init::@2 bitmap_init::@3 bitmap_init::@1 @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 +bitmap_init::@7 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 bitmap_init::@2 bitmap_init::@3 bitmap_init::@1 bitmap_init::@7 @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 +bitmap_init::@4 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 bitmap_init::@2 bitmap_init::@3 bitmap_init::@1 bitmap_init::@4 @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 +bitmap_init::@return dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 bitmap_init::@2 bitmap_init::@3 bitmap_init::@1 bitmap_init::@4 bitmap_init::@return @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 +bitmap_init::@10 dominated by main::toD0181 main::vicSelectGfxBank1 main @begin main::vicSelectGfxBank1_@1 bitmap_init::@10 bitmap_init::@1 @18 main::@16 bitmap_init main::vicSelectGfxBank1_toDd001 NATURAL LOOPS -Found back edge: Loop head: main::@1 tails: main::@15 blocks: null -Found back edge: Loop head: main::@3 tails: main::@3 blocks: null +Found back edge: Loop head: main::@1 tails: main::@21 blocks: null +Found back edge: Loop head: main::@5 tails: main::@5 blocks: null +Found back edge: Loop head: main::@5 tails: main::@7 blocks: null +Found back edge: Loop head: divr16u::@1 tails: divr16u::@3 blocks: null Found back edge: Loop head: screen_fill::@2 tails: screen_fill::@2 blocks: null Found back edge: Loop head: screen_fill::@1 tails: screen_fill::@3 blocks: null Found back edge: Loop head: bitmap_clear::@2 tails: bitmap_clear::@2 blocks: null Found back edge: Loop head: bitmap_clear::@1 tails: bitmap_clear::@3 blocks: null Found back edge: Loop head: bitmap_init::@1 tails: bitmap_init::@2 blocks: null Found back edge: Loop head: bitmap_init::@3 tails: bitmap_init::@4 blocks: null -Populated: Loop head: main::@1 tails: main::@15 blocks: main::@15 main::@14 main::@1 -Populated: Loop head: main::@3 tails: main::@3 blocks: main::@3 +Populated: Loop head: main::@1 tails: main::@21 blocks: main::@21 main::@20 main::@1 +Populated: Loop head: main::@5 tails: main::@5 blocks: main::@5 +Populated: Loop head: main::@5 tails: main::@7 blocks: main::@7 main::@5 +Populated: Loop head: divr16u::@1 tails: divr16u::@3 blocks: divr16u::@3 divr16u::@2 divr16u::@5 divr16u::@1 divr16u::@4 Populated: Loop head: screen_fill::@2 tails: screen_fill::@2 blocks: screen_fill::@2 Populated: Loop head: screen_fill::@1 tails: screen_fill::@3 blocks: screen_fill::@3 screen_fill::@2 screen_fill::@1 Populated: Loop head: bitmap_clear::@2 tails: bitmap_clear::@2 blocks: bitmap_clear::@2 Populated: Loop head: bitmap_clear::@1 tails: bitmap_clear::@3 blocks: bitmap_clear::@3 bitmap_clear::@2 bitmap_clear::@1 Populated: Loop head: bitmap_init::@1 tails: bitmap_init::@2 blocks: bitmap_init::@2 bitmap_init::@1 bitmap_init::@10 Populated: Loop head: bitmap_init::@3 tails: bitmap_init::@4 blocks: bitmap_init::@4 bitmap_init::@3 bitmap_init::@7 -Loop head: main::@1 tails: main::@15 blocks: main::@15 main::@14 main::@1 -Loop head: main::@3 tails: main::@3 blocks: main::@3 +Loop head: main::@1 tails: main::@21 blocks: main::@21 main::@20 main::@1 +Loop head: main::@5 tails: main::@5 blocks: main::@5 +Loop head: main::@5 tails: main::@7 blocks: main::@7 main::@5 +Loop head: divr16u::@1 tails: divr16u::@3 blocks: divr16u::@3 divr16u::@2 divr16u::@5 divr16u::@1 divr16u::@4 Loop head: screen_fill::@2 tails: screen_fill::@2 blocks: screen_fill::@2 Loop head: screen_fill::@1 tails: screen_fill::@3 blocks: screen_fill::@3 screen_fill::@2 screen_fill::@1 Loop head: bitmap_clear::@2 tails: bitmap_clear::@2 blocks: bitmap_clear::@2 @@ -2057,9 +4345,10 @@ Loop head: bitmap_init::@3 tails: bitmap_init::@4 blocks: bitmap_init::@4 bitmap NATURAL LOOPS WITH DEPTH Found 0 loops in scope [] -Found 2 loops in scope [main] - Loop head: main::@1 tails: main::@15 blocks: main::@15 main::@14 main::@1 - Loop head: main::@3 tails: main::@3 blocks: main::@3 +Found 3 loops in scope [main] + Loop head: main::@1 tails: main::@21 blocks: main::@21 main::@20 main::@1 + Loop head: main::@5 tails: main::@5 blocks: main::@5 + Loop head: main::@5 tails: main::@7 blocks: main::@7 main::@5 Found 2 loops in scope [bitmap_init] Loop head: bitmap_init::@1 tails: bitmap_init::@2 blocks: bitmap_init::@2 bitmap_init::@1 bitmap_init::@10 Loop head: bitmap_init::@3 tails: bitmap_init::@4 blocks: bitmap_init::@4 bitmap_init::@3 bitmap_init::@7 @@ -2071,8 +4360,13 @@ Found 2 loops in scope [screen_fill] Loop head: screen_fill::@1 tails: screen_fill::@3 blocks: screen_fill::@3 screen_fill::@2 screen_fill::@1 Found 0 loops in scope [point_init] Found 0 loops in scope [bitmap_plot] -Loop head: main::@1 tails: main::@15 blocks: main::@15 main::@14 main::@1 depth: 1 -Loop head: main::@3 tails: main::@3 blocks: main::@3 depth: 1 +Found 0 loops in scope [divr16s] +Found 1 loops in scope [divr16u] + Loop head: divr16u::@1 tails: divr16u::@3 blocks: divr16u::@3 divr16u::@2 divr16u::@5 divr16u::@1 divr16u::@4 +Loop head: main::@1 tails: main::@21 blocks: main::@21 main::@20 main::@1 depth: 1 +Loop head: main::@5 tails: main::@5 blocks: main::@5 depth: 2 +Loop head: main::@5 tails: main::@7 blocks: main::@7 main::@5 depth: 1 +Loop head: divr16u::@1 tails: divr16u::@3 blocks: divr16u::@3 divr16u::@2 divr16u::@5 divr16u::@1 divr16u::@4 depth: 2 Loop head: screen_fill::@2 tails: screen_fill::@2 blocks: screen_fill::@2 depth: 2 Loop head: screen_fill::@1 tails: screen_fill::@3 blocks: screen_fill::@3 screen_fill::@2 screen_fill::@1 depth: 1 Loop head: bitmap_clear::@2 tails: bitmap_clear::@2 blocks: bitmap_clear::@2 depth: 2 @@ -2088,11 +4382,11 @@ VARIABLE REGISTER WEIGHTS (byte*) CIA2_PORT_A_DDR (byte*) D011 (byte*) D018 -(byte) DELAY (byte*) PROCPORT (byte*) PROCPORT_DDR (byte) PROCPORT_DDR_MEMORY_MASK (byte) PROCPORT_RAM_IO +(byte*) RASTER (byte*) SCREEN (byte) VIC_BMM (byte) VIC_DEN @@ -2144,7 +4438,56 @@ VARIABLE REGISTER WEIGHTS (byte[256]) bitmap_plot_bit (byte[256]) bitmap_plot_yhi (byte[256]) bitmap_plot_ylo -(byte[4]) delay +(signed word()) divr16s((signed word) divr16s::dividend , (signed word) divr16s::divisor , (signed word) divr16s::rem) +(signed word~) divr16s::$11 1.0 +(signed word~) divr16s::$7 2.0 +(signed word) divr16s::dividend +(word) divr16s::dividendu +(word) divr16s::dividendu#3 0.2857142857142857 +(signed word) divr16s::divisor +(signed word) divr16s::divisor#0 0.6666666666666666 +(word) divr16s::divisoru +(word) divr16s::divisoru#3 3.0 +(word~) divr16s::divisoru#4 4.0 +(word~) divr16s::divisoru#5 4.0 +(byte) divr16s::neg +(byte) divr16s::neg#2 2.0 +(byte) divr16s::neg#3 1.0 +(byte) divr16s::neg#4 1.2000000000000002 +(signed word) divr16s::rem +(signed word) divr16s::rem#0 2.0 +(word) divr16s::remu +(word) divr16s::remu#3 0.6666666666666666 +(word~) divr16s::remu#7 4.0 +(word~) divr16s::remu#8 4.0 +(word) divr16s::resultu +(signed word) divr16s::return +(word()) divr16u((word) divr16u::dividend , (word) divr16u::divisor , (word) divr16u::rem) +(byte~) divr16u::$1 202.0 +(byte~) divr16u::$2 202.0 +(word) divr16u::dividend +(word) divr16u::dividend#0 25.25 +(word) divr16u::dividend#1 1.0 +(word) divr16u::dividend#2 43.57142857142858 +(word) divr16u::divisor +(word) divr16u::divisor#0 11.333333333333332 +(byte) divr16u::i +(byte) divr16u::i#1 151.5 +(byte) divr16u::i#2 15.538461538461538 +(word) divr16u::quotient +(word) divr16u::quotient#1 151.5 +(word) divr16u::quotient#2 101.0 +(word) divr16u::quotient#3 25.25 +(word) divr16u::rem +(word) divr16u::rem#0 75.75 +(word) divr16u::rem#1 202.0 +(word) divr16u::rem#10 27.727272727272727 +(word) divr16u::rem#2 202.0 +(word) divr16u::rem#3 2.0 +(word) divr16u::rem#4 204.0 +(word) divr16u::rem#5 101.0 +(word) divr16u::return +(word) divr16u::return#0 101.0 (void()) main() (byte~) main::$9 11.0 (byte) main::i @@ -2171,13 +4514,45 @@ VARIABLE REGISTER WEIGHTS (byte*) main::vicSelectGfxBank1_toDd001_gfx (byte) main::vicSelectGfxBank1_toDd001_return (void()) point_init((byte) point_init::point_idx) -(word~) point_init::$0 4.0 -(byte~) point_init::$1 4.0 -(word~) point_init::$2 4.0 -(word~) point_init::$3 4.0 -(byte~) point_init::$4 4.0 +(signed word~) point_init::$4 2.0 +(signed word~) point_init::$5 4.0 +(bool~) point_init::abs16s1_$0 +(word~) point_init::abs16s1_$1 +(signed word~) point_init::abs16s1_$2 +(signed word) point_init::abs16s1_$2#0 2.0 +(word~) point_init::abs16s1_$3 +(word) point_init::abs16s1_return +(word) point_init::abs16s1_return#2 1.0 +(word~) point_init::abs16s1_return#5 4.0 +(word~) point_init::abs16s1_return#6 4.0 +(signed word) point_init::abs16s1_w +(bool~) point_init::abs16s2_$0 +(word~) point_init::abs16s2_$1 +(signed word~) point_init::abs16s2_$2 +(signed word) point_init::abs16s2_$2#0 2.0 +(word~) point_init::abs16s2_$3 +(word) point_init::abs16s2_return +(word) point_init::abs16s2_return#2 6.0 +(word~) point_init::abs16s2_return#5 4.0 +(word~) point_init::abs16s2_return#6 4.0 +(signed word) point_init::abs16s2_w (byte) point_init::point_idx -(byte) point_init::point_idx#0 2.9999999999999996 +(byte) point_init::point_idx#0 0.9444444444444446 +(byte) point_init::point_idx1 +(byte) point_init::point_idx1#0 2.0 +(signed word) point_init::x_diff +(signed word) point_init::x_diff#1 0.5555555555555556 +(signed word) point_init::y_diff +(signed word) point_init::y_diff#0 0.5 +(signed word) rem16s +(signed word) rem16s#13 1.666666666666667 +(signed word) rem16s#15 0.7222222222222223 +(signed word) rem16s#2 4.0 +(signed word) rem16s#3 2.0 +(signed word~) rem16s#56 4.0 +(word) rem16u +(word) rem16u#18 1.666666666666667 +(word) rem16u#21 0.7222222222222223 (void()) screen_fill((byte*) screen_fill::screen , (byte) screen_fill::ch) (byte) screen_fill::ch (byte*) screen_fill::screen @@ -2190,13 +4565,25 @@ VARIABLE REGISTER WEIGHTS (byte) screen_fill::y (byte) screen_fill::y#1 16.5 (byte) screen_fill::y#4 3.6666666666666665 -(word[4]) x_cur +(signed byte[4]) x_add +(word[4]) x_end (word[4]) x_start -(word[4]) y_cur +(byte[4]) y_end (byte[4]) y_start Initial phi equivalence classes [ main::i#2 main::i#1 ] +[ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 ] +[ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 ] +[ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 ] +[ divr16s::dividendu#3 ] +[ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 ] +[ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 ] +[ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] +[ divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] +[ divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] +[ divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] +[ divr16u::i#2 divr16u::i#1 ] [ screen_fill::y#4 screen_fill::y#1 ] [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] [ screen_fill::x#2 screen_fill::x#1 ] @@ -2215,11 +4602,20 @@ Added variable bitmap_plot::$3 to zero page equivalence class [ bitmap_plot::$3 Added variable bitmap_plot::$1 to zero page equivalence class [ bitmap_plot::$1 ] Added variable bitmap_plot::plotter#1 to zero page equivalence class [ bitmap_plot::plotter#1 ] Added variable bitmap_plot::$2 to zero page equivalence class [ bitmap_plot::$2 ] -Added variable point_init::$0 to zero page equivalence class [ point_init::$0 ] -Added variable point_init::$1 to zero page equivalence class [ point_init::$1 ] -Added variable point_init::$2 to zero page equivalence class [ point_init::$2 ] -Added variable point_init::$3 to zero page equivalence class [ point_init::$3 ] +Added variable point_init::point_idx1#0 to zero page equivalence class [ point_init::point_idx1#0 ] +Added variable point_init::x_diff#1 to zero page equivalence class [ point_init::x_diff#1 ] Added variable point_init::$4 to zero page equivalence class [ point_init::$4 ] +Added variable point_init::$5 to zero page equivalence class [ point_init::$5 ] +Added variable point_init::y_diff#0 to zero page equivalence class [ point_init::y_diff#0 ] +Added variable divr16s::divisor#0 to zero page equivalence class [ divr16s::divisor#0 ] +Added variable divr16s::rem#0 to zero page equivalence class [ divr16s::rem#0 ] +Added variable point_init::abs16s2_$2#0 to zero page equivalence class [ point_init::abs16s2_$2#0 ] +Added variable point_init::abs16s1_$2#0 to zero page equivalence class [ point_init::abs16s1_$2#0 ] +Added variable divr16u::divisor#0 to zero page equivalence class [ divr16u::divisor#0 ] +Added variable divr16s::$11 to zero page equivalence class [ divr16s::$11 ] +Added variable divr16s::$7 to zero page equivalence class [ divr16s::$7 ] +Added variable divr16u::$1 to zero page equivalence class [ divr16u::$1 ] +Added variable divr16u::$2 to zero page equivalence class [ divr16u::$2 ] Added variable bitmap_clear::$3 to zero page equivalence class [ bitmap_clear::$3 ] Added variable bitmap_init::$3 to zero page equivalence class [ bitmap_init::$3 ] Added variable bitmap_init::$4 to zero page equivalence class [ bitmap_init::$4 ] @@ -2228,6 +4624,17 @@ Added variable bitmap_init::$6 to zero page equivalence class [ bitmap_init::$6 Added variable bitmap_init::$7 to zero page equivalence class [ bitmap_init::$7 ] Complete equivalence classes [ main::i#2 main::i#1 ] +[ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 ] +[ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 ] +[ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 ] +[ divr16s::dividendu#3 ] +[ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 ] +[ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 ] +[ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] +[ divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] +[ divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] +[ divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] +[ divr16u::i#2 divr16u::i#1 ] [ screen_fill::y#4 screen_fill::y#1 ] [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] [ screen_fill::x#2 screen_fill::x#1 ] @@ -2246,11 +4653,20 @@ Complete equivalence classes [ bitmap_plot::$1 ] [ bitmap_plot::plotter#1 ] [ bitmap_plot::$2 ] -[ point_init::$0 ] -[ point_init::$1 ] -[ point_init::$2 ] -[ point_init::$3 ] +[ point_init::point_idx1#0 ] +[ point_init::x_diff#1 ] [ point_init::$4 ] +[ point_init::$5 ] +[ point_init::y_diff#0 ] +[ divr16s::divisor#0 ] +[ divr16s::rem#0 ] +[ point_init::abs16s2_$2#0 ] +[ point_init::abs16s1_$2#0 ] +[ divr16u::divisor#0 ] +[ divr16s::$11 ] +[ divr16s::$7 ] +[ divr16u::$1 ] +[ divr16u::$2 ] [ bitmap_clear::$3 ] [ bitmap_init::$3 ] [ bitmap_init::$4 ] @@ -2258,35 +4674,14951 @@ Complete equivalence classes [ bitmap_init::$6 ] [ bitmap_init::$7 ] Allocated zp ZP_BYTE:2 [ main::i#2 main::i#1 ] -Allocated zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] -Allocated zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] -Allocated zp ZP_BYTE:6 [ screen_fill::x#2 screen_fill::x#1 ] -Allocated zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] -Allocated zp ZP_WORD:8 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] -Allocated zp ZP_BYTE:10 [ bitmap_clear::x#2 bitmap_clear::x#1 ] -Allocated zp ZP_BYTE:11 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] -Allocated zp ZP_BYTE:12 [ bitmap_init::x#2 bitmap_init::x#1 ] -Allocated zp ZP_BYTE:13 [ bitmap_init::y#2 bitmap_init::y#1 ] -Allocated zp ZP_WORD:14 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] -Allocated zp ZP_BYTE:16 [ point_init::point_idx#0 ] -Allocated zp ZP_BYTE:17 [ main::$9 ] -Allocated zp ZP_WORD:18 [ bitmap_plot::x#0 ] -Allocated zp ZP_BYTE:20 [ bitmap_plot::y#0 ] -Allocated zp ZP_WORD:21 [ bitmap_plot::$3 ] -Allocated zp ZP_WORD:23 [ bitmap_plot::$1 ] -Allocated zp ZP_WORD:25 [ bitmap_plot::plotter#1 ] -Allocated zp ZP_BYTE:27 [ bitmap_plot::$2 ] -Allocated zp ZP_WORD:28 [ point_init::$0 ] -Allocated zp ZP_BYTE:30 [ point_init::$1 ] -Allocated zp ZP_WORD:31 [ point_init::$2 ] -Allocated zp ZP_WORD:33 [ point_init::$3 ] -Allocated zp ZP_BYTE:35 [ point_init::$4 ] -Allocated zp ZP_WORD:36 [ bitmap_clear::$3 ] -Allocated zp ZP_BYTE:38 [ bitmap_init::$3 ] -Allocated zp ZP_BYTE:39 [ bitmap_init::$4 ] -Allocated zp ZP_BYTE:40 [ bitmap_init::$5 ] -Allocated zp ZP_BYTE:41 [ bitmap_init::$6 ] -Allocated zp ZP_BYTE:42 [ bitmap_init::$7 ] +Allocated zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 ] +Allocated zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 ] +Allocated zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 ] +Allocated zp ZP_WORD:9 [ divr16s::dividendu#3 ] +Allocated zp ZP_WORD:11 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 ] +Allocated zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 ] +Allocated zp ZP_BYTE:15 [ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] +Allocated zp ZP_WORD:16 [ divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] +Allocated zp ZP_WORD:18 [ divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] +Allocated zp ZP_WORD:20 [ divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] +Allocated zp ZP_BYTE:22 [ divr16u::i#2 divr16u::i#1 ] +Allocated zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] +Allocated zp ZP_WORD:24 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] +Allocated zp ZP_BYTE:26 [ screen_fill::x#2 screen_fill::x#1 ] +Allocated zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] +Allocated zp ZP_WORD:28 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] +Allocated zp ZP_BYTE:30 [ bitmap_clear::x#2 bitmap_clear::x#1 ] +Allocated zp ZP_BYTE:31 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] +Allocated zp ZP_BYTE:32 [ bitmap_init::x#2 bitmap_init::x#1 ] +Allocated zp ZP_BYTE:33 [ bitmap_init::y#2 bitmap_init::y#1 ] +Allocated zp ZP_WORD:34 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +Allocated zp ZP_BYTE:36 [ point_init::point_idx#0 ] +Allocated zp ZP_BYTE:37 [ main::$9 ] +Allocated zp ZP_WORD:38 [ bitmap_plot::x#0 ] +Allocated zp ZP_BYTE:40 [ bitmap_plot::y#0 ] +Allocated zp ZP_WORD:41 [ bitmap_plot::$3 ] +Allocated zp ZP_WORD:43 [ bitmap_plot::$1 ] +Allocated zp ZP_WORD:45 [ bitmap_plot::plotter#1 ] +Allocated zp ZP_BYTE:47 [ bitmap_plot::$2 ] +Allocated zp ZP_BYTE:48 [ point_init::point_idx1#0 ] +Allocated zp ZP_WORD:49 [ point_init::x_diff#1 ] +Allocated zp ZP_WORD:51 [ point_init::$4 ] +Allocated zp ZP_WORD:53 [ point_init::$5 ] +Allocated zp ZP_WORD:55 [ point_init::y_diff#0 ] +Allocated zp ZP_WORD:57 [ divr16s::divisor#0 ] +Allocated zp ZP_WORD:59 [ divr16s::rem#0 ] +Allocated zp ZP_WORD:61 [ point_init::abs16s2_$2#0 ] +Allocated zp ZP_WORD:63 [ point_init::abs16s1_$2#0 ] +Allocated zp ZP_WORD:65 [ divr16u::divisor#0 ] +Allocated zp ZP_WORD:67 [ divr16s::$11 ] +Allocated zp ZP_WORD:69 [ divr16s::$7 ] +Allocated zp ZP_BYTE:71 [ divr16u::$1 ] +Allocated zp ZP_BYTE:72 [ divr16u::$2 ] +Allocated zp ZP_WORD:73 [ bitmap_clear::$3 ] +Allocated zp ZP_BYTE:75 [ bitmap_init::$3 ] +Allocated zp ZP_BYTE:76 [ bitmap_init::$4 ] +Allocated zp ZP_BYTE:77 [ bitmap_init::$5 ] +Allocated zp ZP_BYTE:78 [ bitmap_init::$6 ] +Allocated zp ZP_BYTE:79 [ bitmap_init::$7 ] +New fragment synthesis _deref_pbuc1=vbuc2 +New fragment synthesis _deref_pbuc1=vbuc2 - sub-option vbuaa=vbuc1 +New fragment synthesis vbuaa=vbuc1 +New fragment synthesis vbuaa=vbuc1 - Successfully loaded vbuaa=vbuc1.asm +New fragment synthesis vbuaa=vbuc1 - sub-option vbuaa=vbuaa +New fragment synthesis vbuaa=vbuc1 - sub-option vbuaa=vbuyy +New fragment synthesis vbuaa=vbuc1 - sub-option vbuaa=vbuxx +New fragment synthesis vbuaa=vbuaa +New fragment synthesis vbuaa=vbuaa - Successfully loaded vbuaa=vbuaa.asm +New fragment synthesis vbuaa=vbuyy +New fragment synthesis vbuaa=vbuyy - Successfully loaded vbuaa=vbuyy.asm +New fragment synthesis vbuaa=vbuyy - sub-option vbuaa=vbuaa +New fragment synthesis vbuaa=vbuxx +New fragment synthesis vbuaa=vbuxx - Successfully loaded vbuaa=vbuxx.asm +New fragment synthesis vbuaa=vbuxx - sub-option vbuaa=vbuaa +Fragment synthesis vbuaa=vbuxx - New best, scheduling parent vbuaa=vbuc1 +Fragment synthesis vbuaa=vbuyy - New best, scheduling parent vbuaa=vbuc1 +Fragment synthesis vbuaa=vbuaa - New best, scheduling parent vbuaa=vbuc1 +Fragment synthesis vbuaa=vbuaa - New best, scheduling parent vbuaa=vbuyy +Fragment synthesis vbuaa=vbuaa - New best, scheduling parent vbuaa=vbuxx +Fragment synthesis vbuaa=vbuxx - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=vbuyy - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=vbuc1 - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=vbuc1 - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuaa=vbuc1 - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuaa=vbuc1 - New best, scheduling parent _deref_pbuc1=vbuc2 +Fragment synthesis _deref_pbuc1=vbuc2 - Successfully synthesized from vbuaa=vbuc1 +Found best fragment _deref_pbuc1=vbuc2 < vbuaa=vbuc1 score: 6.5 +New fragment synthesis vwsz1=vbuc1 +New fragment synthesis vwsz1=vbuc1 - sub-option vwsz1=vwsc1 +New fragment synthesis vwsz1=vbuc1 - sub-option vwsz1=vbuaa +New fragment synthesis vwsz1=vbuc1 - sub-option vwsz1=vbuyy +New fragment synthesis vwsz1=vbuc1 - sub-option vwsz1=vbuxx +New fragment synthesis vwsz1=vwsc1 +New fragment synthesis vwsz1=vwsc1 - sub-option vwuz1=vwuc1 +New fragment synthesis vwuz1=vwuc1 +New fragment synthesis vwuz1=vwuc1 - Successfully loaded vwuz1=vwuc1.asm +New fragment synthesis vwsz1=vbuaa +New fragment synthesis vwsz1=vbuaa - Successfully loaded vwsz1=vbuaa.asm +New fragment synthesis vwsz1=vbuaa - sub-option vwsz1=vbuxx +New fragment synthesis vwsz1=vbuaa - sub-option vwsz1=vbuyy +New fragment synthesis vwsz1=vbuxx +New fragment synthesis vwsz1=vbuxx - sub-option vwsz1=vbuaa +New fragment synthesis vwsz1=vbuyy +New fragment synthesis vwsz1=vbuyy - sub-option vwsz1=vbuaa +Fragment synthesis vwsz1=vbuyy - No file or synthesis results! +Fragment synthesis vwsz1=vbuxx - No file or synthesis results! +Fragment synthesis vwsz1=vbuaa - New best, scheduling parent vwsz1=vbuxx +Fragment synthesis vwsz1=vbuaa - New best, scheduling parent vwsz1=vbuyy +Fragment synthesis vwsz1=vbuaa - New best, scheduling parent vwsz1=vbuc1 +Fragment synthesis vwsz1=vbuyy - Successfully synthesized from vwsz1=vbuaa +Fragment synthesis vwsz1=vbuyy - New best, scheduling parent vwsz1=vbuaa +Fragment synthesis vwsz1=vbuyy - New best, scheduling parent vwsz1=vbuc1 +Fragment synthesis vwsz1=vbuaa - Successfully synthesized from vwsz1=vbuyy +Fragment synthesis vwsz1=vbuxx - Successfully synthesized from vwsz1=vbuaa +Fragment synthesis vwsz1=vbuxx - New best, scheduling parent vwsz1=vbuaa +Fragment synthesis vwsz1=vbuxx - New best, scheduling parent vwsz1=vbuc1 +Fragment synthesis vwsz1=vbuaa - Successfully synthesized from vwsz1=vbuxx +Fragment synthesis vwsz1=vbuaa - Successfully synthesized from vwsz1=vbuyy +Fragment synthesis vwuz1=vwuc1 - New best, scheduling parent vwsz1=vwsc1 +Fragment synthesis vwsz1=vwsc1 - Successfully synthesized from vwuz1=vwuc1 +Fragment synthesis vwsz1=vwsc1 - New best, scheduling parent vwsz1=vbuc1 +Fragment synthesis vwsz1=vbuc1 - Successfully synthesized from vwsz1=vwsc1 +Fragment synthesis vwsz1=vbuc1 - Successfully synthesized from vwsz1=vbuaa +Fragment synthesis vwsz1=vbuc1 - Successfully synthesized from vwsz1=vbuyy +Fragment synthesis vwsz1=vbuc1 - Successfully synthesized from vwsz1=vbuxx +Found best fragment vwsz1=vbuc1 < vwsz1=vwsc1 < vwuz1=vwuc1 score: 10.5 +New fragment synthesis vwuz1=vbuc1 +New fragment synthesis vwuz1=vbuc1 - sub-option vwuz1=vwuc1 +New fragment synthesis vwuz1=vbuc1 - sub-option vwuz1=vbuaa +New fragment synthesis vwuz1=vbuc1 - sub-option vwuz1=vbuyy +New fragment synthesis vwuz1=vbuc1 - sub-option vwuz1=vbuxx +New fragment synthesis vwuz1=vbuaa +New fragment synthesis vwuz1=vbuaa - Successfully loaded vwuz1=vbuaa.asm +New fragment synthesis vwuz1=vbuaa - sub-option vwuz1=vbuxx +New fragment synthesis vwuz1=vbuaa - sub-option vwuz1=vbuyy +New fragment synthesis vwuz1=vbuxx +New fragment synthesis vwuz1=vbuxx - sub-option vwuz1=vbuaa +New fragment synthesis vwuz1=vbuyy +New fragment synthesis vwuz1=vbuyy - sub-option vwuz1=vbuaa +Fragment synthesis vwuz1=vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=vbuxx - No file or synthesis results! +Fragment synthesis vwuz1=vbuaa - New best, scheduling parent vwuz1=vbuxx +Fragment synthesis vwuz1=vbuaa - New best, scheduling parent vwuz1=vbuyy +Fragment synthesis vwuz1=vbuaa - New best, scheduling parent vwuz1=vbuc1 +Fragment synthesis vwuz1=vbuyy - Successfully synthesized from vwuz1=vbuaa +Fragment synthesis vwuz1=vbuyy - New best, scheduling parent vwuz1=vbuaa +Fragment synthesis vwuz1=vbuyy - New best, scheduling parent vwuz1=vbuc1 +Fragment synthesis vwuz1=vbuaa - Successfully synthesized from vwuz1=vbuyy +Fragment synthesis vwuz1=vbuxx - Successfully synthesized from vwuz1=vbuaa +Fragment synthesis vwuz1=vbuxx - New best, scheduling parent vwuz1=vbuaa +Fragment synthesis vwuz1=vbuxx - New best, scheduling parent vwuz1=vbuc1 +Fragment synthesis vwuz1=vbuaa - Successfully synthesized from vwuz1=vbuxx +Fragment synthesis vwuz1=vbuaa - Successfully synthesized from vwuz1=vbuyy +Fragment synthesis vwuz1=vbuc1 - Successfully synthesized from vwuz1=vwuc1 +Fragment synthesis vwuz1=vbuc1 - Successfully synthesized from vwuz1=vbuaa +Fragment synthesis vwuz1=vbuc1 - Successfully synthesized from vwuz1=vbuyy +Fragment synthesis vwuz1=vbuc1 - Successfully synthesized from vwuz1=vbuxx +Found best fragment vwuz1=vbuc1 < vwuz1=vwuc1 score: 10.5 +New fragment synthesis vbuz1=vbuc1 +New fragment synthesis vbuz1=vbuc1 - sub-option vbuaa=vbuc1 +New fragment synthesis vbuz1=vbuc1 - sub-option vbuyy=vbuc1 +New fragment synthesis vbuz1=vbuc1 - sub-option vbuxx=vbuc1 +New fragment synthesis vbuz1=vbuc1 - sub-option vbuaa=vbuc1 +New fragment synthesis vbuz1=vbuc1 - sub-option vbuz1=vbuaa +New fragment synthesis vbuz1=vbuc1 - sub-option vbuz1=vbuyy +New fragment synthesis vbuz1=vbuc1 - sub-option vbuz1=vbuxx +New fragment synthesis vbuyy=vbuc1 +New fragment synthesis vbuyy=vbuc1 - Successfully loaded vbuyy=vbuc1.asm +New fragment synthesis vbuyy=vbuc1 - sub-option vbuaa=vbuc1 +New fragment synthesis vbuyy=vbuc1 - sub-option vbuyy=vbuaa +New fragment synthesis vbuyy=vbuc1 - sub-option vbuyy=vbuyy +New fragment synthesis vbuyy=vbuc1 - sub-option vbuyy=vbuxx +New fragment synthesis vbuyy=vbuaa +New fragment synthesis vbuyy=vbuaa - Successfully loaded vbuyy=vbuaa.asm +New fragment synthesis vbuyy=vbuaa - sub-option vbuyy=vbuxx +New fragment synthesis vbuyy=vbuaa - sub-option vbuyy=vbuyy +New fragment synthesis vbuyy=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis vbuyy=vbuxx +New fragment synthesis vbuyy=vbuxx - Successfully loaded vbuyy=vbuxx.asm +New fragment synthesis vbuyy=vbuxx - sub-option vbuyy=vbuaa +New fragment synthesis vbuyy=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis vbuyy=vbuyy +New fragment synthesis vbuyy=vbuyy - Successfully loaded vbuyy=vbuyy.asm +New fragment synthesis vbuyy=vbuyy - sub-option vbuaa=vbuyy +New fragment synthesis vbuxx=vbuc1 +New fragment synthesis vbuxx=vbuc1 - Successfully loaded vbuxx=vbuc1.asm +New fragment synthesis vbuxx=vbuc1 - sub-option vbuaa=vbuc1 +New fragment synthesis vbuxx=vbuc1 - sub-option vbuxx=vbuaa +New fragment synthesis vbuxx=vbuc1 - sub-option vbuxx=vbuyy +New fragment synthesis vbuxx=vbuc1 - sub-option vbuxx=vbuxx +New fragment synthesis vbuxx=vbuaa +New fragment synthesis vbuxx=vbuaa - Successfully loaded vbuxx=vbuaa.asm +New fragment synthesis vbuxx=vbuaa - sub-option vbuxx=vbuxx +New fragment synthesis vbuxx=vbuaa - sub-option vbuxx=vbuyy +New fragment synthesis vbuxx=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis vbuxx=vbuxx +New fragment synthesis vbuxx=vbuxx - Successfully loaded vbuxx=vbuxx.asm +New fragment synthesis vbuxx=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis vbuxx=vbuyy +New fragment synthesis vbuxx=vbuyy - Successfully loaded vbuxx=vbuyy.asm +New fragment synthesis vbuxx=vbuyy - sub-option vbuxx=vbuaa +New fragment synthesis vbuxx=vbuyy - sub-option vbuaa=vbuyy +New fragment synthesis vbuz1=vbuaa +New fragment synthesis vbuz1=vbuaa - Successfully loaded vbuz1=vbuaa.asm +New fragment synthesis vbuz1=vbuaa - sub-option vbuz1=vbuxx +New fragment synthesis vbuz1=vbuaa - sub-option vbuz1=vbuyy +New fragment synthesis vbuz1=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis vbuz1=vbuaa - sub-option vbuyy=vbuaa +New fragment synthesis vbuz1=vbuaa - sub-option vbuxx=vbuaa +New fragment synthesis vbuz1=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis vbuz1=vbuxx +New fragment synthesis vbuz1=vbuxx - Successfully loaded vbuz1=vbuxx.asm +New fragment synthesis vbuz1=vbuxx - sub-option vbuz1=vbuaa +New fragment synthesis vbuz1=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis vbuz1=vbuxx - sub-option vbuyy=vbuxx +New fragment synthesis vbuz1=vbuxx - sub-option vbuxx=vbuxx +New fragment synthesis vbuz1=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis vbuz1=vbuyy +New fragment synthesis vbuz1=vbuyy - Successfully loaded vbuz1=vbuyy.asm +New fragment synthesis vbuz1=vbuyy - sub-option vbuz1=vbuaa +New fragment synthesis vbuz1=vbuyy - sub-option vbuaa=vbuyy +New fragment synthesis vbuz1=vbuyy - sub-option vbuyy=vbuyy +New fragment synthesis vbuz1=vbuyy - sub-option vbuxx=vbuyy +New fragment synthesis vbuz1=vbuyy - sub-option vbuaa=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuz1=vbuyy - New best, scheduling parent vbuz1=vbuaa +Fragment synthesis vbuz1=vbuyy - New best, scheduling parent vbuz1=vbuc1 +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuz1=vbuxx - New best, scheduling parent vbuz1=vbuaa +Fragment synthesis vbuz1=vbuxx - New best, scheduling parent vbuz1=vbuc1 +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuz1=vbuxx +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuz1=vbuyy +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuz1=vbuaa - New best, scheduling parent vbuz1=vbuxx +Fragment synthesis vbuz1=vbuaa - New best, scheduling parent vbuz1=vbuyy +Fragment synthesis vbuz1=vbuaa - New best, scheduling parent vbuz1=vbuc1 +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuxx=vbuyy - New best, scheduling parent vbuxx=vbuaa +Fragment synthesis vbuxx=vbuyy - New best, scheduling parent vbuxx=vbuc1 +Fragment synthesis vbuxx=vbuyy - New best, scheduling parent vbuz1=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuxx=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuxx=vbuxx - New best, scheduling parent vbuxx=vbuaa +Fragment synthesis vbuxx=vbuxx - New best, scheduling parent vbuxx=vbuc1 +Fragment synthesis vbuxx=vbuxx - New best, scheduling parent vbuz1=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuxx=vbuaa - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuxx=vbuaa - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuaa - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuxx=vbuaa - New best, scheduling parent vbuxx=vbuyy +Fragment synthesis vbuxx=vbuaa - New best, scheduling parent vbuxx=vbuc1 +Fragment synthesis vbuxx=vbuaa - New best, scheduling parent vbuz1=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuz1=vbuxx +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuz1=vbuyy +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuxx=vbuyy - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuxx=vbuc1 - Successfully synthesized from vbuaa=vbuc1 +Fragment synthesis vbuxx=vbuc1 - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuxx=vbuc1 - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuc1 - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuc1 - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuxx=vbuc1 - New best, scheduling parent vbuz1=vbuc1 +Fragment synthesis vbuyy=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuyy=vbuyy - New best, scheduling parent vbuyy=vbuaa +Fragment synthesis vbuyy=vbuyy - New best, scheduling parent vbuyy=vbuc1 +Fragment synthesis vbuyy=vbuyy - New best, scheduling parent vbuz1=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuyy=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuyy=vbuxx - New best, scheduling parent vbuyy=vbuaa +Fragment synthesis vbuyy=vbuxx - New best, scheduling parent vbuyy=vbuc1 +Fragment synthesis vbuyy=vbuxx - New best, scheduling parent vbuz1=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuyy=vbuaa - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuaa - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuaa - Successfully synthesized from vbuyy=vbuyy +Fragment synthesis vbuyy=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuyy=vbuaa - New best, scheduling parent vbuyy=vbuxx +Fragment synthesis vbuyy=vbuaa - New best, scheduling parent vbuyy=vbuc1 +Fragment synthesis vbuyy=vbuaa - New best, scheduling parent vbuz1=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuz1=vbuxx +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuz1=vbuyy +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuyy=vbuxx - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuyy=vbuc1 - Successfully synthesized from vbuaa=vbuc1 +Fragment synthesis vbuyy=vbuc1 - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuyy=vbuc1 - Successfully synthesized from vbuyy=vbuyy +Fragment synthesis vbuyy=vbuc1 - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuc1 - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuc1 - New best, scheduling parent vbuz1=vbuc1 +Fragment synthesis vbuz1=vbuc1 - Successfully synthesized from vbuaa=vbuc1 +Fragment synthesis vbuz1=vbuc1 - Successfully synthesized from vbuyy=vbuc1 +Fragment synthesis vbuz1=vbuc1 - Successfully synthesized from vbuxx=vbuc1 +Fragment synthesis vbuz1=vbuc1 - Successfully synthesized from vbuaa=vbuc1 +Fragment synthesis vbuz1=vbuc1 - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuc1 - Successfully synthesized from vbuz1=vbuyy +Fragment synthesis vbuz1=vbuc1 - Successfully synthesized from vbuz1=vbuxx +Found best fragment vbuz1=vbuc1 < vbuaa=vbuc1 score: 5.5 +New fragment synthesis vbuz1=vbuz2 +New fragment synthesis vbuz1=vbuz2 - sub-option vbuaa=vbuz1 +New fragment synthesis vbuz1=vbuz2 - sub-option vbuyy=vbuz1 +New fragment synthesis vbuz1=vbuz2 - sub-option vbuxx=vbuz1 +New fragment synthesis vbuz1=vbuz2 - sub-option vbuz1=vbuaa +New fragment synthesis vbuz1=vbuz2 - sub-option vbuz1=vbuyy +New fragment synthesis vbuz1=vbuz2 - sub-option vbuz1=vbuxx +New fragment synthesis vbuz1=vbuz2 - sub-option vbuaa=vbuz1 +New fragment synthesis vbuaa=vbuz1 +New fragment synthesis vbuaa=vbuz1 - Successfully loaded vbuaa=vbuz1.asm +New fragment synthesis vbuaa=vbuz1 - sub-option vbuaa=vbuaa +New fragment synthesis vbuaa=vbuz1 - sub-option vbuaa=vbuaa +New fragment synthesis vbuaa=vbuz1 - sub-option vbuaa=vbuyy +New fragment synthesis vbuaa=vbuz1 - sub-option vbuaa=vbuxx +New fragment synthesis vbuyy=vbuz1 +New fragment synthesis vbuyy=vbuz1 - Successfully loaded vbuyy=vbuz1.asm +New fragment synthesis vbuyy=vbuz1 - sub-option vbuyy=vbuaa +New fragment synthesis vbuyy=vbuz1 - sub-option vbuyy=vbuyy +New fragment synthesis vbuyy=vbuz1 - sub-option vbuyy=vbuyy +New fragment synthesis vbuyy=vbuz1 - sub-option vbuyy=vbuxx +New fragment synthesis vbuyy=vbuz1 - sub-option vbuaa=vbuz1 +New fragment synthesis vbuxx=vbuz1 +New fragment synthesis vbuxx=vbuz1 - Successfully loaded vbuxx=vbuz1.asm +New fragment synthesis vbuxx=vbuz1 - sub-option vbuxx=vbuaa +New fragment synthesis vbuxx=vbuz1 - sub-option vbuxx=vbuyy +New fragment synthesis vbuxx=vbuz1 - sub-option vbuxx=vbuxx +New fragment synthesis vbuxx=vbuz1 - sub-option vbuxx=vbuxx +New fragment synthesis vbuxx=vbuz1 - sub-option vbuaa=vbuz1 +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuxx=vbuz1 - New best, scheduling parent vbuz1=vbuz2 +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuyy +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuyy +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuz1 - New best, scheduling parent vbuz1=vbuz2 +Fragment synthesis vbuaa=vbuz1 - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=vbuz1 - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=vbuz1 - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbuaa=vbuz1 - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbuaa=vbuz1 - New best, scheduling parent vbuz1=vbuz2 +Fragment synthesis vbuaa=vbuz1 - New best, scheduling parent vbuyy=vbuz1 +Fragment synthesis vbuaa=vbuz1 - New best, scheduling parent vbuxx=vbuz1 +Fragment synthesis vbuaa=vbuz1 - New best, scheduling parent vbuz1=vbuz2 +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuyy +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuxx=vbuxx +Fragment synthesis vbuxx=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuyy +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuyy +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuyy=vbuxx +Fragment synthesis vbuyy=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis vbuz1=vbuz2 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis vbuz1=vbuz2 - Successfully synthesized from vbuyy=vbuz1 +Fragment synthesis vbuz1=vbuz2 - Successfully synthesized from vbuxx=vbuz1 +Fragment synthesis vbuz1=vbuz2 - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=vbuz2 - Successfully synthesized from vbuz1=vbuyy +Fragment synthesis vbuz1=vbuz2 - Successfully synthesized from vbuz1=vbuxx +Fragment synthesis vbuz1=vbuz2 - Successfully synthesized from vbuaa=vbuz1 +Found best fragment vbuz1=vbuz2 < vbuaa=vbuz1 score: 6.5 +New fragment synthesis vbuz1=vbuz2_ror_1 +New fragment synthesis vbuz1=vbuz2_ror_1 - sub-option vbuaa=vbuz1_ror_1 +New fragment synthesis vbuz1=vbuz2_ror_1 - sub-option vbuyy=vbuz1_ror_1 +New fragment synthesis vbuz1=vbuz2_ror_1 - sub-option vbuxx=vbuz1_ror_1 +New fragment synthesis vbuz1=vbuz2_ror_1 - sub-option vbuz1=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuz2_ror_1 - sub-option vbuz1=vbuyy_ror_1 +New fragment synthesis vbuz1=vbuz2_ror_1 - sub-option vbuz1=vbuxx_ror_1 +New fragment synthesis vbuz1=vbuz2_ror_1 - sub-option vbuaa=vbuz1_ror_1 +New fragment synthesis vbuaa=vbuz1_ror_1 +New fragment synthesis vbuaa=vbuz1_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuaa=vbuz1_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuaa=vbuz1_ror_1 - sub-option vbuaa=vbuyy_ror_1 +New fragment synthesis vbuaa=vbuz1_ror_1 - sub-option vbuaa=vbuxx_ror_1 +New fragment synthesis vbuaa=vbuaa_ror_1 +New fragment synthesis vbuaa=vbuaa_ror_1 - Successfully loaded vbuaa=vbuaa_ror_1.asm +New fragment synthesis vbuaa=vbuyy_ror_1 +New fragment synthesis vbuaa=vbuyy_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuaa=vbuxx_ror_1 +New fragment synthesis vbuaa=vbuxx_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuyy=vbuz1_ror_1 +New fragment synthesis vbuyy=vbuz1_ror_1 - sub-option vbuyy=vbuaa_ror_1 +New fragment synthesis vbuyy=vbuz1_ror_1 - sub-option vbuyy=vbuyy_ror_1 +New fragment synthesis vbuyy=vbuz1_ror_1 - sub-option vbuyy=vbuyy_ror_1 +New fragment synthesis vbuyy=vbuz1_ror_1 - sub-option vbuyy=vbuxx_ror_1 +New fragment synthesis vbuyy=vbuz1_ror_1 - sub-option vbuaa=vbuz1_ror_1 +New fragment synthesis vbuyy=vbuaa_ror_1 +New fragment synthesis vbuyy=vbuaa_ror_1 - sub-option vbuyy=vbuxx_ror_1 +New fragment synthesis vbuyy=vbuaa_ror_1 - sub-option vbuyy=vbuyy_ror_1 +New fragment synthesis vbuyy=vbuaa_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuyy=vbuxx_ror_1 +New fragment synthesis vbuyy=vbuxx_ror_1 - sub-option vbuyy=vbuaa_ror_1 +New fragment synthesis vbuyy=vbuxx_ror_1 - sub-option vbuaa=vbuxx_ror_1 +New fragment synthesis vbuyy=vbuyy_ror_1 +New fragment synthesis vbuyy=vbuyy_ror_1 - sub-option vbuaa=vbuyy_ror_1 +New fragment synthesis vbuxx=vbuz1_ror_1 +New fragment synthesis vbuxx=vbuz1_ror_1 - sub-option vbuxx=vbuaa_ror_1 +New fragment synthesis vbuxx=vbuz1_ror_1 - sub-option vbuxx=vbuyy_ror_1 +New fragment synthesis vbuxx=vbuz1_ror_1 - sub-option vbuxx=vbuxx_ror_1 +New fragment synthesis vbuxx=vbuz1_ror_1 - sub-option vbuxx=vbuxx_ror_1 +New fragment synthesis vbuxx=vbuz1_ror_1 - sub-option vbuaa=vbuz1_ror_1 +New fragment synthesis vbuxx=vbuaa_ror_1 +New fragment synthesis vbuxx=vbuaa_ror_1 - sub-option vbuxx=vbuxx_ror_1 +New fragment synthesis vbuxx=vbuaa_ror_1 - sub-option vbuxx=vbuyy_ror_1 +New fragment synthesis vbuxx=vbuaa_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuxx=vbuxx_ror_1 +New fragment synthesis vbuxx=vbuxx_ror_1 - sub-option vbuaa=vbuxx_ror_1 +New fragment synthesis vbuxx=vbuyy_ror_1 +New fragment synthesis vbuxx=vbuyy_ror_1 - sub-option vbuxx=vbuaa_ror_1 +New fragment synthesis vbuxx=vbuyy_ror_1 - sub-option vbuaa=vbuyy_ror_1 +New fragment synthesis vbuz1=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuaa_ror_1 - sub-option vbuz1=vbuxx_ror_1 +New fragment synthesis vbuz1=vbuaa_ror_1 - sub-option vbuz1=vbuyy_ror_1 +New fragment synthesis vbuz1=vbuaa_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuaa_ror_1 - sub-option vbuyy=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuaa_ror_1 - sub-option vbuxx=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuaa_ror_1 - sub-option vbuaa=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuxx_ror_1 +New fragment synthesis vbuz1=vbuxx_ror_1 - sub-option vbuz1=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuxx_ror_1 - sub-option vbuaa=vbuxx_ror_1 +New fragment synthesis vbuz1=vbuxx_ror_1 - sub-option vbuyy=vbuxx_ror_1 +New fragment synthesis vbuz1=vbuxx_ror_1 - sub-option vbuxx=vbuxx_ror_1 +New fragment synthesis vbuz1=vbuxx_ror_1 - sub-option vbuaa=vbuxx_ror_1 +New fragment synthesis vbuz1=vbuyy_ror_1 +New fragment synthesis vbuz1=vbuyy_ror_1 - sub-option vbuz1=vbuaa_ror_1 +New fragment synthesis vbuz1=vbuyy_ror_1 - sub-option vbuaa=vbuyy_ror_1 +New fragment synthesis vbuz1=vbuyy_ror_1 - sub-option vbuyy=vbuyy_ror_1 +New fragment synthesis vbuz1=vbuyy_ror_1 - sub-option vbuxx=vbuyy_ror_1 +New fragment synthesis vbuz1=vbuyy_ror_1 - sub-option vbuaa=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_ror_1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_ror_1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_ror_1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_ror_1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_ror_1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_ror_1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_ror_1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_ror_1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_ror_1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_ror_1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_ror_1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_ror_1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuaa=vbuz1_ror_1 +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuaa=vbuz1_ror_1 +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuaa=vbuyy_ror_1 +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuaa=vbuxx_ror_1 +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuyy=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuxx=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuz1=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuaa_ror_1 - New best, scheduling parent vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - New best, scheduling parent vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - New best, scheduling parent vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - New best, scheduling parent vbuz1=vbuz2_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - New best, scheduling parent vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - New best, scheduling parent vbuz1=vbuz2_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - New best, scheduling parent vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - New best, scheduling parent vbuz1=vbuz2_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - New best, scheduling parent vbuxx=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - New best, scheduling parent vbuxx=vbuz1_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - New best, scheduling parent vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - New best, scheduling parent vbuz1=vbuz2_ror_1 +Fragment synthesis vbuxx=vbuyy_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuyy_ror_1 - New best, scheduling parent vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuyy_ror_1 - New best, scheduling parent vbuxx=vbuz1_ror_1 +Fragment synthesis vbuxx=vbuyy_ror_1 - New best, scheduling parent vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - New best, scheduling parent vbuyy=vbuxx_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - New best, scheduling parent vbuyy=vbuz1_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - New best, scheduling parent vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuyy=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - New best, scheduling parent vbuz1=vbuz2_ror_1 +Fragment synthesis vbuyy=vbuxx_ror_1 - Successfully synthesized from vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuxx_ror_1 - New best, scheduling parent vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuxx_ror_1 - New best, scheduling parent vbuyy=vbuz1_ror_1 +Fragment synthesis vbuyy=vbuxx_ror_1 - New best, scheduling parent vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuxx_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuxx_ror_1 - New best, scheduling parent vbuaa=vbuz1_ror_1 +Fragment synthesis vbuaa=vbuxx_ror_1 - New best, scheduling parent vbuyy=vbuxx_ror_1 +Fragment synthesis vbuaa=vbuxx_ror_1 - New best, scheduling parent vbuxx=vbuxx_ror_1 +Fragment synthesis vbuaa=vbuxx_ror_1 - New best, scheduling parent vbuz1=vbuxx_ror_1 +Fragment synthesis vbuaa=vbuxx_ror_1 - New best, scheduling parent vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuaa=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuaa=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuxx_ror_1 - Successfully synthesized from vbuaa=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuxx_ror_1 - New best, scheduling parent vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuxx_ror_1 - New best, scheduling parent vbuxx=vbuz1_ror_1 +Fragment synthesis vbuxx=vbuxx_ror_1 - New best, scheduling parent vbuxx=vbuz1_ror_1 +Fragment synthesis vbuxx=vbuxx_ror_1 - New best, scheduling parent vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuaa=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuxx=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuxx_ror_1 - Successfully synthesized from vbuaa=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - Successfully synthesized from vbuxx=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuxx_ror_1 - Successfully synthesized from vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuxx_ror_1 - Successfully synthesized from vbuaa=vbuxx_ror_1 +Fragment synthesis vbuaa=vbuyy_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuyy_ror_1 - New best, scheduling parent vbuaa=vbuz1_ror_1 +Fragment synthesis vbuaa=vbuyy_ror_1 - New best, scheduling parent vbuyy=vbuyy_ror_1 +Fragment synthesis vbuaa=vbuyy_ror_1 - New best, scheduling parent vbuxx=vbuyy_ror_1 +Fragment synthesis vbuaa=vbuyy_ror_1 - New best, scheduling parent vbuz1=vbuyy_ror_1 +Fragment synthesis vbuaa=vbuyy_ror_1 - New best, scheduling parent vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuaa=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuaa=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuyy_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuyy_ror_1 - Successfully synthesized from vbuaa=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuyy_ror_1 - Successfully synthesized from vbuaa=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuyy_ror_1 - New best, scheduling parent vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuyy_ror_1 - New best, scheduling parent vbuyy=vbuz1_ror_1 +Fragment synthesis vbuyy=vbuyy_ror_1 - New best, scheduling parent vbuyy=vbuz1_ror_1 +Fragment synthesis vbuyy=vbuyy_ror_1 - New best, scheduling parent vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuaa=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuyy=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuyy_ror_1 - Successfully synthesized from vbuaa=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - Successfully synthesized from vbuyy=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuaa_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - Successfully synthesized from vbuaa=vbuaa_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - Successfully synthesized from vbuaa=vbuyy_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - Successfully synthesized from vbuaa=vbuxx_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - New best, scheduling parent vbuz1=vbuz2_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - New best, scheduling parent vbuyy=vbuz1_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - New best, scheduling parent vbuxx=vbuz1_ror_1 +Fragment synthesis vbuaa=vbuz1_ror_1 - New best, scheduling parent vbuz1=vbuz2_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuaa_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuyy_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuxx=vbuxx_ror_1 +Fragment synthesis vbuxx=vbuz1_ror_1 - Successfully synthesized from vbuaa=vbuz1_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuaa_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuyy_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuyy=vbuxx_ror_1 +Fragment synthesis vbuyy=vbuz1_ror_1 - Successfully synthesized from vbuaa=vbuz1_ror_1 +Fragment synthesis vbuz1=vbuz2_ror_1 - Successfully synthesized from vbuaa=vbuz1_ror_1 +Fragment synthesis vbuz1=vbuz2_ror_1 - Successfully synthesized from vbuyy=vbuz1_ror_1 +Fragment synthesis vbuz1=vbuz2_ror_1 - Successfully synthesized from vbuxx=vbuz1_ror_1 +Fragment synthesis vbuz1=vbuz2_ror_1 - Successfully synthesized from vbuz1=vbuaa_ror_1 +Fragment synthesis vbuz1=vbuz2_ror_1 - Successfully synthesized from vbuz1=vbuyy_ror_1 +Fragment synthesis vbuz1=vbuz2_ror_1 - Successfully synthesized from vbuz1=vbuxx_ror_1 +Fragment synthesis vbuz1=vbuz2_ror_1 - Successfully synthesized from vbuaa=vbuz1_ror_1 +Found best fragment vbuz1=vbuz2_ror_1 < vbuaa=vbuz1_ror_1 < vbuaa=vbuaa_ror_1 score: 8.5 +New fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - sub-option vwuz1=pwuc1_derefidx_vbuaa +New fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - sub-option vwuz1=pwuc1_derefidx_vbuyy +New fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - sub-option vwuz1=pwuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - sub-option vwuz1=pwuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - sub-option vwuz1=pwuc1_derefidx_vbuyy +New fragment synthesis vwuz1=pwuc1_derefidx_vbuaa +New fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - sub-option vwuz1=pwuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - sub-option vwuz1=pwuc1_derefidx_vbuyy +New fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - sub-option vwuz1=pwuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - sub-option vwuz1=pwuc1_derefidx_vbuyy +New fragment synthesis vwuz1=pwuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - Successfully loaded vwuz1=pwuc1_derefidx_vbuxx.asm +New fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - sub-option vwuz1=pwuc1_derefidx_vbuaa +New fragment synthesis vwuz1=pwuc1_derefidx_vbuyy +New fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - Successfully loaded vwuz1=pwuc1_derefidx_vbuyy.asm +New fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - sub-option vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pwuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=pwuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuaa +Fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pwuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=pwuc1_derefidx_vbuyy +Found best fragment vwuz1=pwuc1_derefidx_vbuz2 < vwuz1=pwuc1_derefidx_vbuyy score: 19.5 +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuaa=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuyy=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuxx=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuz1=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuz1=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuz1=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuaa=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuz1=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - sub-option vbuz1=pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - Successfully loaded vbuaa=pbuc1_derefidx_vbuxx.asm +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - sub-option vbuaa=vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - Successfully loaded vbuaa=pbuc1_derefidx_vbuyy.asm +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - sub-option vbuaa=vbuaa +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - sub-option vbuyy=pbuc1_derefidx_vbuaa +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - sub-option vbuyy=pbuc1_derefidx_vbuyy +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - sub-option vbuyy=pbuc1_derefidx_vbuyy +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - sub-option vbuyy=pbuc1_derefidx_vbuxx +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - sub-option vbuyy=pbuc1_derefidx_vbuxx +New fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - sub-option vbuyy=pbuc1_derefidx_vbuyy +New fragment synthesis vbuyy=pbuc1_derefidx_vbuaa +New fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - sub-option vbuyy=pbuc1_derefidx_vbuxx +New fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - sub-option vbuyy=pbuc1_derefidx_vbuyy +New fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - sub-option vbuyy=pbuc1_derefidx_vbuxx +New fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - sub-option vbuyy=pbuc1_derefidx_vbuyy +New fragment synthesis vbuyy=pbuc1_derefidx_vbuxx +New fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully loaded vbuyy=pbuc1_derefidx_vbuxx.asm +New fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - sub-option vbuyy=pbuc1_derefidx_vbuaa +New fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - sub-option vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - sub-option vbuyy=vbuaa +New fragment synthesis vbuyy=pbuc1_derefidx_vbuyy +New fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - sub-option vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - sub-option vbuyy=vbuaa +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - sub-option vbuxx=pbuc1_derefidx_vbuaa +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - sub-option vbuxx=pbuc1_derefidx_vbuyy +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - sub-option vbuxx=pbuc1_derefidx_vbuxx +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - sub-option vbuxx=pbuc1_derefidx_vbuxx +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuz1 +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - sub-option vbuxx=pbuc1_derefidx_vbuxx +New fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - sub-option vbuxx=pbuc1_derefidx_vbuyy +New fragment synthesis vbuxx=pbuc1_derefidx_vbuaa +New fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - sub-option vbuxx=pbuc1_derefidx_vbuxx +New fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - sub-option vbuxx=pbuc1_derefidx_vbuyy +New fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - sub-option vbuxx=pbuc1_derefidx_vbuxx +New fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - sub-option vbuxx=pbuc1_derefidx_vbuyy +New fragment synthesis vbuxx=pbuc1_derefidx_vbuxx +New fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - sub-option vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - sub-option vbuxx=vbuaa +New fragment synthesis vbuxx=pbuc1_derefidx_vbuyy +New fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - sub-option vbuxx=pbuc1_derefidx_vbuaa +New fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - sub-option vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - sub-option vbuxx=vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuz1=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuz1=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuyy=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuxx=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuz1=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - sub-option vbuz1=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - sub-option vbuz1=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - sub-option vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - sub-option vbuyy=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - sub-option vbuxx=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - sub-option vbuaa=pbuc1_derefidx_vbuxx +New fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - sub-option vbuz1=vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - sub-option vbuz1=pbuc1_derefidx_vbuaa +New fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - sub-option vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - sub-option vbuyy=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - sub-option vbuxx=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - sub-option vbuaa=pbuc1_derefidx_vbuyy +New fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - sub-option vbuz1=vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuz1=vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuxx=vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuyy=vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuaa - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuz1=pbuc1_derefidx_vbuz2 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuaa +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuxx +Fragment synthesis vbuxx=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuaa +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuxx +Fragment synthesis vbuyy=pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuyy=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuxx=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuaa +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1 +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuxx +Fragment synthesis vbuz1=pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuz1=pbuc1_derefidx_vbuyy +Found best fragment vbuz1=pbuc1_derefidx_vbuz2 < vbuaa=pbuc1_derefidx_vbuz1 < vbuaa=pbuc1_derefidx_vbuyy score: 12.0 +New fragment synthesis vbuz1=vbuz1_plus_2 +New fragment synthesis vbuz1=vbuz1_plus_2 - sub-option vbuz1=2_plus_vbuz1 +New fragment synthesis vbuz1=vbuz1_plus_2 - sub-option vbuaa=vbuz1_plus_2 +New fragment synthesis vbuz1=vbuz1_plus_2 - sub-option vbuz1=vbuz2_plus_2 +New fragment synthesis vbuz1=2_plus_vbuz1 +New fragment synthesis vbuz1=2_plus_vbuz1 - sub-option vbuz1=vbuz1_plus_2 +New fragment synthesis vbuz1=2_plus_vbuz1 - sub-option vbuaa=2_plus_vbuz1 +New fragment synthesis vbuz1=2_plus_vbuz1 - sub-option vbuz1=2_plus_vbuz2 +New fragment synthesis vbuaa=2_plus_vbuz1 +New fragment synthesis vbuaa=2_plus_vbuz1 - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuaa=2_plus_vbuz1 - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuaa=2_plus_vbuz1 - sub-option vbuaa=2_plus_vbuyy +New fragment synthesis vbuaa=2_plus_vbuz1 - sub-option vbuaa=2_plus_vbuxx +New fragment synthesis vbuaa=2_plus_vbuz1 - sub-option vbuaa=vbuz1_plus_2 +New fragment synthesis vbuaa=2_plus_vbuaa +New fragment synthesis vbuaa=2_plus_vbuaa - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuaa=vbuaa_plus_2 +New fragment synthesis vbuaa=vbuaa_plus_2 - Successfully loaded vbuaa=vbuaa_plus_2.asm +New fragment synthesis vbuaa=vbuaa_plus_2 - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuaa=2_plus_vbuyy +New fragment synthesis vbuaa=2_plus_vbuyy - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuaa=2_plus_vbuyy - sub-option vbuaa=vbuyy_plus_2 +New fragment synthesis vbuaa=vbuyy_plus_2 +New fragment synthesis vbuaa=vbuyy_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuaa=vbuyy_plus_2 - sub-option vbuaa=2_plus_vbuyy +New fragment synthesis vbuaa=2_plus_vbuxx +New fragment synthesis vbuaa=2_plus_vbuxx - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuaa=2_plus_vbuxx - sub-option vbuaa=vbuxx_plus_2 +New fragment synthesis vbuaa=vbuxx_plus_2 +New fragment synthesis vbuaa=vbuxx_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuaa=vbuxx_plus_2 - sub-option vbuaa=2_plus_vbuxx +New fragment synthesis vbuaa=vbuz1_plus_2 +New fragment synthesis vbuaa=vbuz1_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuaa=vbuz1_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuaa=vbuz1_plus_2 - sub-option vbuaa=vbuyy_plus_2 +New fragment synthesis vbuaa=vbuz1_plus_2 - sub-option vbuaa=vbuxx_plus_2 +New fragment synthesis vbuaa=vbuz1_plus_2 - sub-option vbuaa=2_plus_vbuz1 +New fragment synthesis vbuz1=2_plus_vbuz2 +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuaa=2_plus_vbuz1 +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuyy=2_plus_vbuz1 +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuxx=2_plus_vbuz1 +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuz1=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuz1=2_plus_vbuyy +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuz1=2_plus_vbuxx +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuz1=vbuz2_plus_2 +New fragment synthesis vbuz1=2_plus_vbuz2 - sub-option vbuaa=2_plus_vbuz1 +New fragment synthesis vbuyy=2_plus_vbuz1 +New fragment synthesis vbuyy=2_plus_vbuz1 - sub-option vbuyy=2_plus_vbuaa +New fragment synthesis vbuyy=2_plus_vbuz1 - sub-option vbuyy=2_plus_vbuyy +New fragment synthesis vbuyy=2_plus_vbuz1 - sub-option vbuyy=2_plus_vbuyy +New fragment synthesis vbuyy=2_plus_vbuz1 - sub-option vbuyy=2_plus_vbuxx +New fragment synthesis vbuyy=2_plus_vbuz1 - sub-option vbuyy=vbuz1_plus_2 +New fragment synthesis vbuyy=2_plus_vbuz1 - sub-option vbuaa=2_plus_vbuz1 +New fragment synthesis vbuyy=2_plus_vbuaa +New fragment synthesis vbuyy=2_plus_vbuaa - sub-option vbuyy=2_plus_vbuxx +New fragment synthesis vbuyy=2_plus_vbuaa - sub-option vbuyy=2_plus_vbuyy +New fragment synthesis vbuyy=2_plus_vbuaa - sub-option vbuyy=vbuaa_plus_2 +New fragment synthesis vbuyy=2_plus_vbuaa - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuyy=2_plus_vbuxx +New fragment synthesis vbuyy=2_plus_vbuxx - sub-option vbuyy=2_plus_vbuaa +New fragment synthesis vbuyy=2_plus_vbuxx - sub-option vbuyy=vbuxx_plus_2 +New fragment synthesis vbuyy=2_plus_vbuxx - sub-option vbuaa=2_plus_vbuxx +New fragment synthesis vbuyy=vbuxx_plus_2 +New fragment synthesis vbuyy=vbuxx_plus_2 - sub-option vbuyy=vbuaa_plus_2 +New fragment synthesis vbuyy=vbuxx_plus_2 - sub-option vbuyy=2_plus_vbuxx +New fragment synthesis vbuyy=vbuxx_plus_2 - sub-option vbuaa=vbuxx_plus_2 +New fragment synthesis vbuyy=vbuaa_plus_2 +New fragment synthesis vbuyy=vbuaa_plus_2 - sub-option vbuyy=vbuxx_plus_2 +New fragment synthesis vbuyy=vbuaa_plus_2 - sub-option vbuyy=vbuyy_plus_2 +New fragment synthesis vbuyy=vbuaa_plus_2 - sub-option vbuyy=2_plus_vbuaa +New fragment synthesis vbuyy=vbuaa_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuyy=vbuyy_plus_2 +New fragment synthesis vbuyy=vbuyy_plus_2 - Successfully loaded vbuyy=vbuyy_plus_2.asm +New fragment synthesis vbuyy=vbuyy_plus_2 - sub-option vbuyy=2_plus_vbuyy +New fragment synthesis vbuyy=vbuyy_plus_2 - sub-option vbuaa=vbuyy_plus_2 +New fragment synthesis vbuyy=2_plus_vbuyy +New fragment synthesis vbuyy=2_plus_vbuyy - sub-option vbuyy=vbuyy_plus_2 +New fragment synthesis vbuyy=2_plus_vbuyy - sub-option vbuaa=2_plus_vbuyy +New fragment synthesis vbuyy=vbuz1_plus_2 +New fragment synthesis vbuyy=vbuz1_plus_2 - sub-option vbuyy=vbuaa_plus_2 +New fragment synthesis vbuyy=vbuz1_plus_2 - sub-option vbuyy=vbuyy_plus_2 +New fragment synthesis vbuyy=vbuz1_plus_2 - sub-option vbuyy=vbuyy_plus_2 +New fragment synthesis vbuyy=vbuz1_plus_2 - sub-option vbuyy=vbuxx_plus_2 +New fragment synthesis vbuyy=vbuz1_plus_2 - sub-option vbuyy=2_plus_vbuz1 +New fragment synthesis vbuyy=vbuz1_plus_2 - sub-option vbuaa=vbuz1_plus_2 +New fragment synthesis vbuxx=2_plus_vbuz1 +New fragment synthesis vbuxx=2_plus_vbuz1 - sub-option vbuxx=2_plus_vbuaa +New fragment synthesis vbuxx=2_plus_vbuz1 - sub-option vbuxx=2_plus_vbuyy +New fragment synthesis vbuxx=2_plus_vbuz1 - sub-option vbuxx=2_plus_vbuxx +New fragment synthesis vbuxx=2_plus_vbuz1 - sub-option vbuxx=2_plus_vbuxx +New fragment synthesis vbuxx=2_plus_vbuz1 - sub-option vbuxx=vbuz1_plus_2 +New fragment synthesis vbuxx=2_plus_vbuz1 - sub-option vbuaa=2_plus_vbuz1 +New fragment synthesis vbuxx=2_plus_vbuaa +New fragment synthesis vbuxx=2_plus_vbuaa - sub-option vbuxx=2_plus_vbuxx +New fragment synthesis vbuxx=2_plus_vbuaa - sub-option vbuxx=2_plus_vbuyy +New fragment synthesis vbuxx=2_plus_vbuaa - sub-option vbuxx=vbuaa_plus_2 +New fragment synthesis vbuxx=2_plus_vbuaa - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuxx=2_plus_vbuxx +New fragment synthesis vbuxx=2_plus_vbuxx - sub-option vbuxx=vbuxx_plus_2 +New fragment synthesis vbuxx=2_plus_vbuxx - sub-option vbuaa=2_plus_vbuxx +New fragment synthesis vbuxx=vbuxx_plus_2 +New fragment synthesis vbuxx=vbuxx_plus_2 - Successfully loaded vbuxx=vbuxx_plus_2.asm +New fragment synthesis vbuxx=vbuxx_plus_2 - sub-option vbuxx=2_plus_vbuxx +New fragment synthesis vbuxx=vbuxx_plus_2 - sub-option vbuaa=vbuxx_plus_2 +New fragment synthesis vbuxx=2_plus_vbuyy +New fragment synthesis vbuxx=2_plus_vbuyy - sub-option vbuxx=2_plus_vbuaa +New fragment synthesis vbuxx=2_plus_vbuyy - sub-option vbuxx=vbuyy_plus_2 +New fragment synthesis vbuxx=2_plus_vbuyy - sub-option vbuaa=2_plus_vbuyy +New fragment synthesis vbuxx=vbuyy_plus_2 +New fragment synthesis vbuxx=vbuyy_plus_2 - sub-option vbuxx=vbuaa_plus_2 +New fragment synthesis vbuxx=vbuyy_plus_2 - sub-option vbuxx=2_plus_vbuyy +New fragment synthesis vbuxx=vbuyy_plus_2 - sub-option vbuaa=vbuyy_plus_2 +New fragment synthesis vbuxx=vbuaa_plus_2 +New fragment synthesis vbuxx=vbuaa_plus_2 - sub-option vbuxx=vbuxx_plus_2 +New fragment synthesis vbuxx=vbuaa_plus_2 - sub-option vbuxx=vbuyy_plus_2 +New fragment synthesis vbuxx=vbuaa_plus_2 - sub-option vbuxx=2_plus_vbuaa +New fragment synthesis vbuxx=vbuaa_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuxx=vbuz1_plus_2 +New fragment synthesis vbuxx=vbuz1_plus_2 - sub-option vbuxx=vbuaa_plus_2 +New fragment synthesis vbuxx=vbuz1_plus_2 - sub-option vbuxx=vbuyy_plus_2 +New fragment synthesis vbuxx=vbuz1_plus_2 - sub-option vbuxx=vbuxx_plus_2 +New fragment synthesis vbuxx=vbuz1_plus_2 - sub-option vbuxx=vbuxx_plus_2 +New fragment synthesis vbuxx=vbuz1_plus_2 - sub-option vbuxx=2_plus_vbuz1 +New fragment synthesis vbuxx=vbuz1_plus_2 - sub-option vbuaa=vbuz1_plus_2 +New fragment synthesis vbuz1=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuaa - sub-option vbuz1=2_plus_vbuxx +New fragment synthesis vbuz1=2_plus_vbuaa - sub-option vbuz1=2_plus_vbuyy +New fragment synthesis vbuz1=2_plus_vbuaa - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuaa - sub-option vbuyy=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuaa - sub-option vbuxx=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuaa - sub-option vbuz1=vbuaa_plus_2 +New fragment synthesis vbuz1=2_plus_vbuaa - sub-option vbuaa=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuxx +New fragment synthesis vbuz1=2_plus_vbuxx - sub-option vbuz1=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuxx - sub-option vbuaa=2_plus_vbuxx +New fragment synthesis vbuz1=2_plus_vbuxx - sub-option vbuyy=2_plus_vbuxx +New fragment synthesis vbuz1=2_plus_vbuxx - sub-option vbuxx=2_plus_vbuxx +New fragment synthesis vbuz1=2_plus_vbuxx - sub-option vbuz1=vbuxx_plus_2 +New fragment synthesis vbuz1=2_plus_vbuxx - sub-option vbuaa=2_plus_vbuxx +New fragment synthesis vbuz1=vbuxx_plus_2 +New fragment synthesis vbuz1=vbuxx_plus_2 - sub-option vbuz1=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuxx_plus_2 - sub-option vbuaa=vbuxx_plus_2 +New fragment synthesis vbuz1=vbuxx_plus_2 - sub-option vbuyy=vbuxx_plus_2 +New fragment synthesis vbuz1=vbuxx_plus_2 - sub-option vbuxx=vbuxx_plus_2 +New fragment synthesis vbuz1=vbuxx_plus_2 - sub-option vbuz1=2_plus_vbuxx +New fragment synthesis vbuz1=vbuxx_plus_2 - sub-option vbuaa=vbuxx_plus_2 +New fragment synthesis vbuz1=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuaa_plus_2 - sub-option vbuz1=vbuxx_plus_2 +New fragment synthesis vbuz1=vbuaa_plus_2 - sub-option vbuz1=vbuyy_plus_2 +New fragment synthesis vbuz1=vbuaa_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuaa_plus_2 - sub-option vbuyy=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuaa_plus_2 - sub-option vbuxx=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuaa_plus_2 - sub-option vbuz1=2_plus_vbuaa +New fragment synthesis vbuz1=vbuaa_plus_2 - sub-option vbuaa=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuyy_plus_2 +New fragment synthesis vbuz1=vbuyy_plus_2 - sub-option vbuz1=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuyy_plus_2 - sub-option vbuaa=vbuyy_plus_2 +New fragment synthesis vbuz1=vbuyy_plus_2 - sub-option vbuyy=vbuyy_plus_2 +New fragment synthesis vbuz1=vbuyy_plus_2 - sub-option vbuxx=vbuyy_plus_2 +New fragment synthesis vbuz1=vbuyy_plus_2 - sub-option vbuz1=2_plus_vbuyy +New fragment synthesis vbuz1=vbuyy_plus_2 - sub-option vbuaa=vbuyy_plus_2 +New fragment synthesis vbuz1=2_plus_vbuyy +New fragment synthesis vbuz1=2_plus_vbuyy - sub-option vbuz1=2_plus_vbuaa +New fragment synthesis vbuz1=2_plus_vbuyy - sub-option vbuaa=2_plus_vbuyy +New fragment synthesis vbuz1=2_plus_vbuyy - sub-option vbuyy=2_plus_vbuyy +New fragment synthesis vbuz1=2_plus_vbuyy - sub-option vbuxx=2_plus_vbuyy +New fragment synthesis vbuz1=2_plus_vbuyy - sub-option vbuz1=vbuyy_plus_2 +New fragment synthesis vbuz1=2_plus_vbuyy - sub-option vbuaa=2_plus_vbuyy +New fragment synthesis vbuz1=vbuz2_plus_2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuaa=vbuz1_plus_2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuyy=vbuz1_plus_2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuxx=vbuz1_plus_2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuz1=vbuaa_plus_2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuz1=vbuyy_plus_2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuz1=vbuxx_plus_2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuz1=2_plus_vbuz2 +New fragment synthesis vbuz1=vbuz2_plus_2 - sub-option vbuaa=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - No file or synthesis results! +Fragment synthesis vbuz1=2_plus_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_plus_2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_plus_2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_plus_2 - No file or synthesis results! +Fragment synthesis vbuz1=2_plus_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=2_plus_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_plus_2 - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_plus_2 - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_plus_2 - No file or synthesis results! +Fragment synthesis vbuxx=2_plus_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_plus_2 - New best, scheduling parent vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=vbuxx_plus_2 - New best, scheduling parent vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuxx_plus_2 - New best, scheduling parent vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=vbuxx_plus_2 - New best, scheduling parent vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - New best, scheduling parent vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - New best, scheduling parent vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=vbuz1_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - New best, scheduling parent vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - New best, scheduling parent vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=vbuaa_plus_2 - New best, scheduling parent vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuxx - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=2_plus_vbuxx - New best, scheduling parent vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=2_plus_vbuxx - New best, scheduling parent vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuxx - New best, scheduling parent vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=2_plus_vbuxx - New best, scheduling parent vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuxx_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=2_plus_vbuaa - New best, scheduling parent vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuaa - New best, scheduling parent vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=2_plus_vbuaa - New best, scheduling parent vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=2_plus_vbuz1 - New best, scheduling parent vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=2_plus_vbuz1 - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuyy=vbuz1_plus_2 - No file or synthesis results! +Fragment synthesis vbuyy=2_plus_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_plus_2 - New best, scheduling parent vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=vbuyy_plus_2 - New best, scheduling parent vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuyy_plus_2 - New best, scheduling parent vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=vbuyy_plus_2 - New best, scheduling parent vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - New best, scheduling parent vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - New best, scheduling parent vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=vbuz1_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuyy - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=2_plus_vbuyy - New best, scheduling parent vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=2_plus_vbuyy - New best, scheduling parent vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuyy - New best, scheduling parent vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=2_plus_vbuyy - New best, scheduling parent vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuyy_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - New best, scheduling parent vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - New best, scheduling parent vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=vbuaa_plus_2 - New best, scheduling parent vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=2_plus_vbuaa - New best, scheduling parent vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuaa - New best, scheduling parent vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=2_plus_vbuaa - New best, scheduling parent vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=2_plus_vbuz1 - New best, scheduling parent vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=2_plus_vbuz1 - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - New best, scheduling parent vbuz1=2_plus_vbuz1 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuaa=vbuz1_plus_2 - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_plus_2 - No file or synthesis results! +Fragment synthesis vbuaa=2_plus_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_plus_2 - No file or synthesis results! +Fragment synthesis vbuaa=2_plus_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuaa=2_plus_vbuaa +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuaa=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuaa=vbuxx_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuaa=vbuz1_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuaa=vbuz1_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuyy=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuxx=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - New best, scheduling parent vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - New best, scheduling parent vbuz1=2_plus_vbuz1 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - New best, scheduling parent vbuaa=2_plus_vbuz1 +Fragment synthesis vbuaa=vbuz1_plus_2 - New best, scheduling parent vbuyy=vbuz1_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - New best, scheduling parent vbuxx=vbuz1_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - New best, scheduling parent vbuz1=vbuz2_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - New best, scheduling parent vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=vbuz2_plus_2 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuaa=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuxx_plus_2 - New best, scheduling parent vbuaa=2_plus_vbuxx +Fragment synthesis vbuaa=vbuxx_plus_2 - New best, scheduling parent vbuaa=vbuz1_plus_2 +Fragment synthesis vbuaa=vbuxx_plus_2 - New best, scheduling parent vbuyy=vbuxx_plus_2 +Fragment synthesis vbuaa=vbuxx_plus_2 - New best, scheduling parent vbuxx=vbuxx_plus_2 +Fragment synthesis vbuaa=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuaa=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuxx_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - New best, scheduling parent vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuyy=2_plus_vbuz1 +Fragment synthesis vbuyy=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuaa=2_plus_vbuxx - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuaa=2_plus_vbuxx - New best, scheduling parent vbuaa=vbuxx_plus_2 +Fragment synthesis vbuaa=2_plus_vbuxx - New best, scheduling parent vbuaa=2_plus_vbuz1 +Fragment synthesis vbuaa=2_plus_vbuxx - New best, scheduling parent vbuyy=2_plus_vbuxx +Fragment synthesis vbuaa=2_plus_vbuxx - New best, scheduling parent vbuxx=2_plus_vbuxx +Fragment synthesis vbuaa=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuaa=2_plus_vbuxx - New best, scheduling parent vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuaa=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuz1=vbuxx_plus_2 +Fragment synthesis vbuz1=2_plus_vbuxx - Successfully synthesized from vbuaa=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuxx - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=2_plus_vbuxx - Successfully synthesized from vbuaa=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuyy=vbuxx_plus_2 +Fragment synthesis vbuyy=2_plus_vbuxx - Successfully synthesized from vbuaa=2_plus_vbuxx +Fragment synthesis vbuaa=vbuxx_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuxx_plus_2 - Successfully synthesized from vbuaa=2_plus_vbuxx +Fragment synthesis vbuaa=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuyy_plus_2 - New best, scheduling parent vbuaa=2_plus_vbuyy +Fragment synthesis vbuaa=vbuyy_plus_2 - New best, scheduling parent vbuaa=vbuz1_plus_2 +Fragment synthesis vbuaa=vbuyy_plus_2 - New best, scheduling parent vbuyy=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuyy_plus_2 - New best, scheduling parent vbuxx=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - New best, scheduling parent vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuxx=2_plus_vbuz1 +Fragment synthesis vbuxx=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuxx_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=vbuaa_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuyy=vbuyy_plus_2 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuaa=2_plus_vbuyy - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuaa=2_plus_vbuyy - New best, scheduling parent vbuaa=vbuyy_plus_2 +Fragment synthesis vbuaa=2_plus_vbuyy - New best, scheduling parent vbuaa=2_plus_vbuz1 +Fragment synthesis vbuaa=2_plus_vbuyy - New best, scheduling parent vbuyy=2_plus_vbuyy +Fragment synthesis vbuaa=2_plus_vbuyy - New best, scheduling parent vbuxx=2_plus_vbuyy +Fragment synthesis vbuaa=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuaa=2_plus_vbuyy - New best, scheduling parent vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuaa=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuz1=vbuyy_plus_2 +Fragment synthesis vbuz1=2_plus_vbuyy - Successfully synthesized from vbuaa=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuxx=vbuyy_plus_2 +Fragment synthesis vbuxx=2_plus_vbuyy - Successfully synthesized from vbuaa=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuyy - Successfully synthesized from vbuyy=vbuyy_plus_2 +Fragment synthesis vbuyy=2_plus_vbuyy - Successfully synthesized from vbuaa=2_plus_vbuyy +Fragment synthesis vbuaa=vbuyy_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuyy_plus_2 - Successfully synthesized from vbuaa=2_plus_vbuyy +Fragment synthesis vbuaa=2_plus_vbuaa - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuaa=2_plus_vbuz1 +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuaa=2_plus_vbuz1 +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuaa=2_plus_vbuyy +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuaa=2_plus_vbuxx +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuyy=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuxx=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuaa - New best, scheduling parent vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuz1=vbuaa_plus_2 +Fragment synthesis vbuz1=2_plus_vbuaa - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuxx=vbuaa_plus_2 +Fragment synthesis vbuxx=2_plus_vbuaa - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuyy=vbuaa_plus_2 +Fragment synthesis vbuyy=2_plus_vbuaa - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuxx - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuxx - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuaa=2_plus_vbuyy - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuyy - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuaa_plus_2 - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuaa +Fragment synthesis vbuaa=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuyy +Fragment synthesis vbuaa=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuxx +Fragment synthesis vbuaa=2_plus_vbuz1 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuaa=2_plus_vbuz1 - New best, scheduling parent vbuaa=vbuz1_plus_2 +Fragment synthesis vbuaa=2_plus_vbuz1 - New best, scheduling parent vbuz1=2_plus_vbuz1 +Fragment synthesis vbuaa=2_plus_vbuz1 - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuaa=2_plus_vbuz1 - New best, scheduling parent vbuyy=2_plus_vbuz1 +Fragment synthesis vbuaa=2_plus_vbuz1 - New best, scheduling parent vbuxx=2_plus_vbuz1 +Fragment synthesis vbuaa=2_plus_vbuz1 - New best, scheduling parent vbuz1=2_plus_vbuz2 +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuaa +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuyy +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=2_plus_vbuxx +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuxx=vbuz1_plus_2 +Fragment synthesis vbuxx=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuz1 +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuaa +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuyy +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=2_plus_vbuxx +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuyy=vbuz1_plus_2 +Fragment synthesis vbuyy=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuaa=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuyy=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuxx=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuaa +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuyy +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=2_plus_vbuxx +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz2 - Successfully synthesized from vbuaa=2_plus_vbuz1 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuaa_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuyy_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuxx_plus_2 +Fragment synthesis vbuaa=vbuz1_plus_2 - Successfully synthesized from vbuaa=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz1 - New best, scheduling parent vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz1_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz1 +Fragment synthesis vbuz1=vbuz1_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz1 +Fragment synthesis vbuz1=vbuz1_plus_2 - Successfully synthesized from vbuz1=2_plus_vbuz1 +Fragment synthesis vbuz1=vbuz1_plus_2 - Successfully synthesized from vbuaa=vbuz1_plus_2 +Fragment synthesis vbuz1=vbuz1_plus_2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz1_plus_2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz1_plus_2 - Successfully synthesized from vbuz1=vbuz2_plus_2 +Fragment synthesis vbuz1=vbuz1_plus_2 - New best, scheduling parent vbuz1=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=vbuz1_plus_2 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuaa=2_plus_vbuz1 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Fragment synthesis vbuz1=2_plus_vbuz1 - Successfully synthesized from vbuz1=2_plus_vbuz2 +Found best fragment vbuz1=vbuz1_plus_2 < vbuz1=2_plus_vbuz1 < vbuaa=2_plus_vbuz1 < vbuaa=2_plus_vbuaa < vbuaa=vbuaa_plus_2 score: 10.5 +New fragment synthesis vbuz1_neq_vbuc1_then_la1 +New fragment synthesis vbuz1_neq_vbuc1_then_la1 - sub-option vbuaa_neq_vbuc1_then_la1 +New fragment synthesis vbuz1_neq_vbuc1_then_la1 - sub-option vbuyy_neq_vbuc1_then_la1 +New fragment synthesis vbuz1_neq_vbuc1_then_la1 - sub-option vbuxx_neq_vbuc1_then_la1 +New fragment synthesis vbuz1_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuz1_then_la1 +New fragment synthesis vbuz1_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuz1_then_la1 +New fragment synthesis vbuaa_neq_vbuc1_then_la1 +New fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully loaded vbuaa_neq_vbuc1_then_la1.asm +New fragment synthesis vbuaa_neq_vbuc1_then_la1 - sub-option vbuxx_neq_vbuc1_then_la1 +New fragment synthesis vbuaa_neq_vbuc1_then_la1 - sub-option vbuyy_neq_vbuc1_then_la1 +New fragment synthesis vbuaa_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuaa_then_la1 +New fragment synthesis vbuaa_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuaa_then_la1 +New fragment synthesis vbuxx_neq_vbuc1_then_la1 +New fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully loaded vbuxx_neq_vbuc1_then_la1.asm +New fragment synthesis vbuxx_neq_vbuc1_then_la1 - sub-option vbuaa_neq_vbuc1_then_la1 +New fragment synthesis vbuxx_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuxx_then_la1 +New fragment synthesis vbuxx_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuxx_then_la1 +New fragment synthesis vbuc1_neq_vbuxx_then_la1 +New fragment synthesis vbuc1_neq_vbuxx_then_la1 - sub-option vbuc1_neq_vbuaa_then_la1 +New fragment synthesis vbuc1_neq_vbuxx_then_la1 - sub-option vbuxx_neq_vbuc1_then_la1 +New fragment synthesis vbuc1_neq_vbuxx_then_la1 - sub-option vbuxx_neq_vbuc1_then_la1 +New fragment synthesis vbuc1_neq_vbuaa_then_la1 +New fragment synthesis vbuc1_neq_vbuaa_then_la1 - sub-option vbuc1_neq_vbuxx_then_la1 +New fragment synthesis vbuc1_neq_vbuaa_then_la1 - sub-option vbuc1_neq_vbuyy_then_la1 +New fragment synthesis vbuc1_neq_vbuaa_then_la1 - sub-option vbuaa_neq_vbuc1_then_la1 +New fragment synthesis vbuc1_neq_vbuaa_then_la1 - sub-option vbuaa_neq_vbuc1_then_la1 +New fragment synthesis vbuc1_neq_vbuyy_then_la1 +New fragment synthesis vbuc1_neq_vbuyy_then_la1 - sub-option vbuc1_neq_vbuaa_then_la1 +New fragment synthesis vbuc1_neq_vbuyy_then_la1 - sub-option vbuyy_neq_vbuc1_then_la1 +New fragment synthesis vbuc1_neq_vbuyy_then_la1 - sub-option vbuyy_neq_vbuc1_then_la1 +New fragment synthesis vbuyy_neq_vbuc1_then_la1 +New fragment synthesis vbuyy_neq_vbuc1_then_la1 - Successfully loaded vbuyy_neq_vbuc1_then_la1.asm +New fragment synthesis vbuyy_neq_vbuc1_then_la1 - sub-option vbuaa_neq_vbuc1_then_la1 +New fragment synthesis vbuyy_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuyy_then_la1 +New fragment synthesis vbuyy_neq_vbuc1_then_la1 - sub-option vbuc1_neq_vbuyy_then_la1 +New fragment synthesis vbuc1_neq_vbuz1_then_la1 +New fragment synthesis vbuc1_neq_vbuz1_then_la1 - sub-option vbuc1_neq_vbuaa_then_la1 +New fragment synthesis vbuc1_neq_vbuz1_then_la1 - sub-option vbuc1_neq_vbuyy_then_la1 +New fragment synthesis vbuc1_neq_vbuz1_then_la1 - sub-option vbuc1_neq_vbuxx_then_la1 +New fragment synthesis vbuc1_neq_vbuz1_then_la1 - sub-option vbuz1_neq_vbuc1_then_la1 +New fragment synthesis vbuc1_neq_vbuz1_then_la1 - sub-option vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - No file or synthesis results! +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - New best, scheduling parent vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - New best, scheduling parent vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - New best, scheduling parent vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - New best, scheduling parent vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - New best, scheduling parent vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - Successfully synthesized from vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuaa_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - Successfully synthesized from vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully synthesized from vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuaa_neq_vbuc1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_vbuc1_then_la1 - New best, scheduling parent vbuc1_neq_vbuz1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_vbuc1_then_la1 +Fragment synthesis vbuc1_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_vbuc1_then_la1 +Found best fragment vbuz1_neq_vbuc1_then_la1 < vbuaa_neq_vbuc1_then_la1 score: 8.0 +New fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 +New fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - sub-option vbuc2_neq__deref_pbuc1_then_la1 +New fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - sub-option vbuc2_neq__deref_pbuc1_then_la1 +New fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - sub-option vbuaa_neq_vbuc1_then_la1 +New fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - sub-option vbuxx_neq_vbuc1_then_la1 +New fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - sub-option vbuyy_neq_vbuc1_then_la1 +New fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 +New fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - sub-option _deref_pbuc1_neq_vbuc2_then_la1 +New fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - sub-option _deref_pbuc1_neq_vbuc2_then_la1 +New fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - sub-option vbuc1_neq_vbuaa_then_la1 +New fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - sub-option vbuc1_neq_vbuxx_then_la1 +New fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - sub-option vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - New best, scheduling parent _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - New best, scheduling parent _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuaa_neq_vbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuxx_neq_vbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - Successfully synthesized from vbuyy_neq_vbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - New best, scheduling parent vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis _deref_pbuc1_neq_vbuc2_then_la1 - New best, scheduling parent vbuc2_neq__deref_pbuc1_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from _deref_pbuc1_neq_vbuc2_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuaa_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuxx_then_la1 +Fragment synthesis vbuc2_neq__deref_pbuc1_then_la1 - Successfully synthesized from vbuc1_neq_vbuyy_then_la1 +Found best fragment _deref_pbuc1_neq_vbuc2_then_la1 < vbuc2_neq__deref_pbuc1_then_la1 < vbuc1_neq_vbuaa_then_la1 < vbuaa_neq_vbuc1_then_la1 score: 9.0 +New fragment synthesis _deref_pbuc1=_inc__deref_pbuc1 +New fragment synthesis _deref_pbuc1=_inc__deref_pbuc1 - Successfully loaded _deref_pbuc1=_inc__deref_pbuc1.asm +New fragment synthesis _deref_pbuc1=_inc__deref_pbuc1 - sub-option vbuaa=_inc__deref_pbuc1 +New fragment synthesis vbuaa=_inc__deref_pbuc1 +New fragment synthesis vbuaa=_inc__deref_pbuc1 - sub-option vbuaa=_inc_vbuaa +New fragment synthesis vbuaa=_inc__deref_pbuc1 - sub-option vbuaa=_inc_vbuxx +New fragment synthesis vbuaa=_inc__deref_pbuc1 - sub-option vbuaa=_inc_vbuyy +New fragment synthesis vbuaa=_inc__deref_pbuc1 - sub-option vbuaa=_deref_pbuc1_plus_1 +New fragment synthesis vbuaa=_inc_vbuaa +New fragment synthesis vbuaa=_inc_vbuaa - sub-option vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=vbuaa_plus_1 - Successfully loaded vbuaa=vbuaa_plus_1.asm +New fragment synthesis vbuaa=vbuaa_plus_1 - sub-option vbuaa=1_plus_vbuaa +New fragment synthesis vbuaa=1_plus_vbuaa +New fragment synthesis vbuaa=1_plus_vbuaa - sub-option vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=_inc_vbuxx +New fragment synthesis vbuaa=_inc_vbuxx - sub-option vbuaa=_inc_vbuaa +New fragment synthesis vbuaa=_inc_vbuxx - sub-option vbuaa=vbuxx_plus_1 +New fragment synthesis vbuaa=vbuxx_plus_1 +New fragment synthesis vbuaa=vbuxx_plus_1 - sub-option vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=vbuxx_plus_1 - sub-option vbuaa=1_plus_vbuxx +New fragment synthesis vbuaa=1_plus_vbuxx +New fragment synthesis vbuaa=1_plus_vbuxx - sub-option vbuaa=1_plus_vbuaa +New fragment synthesis vbuaa=1_plus_vbuxx - sub-option vbuaa=vbuxx_plus_1 +New fragment synthesis vbuaa=_inc_vbuyy +New fragment synthesis vbuaa=_inc_vbuyy - sub-option vbuaa=_inc_vbuaa +New fragment synthesis vbuaa=_inc_vbuyy - sub-option vbuaa=vbuyy_plus_1 +New fragment synthesis vbuaa=vbuyy_plus_1 +New fragment synthesis vbuaa=vbuyy_plus_1 - sub-option vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=vbuyy_plus_1 - sub-option vbuaa=1_plus_vbuyy +New fragment synthesis vbuaa=1_plus_vbuyy +New fragment synthesis vbuaa=1_plus_vbuyy - sub-option vbuaa=1_plus_vbuaa +New fragment synthesis vbuaa=1_plus_vbuyy - sub-option vbuaa=vbuyy_plus_1 +New fragment synthesis vbuaa=_deref_pbuc1_plus_1 +New fragment synthesis vbuaa=_deref_pbuc1_plus_1 - sub-option vbuaa=1_plus__deref_pbuc1 +New fragment synthesis vbuaa=_deref_pbuc1_plus_1 - sub-option vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=_deref_pbuc1_plus_1 - sub-option vbuaa=vbuxx_plus_1 +New fragment synthesis vbuaa=_deref_pbuc1_plus_1 - sub-option vbuaa=vbuyy_plus_1 +New fragment synthesis vbuaa=1_plus__deref_pbuc1 +New fragment synthesis vbuaa=1_plus__deref_pbuc1 - sub-option vbuaa=_deref_pbuc1_plus_1 +New fragment synthesis vbuaa=1_plus__deref_pbuc1 - sub-option vbuaa=1_plus_vbuaa +New fragment synthesis vbuaa=1_plus__deref_pbuc1 - sub-option vbuaa=1_plus_vbuxx +New fragment synthesis vbuaa=1_plus__deref_pbuc1 - sub-option vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - No file or synthesis results! +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - No file or synthesis results! +Fragment synthesis vbuaa=1_plus_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_plus_1 - No file or synthesis results! +Fragment synthesis vbuaa=_inc_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=1_plus_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_plus_1 - No file or synthesis results! +Fragment synthesis vbuaa=_inc_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=1_plus_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_plus_1 - New best, scheduling parent vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=vbuaa_plus_1 - New best, scheduling parent vbuaa=_inc_vbuaa +Fragment synthesis vbuaa=vbuaa_plus_1 - New best, scheduling parent vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=vbuaa_plus_1 - New best, scheduling parent vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=vbuaa_plus_1 - New best, scheduling parent vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - New best, scheduling parent vbuaa=1_plus__deref_pbuc1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - New best, scheduling parent vbuaa=_inc__deref_pbuc1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - New best, scheduling parent vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=1_plus__deref_pbuc1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=vbuyy_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=vbuyy_plus_1 - New best, scheduling parent vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=vbuyy_plus_1 - New best, scheduling parent vbuaa=_inc_vbuyy +Fragment synthesis vbuaa=vbuyy_plus_1 - New best, scheduling parent vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=1_plus__deref_pbuc1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=_inc_vbuyy - Successfully synthesized from vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=_inc_vbuyy - New best, scheduling parent vbuaa=_inc__deref_pbuc1 +Fragment synthesis vbuaa=1_plus_vbuyy - Successfully synthesized from vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=1_plus_vbuyy - New best, scheduling parent vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=1_plus_vbuyy - New best, scheduling parent vbuaa=1_plus__deref_pbuc1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=vbuyy_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=vbuyy_plus_1 - Successfully synthesized from vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=vbuxx_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=vbuxx_plus_1 - New best, scheduling parent vbuaa=1_plus_vbuxx +Fragment synthesis vbuaa=vbuxx_plus_1 - New best, scheduling parent vbuaa=_inc_vbuxx +Fragment synthesis vbuaa=vbuxx_plus_1 - New best, scheduling parent vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=1_plus__deref_pbuc1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=_deref_pbuc1_plus_1 - Successfully synthesized from vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=_inc_vbuxx - Successfully synthesized from vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=_inc_vbuxx - New best, scheduling parent vbuaa=_inc__deref_pbuc1 +Fragment synthesis vbuaa=1_plus_vbuxx - Successfully synthesized from vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=1_plus_vbuxx - New best, scheduling parent vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=1_plus_vbuxx - New best, scheduling parent vbuaa=1_plus__deref_pbuc1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=1_plus_vbuxx +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=vbuxx_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=vbuxx_plus_1 - Successfully synthesized from vbuaa=1_plus_vbuxx +Fragment synthesis vbuaa=1_plus_vbuaa - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=1_plus_vbuaa - New best, scheduling parent vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=1_plus_vbuaa - New best, scheduling parent vbuaa=1_plus_vbuxx +Fragment synthesis vbuaa=1_plus_vbuaa - New best, scheduling parent vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=1_plus_vbuaa - New best, scheduling parent vbuaa=1_plus__deref_pbuc1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=1_plus_vbuxx +Fragment synthesis vbuaa=1_plus__deref_pbuc1 - Successfully synthesized from vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=1_plus_vbuyy - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=1_plus_vbuyy - Successfully synthesized from vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=1_plus_vbuxx - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=1_plus_vbuxx - Successfully synthesized from vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=vbuaa_plus_1 - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=_inc_vbuaa - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=_inc_vbuaa - New best, scheduling parent vbuaa=_inc__deref_pbuc1 +Fragment synthesis vbuaa=_inc_vbuaa - New best, scheduling parent vbuaa=_inc_vbuxx +Fragment synthesis vbuaa=_inc_vbuaa - New best, scheduling parent vbuaa=_inc_vbuyy +Fragment synthesis vbuaa=_inc_vbuyy - Successfully synthesized from vbuaa=_inc_vbuaa +Fragment synthesis vbuaa=_inc_vbuyy - Successfully synthesized from vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=_inc_vbuxx - Successfully synthesized from vbuaa=_inc_vbuaa +Fragment synthesis vbuaa=_inc_vbuxx - Successfully synthesized from vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=_inc__deref_pbuc1 - Successfully synthesized from vbuaa=_inc_vbuaa +Fragment synthesis vbuaa=_inc__deref_pbuc1 - Successfully synthesized from vbuaa=_inc_vbuxx +Fragment synthesis vbuaa=_inc__deref_pbuc1 - Successfully synthesized from vbuaa=_inc_vbuyy +Fragment synthesis vbuaa=_inc__deref_pbuc1 - Successfully synthesized from vbuaa=_deref_pbuc1_plus_1 +Fragment synthesis vbuaa=_inc__deref_pbuc1 - New best, scheduling parent _deref_pbuc1=_inc__deref_pbuc1 +Fragment synthesis _deref_pbuc1=_inc__deref_pbuc1 - Successfully synthesized from vbuaa=_inc__deref_pbuc1 +Found best fragment _deref_pbuc1=_inc__deref_pbuc1 score: 6.0 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - Successfully loaded vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx.asm +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - sub-option vwuz1=vbuyy_word_vbuaa +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuyy_word_vbuaa +New fragment synthesis vwuz1=vbuyy_word_vbuaa - sub-option vwuz1=vbuyy_word_vbuxx +New fragment synthesis vwuz1=vbuyy_word_vbuxx +New fragment synthesis vwuz1=vbuyy_word_vbuxx - sub-option vwuz1=vbuyy_word_vbuaa +New fragment synthesis vwuz1=vbuyy_word_vbuxx - sub-option vwuz1=vbuaa_word_vbuxx +New fragment synthesis vwuz1=vbuaa_word_vbuxx +New fragment synthesis vwuz1=vbuaa_word_vbuxx - Successfully loaded vwuz1=vbuaa_word_vbuxx.asm +New fragment synthesis vwuz1=vbuaa_word_vbuxx - sub-option vwuz1=vbuyy_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - sub-option vwuz1=vbuaa_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - Successfully loaded vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy.asm +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - sub-option vwuz1=vbuxx_word_vbuaa +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuxx_word_vbuaa +New fragment synthesis vwuz1=vbuxx_word_vbuaa - sub-option vwuz1=vbuxx_word_vbuyy +New fragment synthesis vwuz1=vbuxx_word_vbuyy +New fragment synthesis vwuz1=vbuxx_word_vbuyy - sub-option vwuz1=vbuaa_word_vbuyy +New fragment synthesis vwuz1=vbuxx_word_vbuyy - sub-option vwuz1=vbuxx_word_vbuaa +New fragment synthesis vwuz1=vbuaa_word_vbuyy +New fragment synthesis vwuz1=vbuaa_word_vbuyy - Successfully loaded vwuz1=vbuaa_word_vbuyy.asm +New fragment synthesis vwuz1=vbuaa_word_vbuyy - sub-option vwuz1=vbuxx_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - sub-option vwuz1=vbuaa_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - sub-option vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - sub-option vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - sub-option vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +New fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - sub-option vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=vbuaa_word_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_vbuyy +Fragment synthesis vwuz1=vbuaa_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuyy - New best, scheduling parent vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=vbuaa_word_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuaa - Successfully synthesized from vwuz1=vbuxx_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuaa - New best, scheduling parent vwuz1=vbuxx_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuaa - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=vbuaa_word_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_vbuxx +Fragment synthesis vwuz1=vbuaa_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word_vbuxx - New best, scheduling parent vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=vbuaa_word_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word_vbuaa - Successfully synthesized from vwuz1=vbuyy_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word_vbuaa - New best, scheduling parent vwuz1=vbuyy_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word_vbuaa - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=vbuyy_word_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - New best, scheduling parent vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuxx_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa - New best, scheduling parent vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_pbuc1_derefidx_vbuaa +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=vbuyy_word_pbuc1_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - New best, scheduling parent vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuaa +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuyy +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuz2 +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx +Fragment synthesis vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 - Successfully synthesized from vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy +Found best fragment vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 < vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy < vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy score: 19.5 +New fragment synthesis vwuz1=vwuz2_band_vwuc1 +New fragment synthesis vwuz1=vwuz2_band_vwuc1 - Successfully loaded vwuz1=vwuz2_band_vwuc1.asm +New fragment synthesis vwuz1=vwuz2_band_vwuc1 - sub-option vwuz1=vwuc1_band_vwuz2 +New fragment synthesis vwuz1=vwuc1_band_vwuz2 +New fragment synthesis vwuz1=vwuc1_band_vwuz2 - sub-option vwuz1=vwuz2_band_vwuc1 +Fragment synthesis vwuz1=vwuc1_band_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_band_vwuc1 - New best, scheduling parent vwuz1=vwuc1_band_vwuz2 +Fragment synthesis vwuz1=vwuc1_band_vwuz2 - Successfully synthesized from vwuz1=vwuz2_band_vwuc1 +Fragment synthesis vwuz1=vwuc1_band_vwuz2 - New best, scheduling parent vwuz1=vwuz2_band_vwuc1 +Fragment synthesis vwuz1=vwuz2_band_vwuc1 - Successfully synthesized from vwuz1=vwuc1_band_vwuz2 +Found best fragment vwuz1=vwuz2_band_vwuc1 score: 16.5 +New fragment synthesis pbuz1=pbuz2_plus_vwuz3 +New fragment synthesis pbuz1=pbuz2_plus_vwuz3 - sub-option pbuz1=vwuz3_plus_pbuz2 +New fragment synthesis pbuz1=pbuz2_plus_vwuz3 - sub-option pbuz1=vwuz2_plus_vwuz3 +New fragment synthesis pbuz1=pbuz2_plus_vwuz3 - sub-option vwuz1=pbuz2_plus_vwuz3 +New fragment synthesis pbuz1=pbuz2_plus_vwuz3 - sub-option pbuz1=vwuz2_plus_vwuz3 +New fragment synthesis pbuz1=vwuz3_plus_pbuz2 +New fragment synthesis pbuz1=vwuz3_plus_pbuz2 - sub-option pbuz1=pbuz2_plus_vwuz3 +New fragment synthesis pbuz1=vwuz3_plus_pbuz2 - sub-option pbuz1=vwuz3_plus_vwuz2 +New fragment synthesis pbuz1=vwuz3_plus_pbuz2 - sub-option vwuz1=vwuz3_plus_pbuz2 +New fragment synthesis pbuz1=vwuz3_plus_vwuz2 +New fragment synthesis pbuz1=vwuz3_plus_vwuz2 - sub-option pbuz1=vwuz2_plus_vwuz3 +New fragment synthesis pbuz1=vwuz3_plus_vwuz2 - sub-option vwuz1=vwuz3_plus_vwuz2 +New fragment synthesis pbuz1=vwuz2_plus_vwuz3 +New fragment synthesis pbuz1=vwuz2_plus_vwuz3 - sub-option pbuz1=vwuz3_plus_vwuz2 +New fragment synthesis pbuz1=vwuz2_plus_vwuz3 - sub-option vwuz1=vwuz2_plus_vwuz3 +New fragment synthesis vwuz1=vwuz2_plus_vwuz3 +New fragment synthesis vwuz1=vwuz2_plus_vwuz3 - Successfully loaded vwuz1=vwuz2_plus_vwuz3.asm +New fragment synthesis vwuz1=vwuz2_plus_vwuz3 - sub-option vwuz1=vwuz3_plus_vwuz2 +New fragment synthesis vwuz1=vwuz3_plus_vwuz2 +New fragment synthesis vwuz1=vwuz3_plus_vwuz2 - sub-option vwuz1=vwuz2_plus_vwuz3 +New fragment synthesis vwuz1=vwuz3_plus_pbuz2 +New fragment synthesis vwuz1=vwuz3_plus_pbuz2 - sub-option vwuz1=pbuz2_plus_vwuz3 +New fragment synthesis vwuz1=vwuz3_plus_pbuz2 - sub-option vwuz1=vwuz3_plus_vwuz2 +New fragment synthesis vwuz1=pbuz2_plus_vwuz3 +New fragment synthesis vwuz1=pbuz2_plus_vwuz3 - sub-option vwuz1=vwuz3_plus_pbuz2 +New fragment synthesis vwuz1=pbuz2_plus_vwuz3 - sub-option vwuz1=vwuz2_plus_vwuz3 +New fragment synthesis vwuz1=pbuz2_plus_vwuz3 - sub-option vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz3_plus_pbuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz3_plus_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent vwuz1=vwuz3_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent pbuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - New best, scheduling parent vwuz1=vwuz3_plus_pbuz2 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - New best, scheduling parent pbuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_pbuz2 - Successfully synthesized from vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_pbuz2 - New best, scheduling parent vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_pbuz2 - New best, scheduling parent pbuz1=vwuz3_plus_pbuz2 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz3_plus_pbuz2 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_vwuz2 - New best, scheduling parent vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_vwuz2 - New best, scheduling parent pbuz1=vwuz3_plus_vwuz2 +Fragment synthesis vwuz1=vwuz3_plus_vwuz2 - New best, scheduling parent vwuz1=vwuz3_plus_pbuz2 +Fragment synthesis vwuz1=vwuz3_plus_pbuz2 - Successfully synthesized from vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_pbuz2 - Successfully synthesized from vwuz1=vwuz3_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz3_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent vwuz1=vwuz3_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent pbuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz2_plus_vwuz3 - New best, scheduling parent vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz3_plus_pbuz2 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis vwuz1=vwuz3_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz2_plus_vwuz3 - New best, scheduling parent pbuz1=vwuz3_plus_vwuz2 +Fragment synthesis pbuz1=vwuz2_plus_vwuz3 - New best, scheduling parent pbuz1=pbuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz2_plus_vwuz3 - New best, scheduling parent pbuz1=pbuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz3_plus_vwuz2 - Successfully synthesized from pbuz1=vwuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz3_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz3_plus_vwuz2 +Fragment synthesis pbuz1=vwuz3_plus_vwuz2 - New best, scheduling parent pbuz1=vwuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz3_plus_vwuz2 - New best, scheduling parent pbuz1=vwuz3_plus_pbuz2 +Fragment synthesis pbuz1=vwuz2_plus_vwuz3 - Successfully synthesized from pbuz1=vwuz3_plus_vwuz2 +Fragment synthesis pbuz1=vwuz2_plus_vwuz3 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz3_plus_pbuz2 - Successfully synthesized from pbuz1=vwuz3_plus_vwuz2 +Fragment synthesis pbuz1=vwuz3_plus_pbuz2 - Successfully synthesized from vwuz1=vwuz3_plus_pbuz2 +Fragment synthesis pbuz1=vwuz3_plus_pbuz2 - New best, scheduling parent pbuz1=pbuz2_plus_vwuz3 +Fragment synthesis pbuz1=pbuz2_plus_vwuz3 - Successfully synthesized from pbuz1=vwuz3_plus_pbuz2 +Fragment synthesis pbuz1=pbuz2_plus_vwuz3 - Successfully synthesized from pbuz1=vwuz2_plus_vwuz3 +Fragment synthesis pbuz1=pbuz2_plus_vwuz3 - Successfully synthesized from vwuz1=pbuz2_plus_vwuz3 +Fragment synthesis pbuz1=pbuz2_plus_vwuz3 - Successfully synthesized from pbuz1=vwuz2_plus_vwuz3 +Fragment synthesis pbuz1=pbuz2_plus_vwuz3 - New best, scheduling parent pbuz1=vwuz3_plus_pbuz2 +Fragment synthesis pbuz1=vwuz3_plus_pbuz2 - Successfully synthesized from pbuz1=pbuz2_plus_vwuz3 +Fragment synthesis pbuz1=vwuz3_plus_pbuz2 - Successfully synthesized from pbuz1=vwuz3_plus_vwuz2 +Fragment synthesis pbuz1=vwuz3_plus_pbuz2 - Successfully synthesized from vwuz1=vwuz3_plus_pbuz2 +Found best fragment pbuz1=pbuz2_plus_vwuz3 < pbuz1=vwuz3_plus_pbuz2 < pbuz1=vwuz3_plus_vwuz2 < pbuz1=vwuz2_plus_vwuz3 < vwuz1=vwuz2_plus_vwuz3 < vwuz1=vwuz3_plus_vwuz2 < vwuz1=vwuz2_plus_vwuz3 score: 20.5 +New fragment synthesis vbuz1=_lo_vwuz2 +New fragment synthesis vbuz1=_lo_vwuz2 - sub-option vbuaa=_lo_vwuz1 +New fragment synthesis vbuz1=_lo_vwuz2 - sub-option vbuyy=_lo_vwuz1 +New fragment synthesis vbuz1=_lo_vwuz2 - sub-option vbuxx=_lo_vwuz1 +New fragment synthesis vbuz1=_lo_vwuz2 - sub-option vbuaa=_lo_vwuz1 +New fragment synthesis vbuaa=_lo_vwuz1 +New fragment synthesis vbuaa=_lo_vwuz1 - Successfully loaded vbuaa=_lo_vwuz1.asm +New fragment synthesis vbuyy=_lo_vwuz1 +New fragment synthesis vbuyy=_lo_vwuz1 - sub-option vbuaa=_lo_vwuz1 +New fragment synthesis vbuxx=_lo_vwuz1 +New fragment synthesis vbuxx=_lo_vwuz1 - sub-option vbuaa=_lo_vwuz1 +Fragment synthesis vbuxx=_lo_vwuz1 - No file or synthesis results! +Fragment synthesis vbuyy=_lo_vwuz1 - No file or synthesis results! +Fragment synthesis vbuaa=_lo_vwuz1 - New best, scheduling parent vbuz1=_lo_vwuz2 +Fragment synthesis vbuaa=_lo_vwuz1 - New best, scheduling parent vbuyy=_lo_vwuz1 +Fragment synthesis vbuaa=_lo_vwuz1 - New best, scheduling parent vbuxx=_lo_vwuz1 +Fragment synthesis vbuaa=_lo_vwuz1 - New best, scheduling parent vbuz1=_lo_vwuz2 +Fragment synthesis vbuxx=_lo_vwuz1 - Successfully synthesized from vbuaa=_lo_vwuz1 +Fragment synthesis vbuxx=_lo_vwuz1 - New best, scheduling parent vbuz1=_lo_vwuz2 +Fragment synthesis vbuyy=_lo_vwuz1 - Successfully synthesized from vbuaa=_lo_vwuz1 +Fragment synthesis vbuyy=_lo_vwuz1 - New best, scheduling parent vbuz1=_lo_vwuz2 +Fragment synthesis vbuz1=_lo_vwuz2 - Successfully synthesized from vbuaa=_lo_vwuz1 +Fragment synthesis vbuz1=_lo_vwuz2 - Successfully synthesized from vbuyy=_lo_vwuz1 +Fragment synthesis vbuz1=_lo_vwuz2 - Successfully synthesized from vbuxx=_lo_vwuz1 +Fragment synthesis vbuz1=_lo_vwuz2 - Successfully synthesized from vbuaa=_lo_vwuz1 +Found best fragment vbuz1=_lo_vwuz2 < vbuaa=_lo_vwuz1 score: 6.5 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuaa +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option _deref_pbuz1=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - sub-option _deref_pbuz1=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - sub-option _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - sub-option vbuaa=_deref_pbuz1_bor_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - sub-option vbuaa=vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - sub-option vbuaa=_deref_pbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx - Successfully loaded vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx.asm +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - sub-option vbuaa=vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - Successfully loaded vbuaa=vbuaa_bor__deref_pbuz1.asm +New fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - sub-option vbuaa=_deref_pbuz1_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - sub-option vbuaa=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - sub-option _deref_pbuz1=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - sub-option vbuaa=_deref_pbuz1_bor_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - sub-option _deref_pbuz1=vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - sub-option vbuaa=_deref_pbuz1_bor_vbuxx +New fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - sub-option _deref_pbuz1=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuxx +New fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - sub-option vbuaa=vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuaa +New fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - sub-option vbuaa=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - sub-option _deref_pbuz1=vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuyy +New fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - sub-option vbuaa=vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - sub-option _deref_pbuz1=_deref_pbuz1_bor_vbuaa +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - sub-option _deref_pbuz1=vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - sub-option vbuaa=_deref_pbuz1_bor_vbuyy +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - sub-option vbuaa=_deref_pbuz1_bor_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - sub-option vbuaa=vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - sub-option vbuaa=vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - sub-option vbuaa=_deref_pbuz1_bor_vbuyy +New fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 +New fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - sub-option vbuaa=vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - sub-option vbuaa=_deref_pbuz1_bor_vbuxx +New fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - sub-option vbuaa=_deref_pbuz1_bor_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - sub-option vbuaa=vbuxx_bor__deref_pbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_vbuxx - Successfully loaded vbuaa=vbuaa_bor_vbuxx.asm +New fragment synthesis vbuaa=vbuaa_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - sub-option vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - sub-option vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy - Successfully loaded vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy.asm +New fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - sub-option vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +New fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - sub-option vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=vbuxx_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuxx - New best, scheduling parent vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuaa - New best, scheduling parent vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - No file or synthesis results! +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - No file or synthesis results! +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - No file or synthesis results! +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - No file or synthesis results! +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - New best, scheduling parent _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - New best, scheduling parent _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - New best, scheduling parent _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - New best, scheduling parent _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - New best, scheduling parent _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from _deref_pbuz1=vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuyy - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - New best, scheduling parent vbuaa=_deref_pbuz1_bor_vbuyy +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - New best, scheduling parent vbuaa=_deref_pbuz1_bor_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_vbuaa - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=_deref_pbuz1_bor_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa - New best, scheduling parent _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy +Fragment synthesis _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 - New best, scheduling parent _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuaa_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 +Fragment synthesis _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 - Successfully synthesized from _deref_pbuz1=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 +Found best fragment _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 < _deref_pbuz1=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 < vbuaa=pbuc1_derefidx_vbuz2_bor__deref_pbuz1 < vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 < vbuaa=vbuaa_bor_pbuc1_derefidx_vbuz1 < vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy score: 24.5 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - Successfully loaded vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx.asm +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - Successfully loaded vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy.asm +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx - sub-option vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +New fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy - sub-option vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuyy - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuxx - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuaa - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuz2 - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuyy - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuyy - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuaa - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuaa - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuxx - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuxx - No file or synthesis results! +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +Fragment synthesis vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa - New best, scheduling parent vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx +Fragment synthesis vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 - Successfully synthesized from vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy +Found best fragment vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 < vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy score: 30.5 +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - sub-option vwsz1=_sword_pbuc1_derefidx_vbuaa +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - sub-option vwsz1=_sword_pbuc1_derefidx_vbuyy +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - sub-option vwsz1=_sword_pbuc1_derefidx_vbuxx +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - sub-option vwsz1=_sword_pbuc1_derefidx_vbuxx +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - sub-option vwsz1=_sword_pbuc1_derefidx_vbuyy +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - sub-option vwsz1=_sword_pbuc1_derefidx_vbuxx +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - sub-option vwsz1=_sword_pbuc1_derefidx_vbuyy +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - sub-option vwsz1=_sword_pbuc1_derefidx_vbuxx +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - sub-option vwsz1=_sword_pbuc1_derefidx_vbuyy +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - Successfully loaded vwsz1=_sword_pbuc1_derefidx_vbuxx.asm +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - sub-option vwsz1=_sword_pbuc1_derefidx_vbuaa +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - sub-option vwsz1=_sword_vbuaa +New fragment synthesis vwsz1=_sword_vbuaa +New fragment synthesis vwsz1=_sword_vbuaa - sub-option vwsz1=_sword_vbuxx +New fragment synthesis vwsz1=_sword_vbuaa - sub-option vwsz1=_sword_vbuyy +New fragment synthesis vwsz1=_sword_vbuxx +New fragment synthesis vwsz1=_sword_vbuxx - sub-option vwsz1=_sword_vbuaa +New fragment synthesis vwsz1=_sword_vbuyy +New fragment synthesis vwsz1=_sword_vbuyy - sub-option vwsz1=_sword_vbuaa +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - Successfully loaded vwsz1=_sword_pbuc1_derefidx_vbuyy.asm +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - sub-option vwsz1=_sword_pbuc1_derefidx_vbuaa +New fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - sub-option vwsz1=_sword_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuz2 +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuz2 +Fragment synthesis vwsz1=_sword_vbuyy - No file or synthesis results! +Fragment synthesis vwsz1=_sword_vbuxx - No file or synthesis results! +Fragment synthesis vwsz1=_sword_vbuaa - No file or synthesis results! +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuz2 +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuz2 +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuxx +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuyy +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuxx +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuyy +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuxx +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuyy +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuaa - New best, scheduling parent vwsz1=_sword_pbuc1_derefidx_vbuz2 +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuyy - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuxx - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuaa +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuyy +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuxx +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuxx +Fragment synthesis vwsz1=_sword_pbuc1_derefidx_vbuz2 - Successfully synthesized from vwsz1=_sword_pbuc1_derefidx_vbuyy +Found best fragment vwsz1=_sword_pbuc1_derefidx_vbuz2 < vwsz1=_sword_pbuc1_derefidx_vbuyy score: 17.0 +New fragment synthesis vwsz1=vwsz2_minus_vwsz3 +New fragment synthesis vwsz1=vwsz2_minus_vwsz3 - sub-option vwuz1=vwuz2_minus_vwuz3 +New fragment synthesis vwuz1=vwuz2_minus_vwuz3 +New fragment synthesis vwuz1=vwuz2_minus_vwuz3 - Successfully loaded vwuz1=vwuz2_minus_vwuz3.asm +Fragment synthesis vwuz1=vwuz2_minus_vwuz3 - New best, scheduling parent vwsz1=vwsz2_minus_vwsz3 +Fragment synthesis vwsz1=vwsz2_minus_vwsz3 - Successfully synthesized from vwuz1=vwuz2_minus_vwuz3 +Found best fragment vwsz1=vwsz2_minus_vwsz3 < vwuz1=vwuz2_minus_vwuz3 score: 20.5 +New fragment synthesis vwsz1_lt_0_then_la1 +New fragment synthesis vwsz1_lt_0_then_la1 - Successfully loaded vwsz1_lt_0_then_la1.asm +New fragment synthesis vwsz1_lt_0_then_la1 - sub-option 0_gt_vwsz1_then_la1 +New fragment synthesis 0_gt_vwsz1_then_la1 +New fragment synthesis 0_gt_vwsz1_then_la1 - sub-option vwsz1_lt_0_then_la1 +Fragment synthesis 0_gt_vwsz1_then_la1 - No file or synthesis results! +Fragment synthesis vwsz1_lt_0_then_la1 - New best, scheduling parent 0_gt_vwsz1_then_la1 +Fragment synthesis 0_gt_vwsz1_then_la1 - Successfully synthesized from vwsz1_lt_0_then_la1 +Fragment synthesis 0_gt_vwsz1_then_la1 - New best, scheduling parent vwsz1_lt_0_then_la1 +Fragment synthesis vwsz1_lt_0_then_la1 - Successfully synthesized from 0_gt_vwsz1_then_la1 +Found best fragment vwsz1_lt_0_then_la1 score: 6.0 +New fragment synthesis vwuz1=vwuz2 +New fragment synthesis vwuz1=vwuz2 - Successfully loaded vwuz1=vwuz2.asm +Found best fragment vwuz1=vwuz2 score: 12.5 +New fragment synthesis vwuz1_gt_vwuz2_then_la1 +New fragment synthesis vwuz1_gt_vwuz2_then_la1 - Successfully loaded vwuz1_gt_vwuz2_then_la1.asm +New fragment synthesis vwuz1_gt_vwuz2_then_la1 - sub-option vwuz2_lt_vwuz1_then_la1 +New fragment synthesis vwuz2_lt_vwuz1_then_la1 +New fragment synthesis vwuz2_lt_vwuz1_then_la1 - sub-option vwuz1_gt_vwuz2_then_la1 +Fragment synthesis vwuz2_lt_vwuz1_then_la1 - No file or synthesis results! +Fragment synthesis vwuz1_gt_vwuz2_then_la1 - New best, scheduling parent vwuz2_lt_vwuz1_then_la1 +Fragment synthesis vwuz2_lt_vwuz1_then_la1 - Successfully synthesized from vwuz1_gt_vwuz2_then_la1 +Fragment synthesis vwuz2_lt_vwuz1_then_la1 - New best, scheduling parent vwuz1_gt_vwuz2_then_la1 +Fragment synthesis vwuz1_gt_vwuz2_then_la1 - Successfully synthesized from vwuz2_lt_vwuz1_then_la1 +Found best fragment vwuz1_gt_vwuz2_then_la1 score: 19.5 +New fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - sub-option pbsc1_derefidx_vbuaa=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - sub-option pbsc1_derefidx_vbuyy=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - sub-option pbsc1_derefidx_vbuxx=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - sub-option vbsaa=vbuc1 +New fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 - sub-option pbsc1_derefidx_vbuxx=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 - sub-option pbsc1_derefidx_vbuyy=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - sub-option pbsc1_derefidx_vbuaa=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - sub-option vbsaa=vbuc1 +New fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - sub-option vbsaa=vbuc1 +New fragment synthesis vbsaa=vbuc1 +New fragment synthesis vbsaa=vbuc1 - Successfully loaded vbsaa=vbuc1.asm +New fragment synthesis vbsaa=vbuc1 - sub-option vbsaa=vbuaa +New fragment synthesis vbsaa=vbuc1 - sub-option vbsaa=vbuyy +New fragment synthesis vbsaa=vbuc1 - sub-option vbsaa=vbuxx +New fragment synthesis vbsaa=vbuaa +New fragment synthesis vbsaa=vbuyy +New fragment synthesis vbsaa=vbuyy - sub-option vbsaa=vbuaa +New fragment synthesis vbsaa=vbuxx +New fragment synthesis vbsaa=vbuxx - sub-option vbsaa=vbuaa +New fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - sub-option pbsc1_derefidx_vbuaa=vbuc2 +New fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - sub-option vbsaa=vbuc1 +New fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - sub-option vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - No file or synthesis results! +Fragment synthesis vbsaa=vbuxx - No file or synthesis results! +Fragment synthesis vbsaa=vbuyy - No file or synthesis results! +Fragment synthesis vbsaa=vbuaa - No file or synthesis results! +Fragment synthesis vbsaa=vbuc1 - New best, scheduling parent pbsc1_derefidx_vbuxx=vbuc2 +Fragment synthesis vbsaa=vbuc1 - New best, scheduling parent pbsc1_derefidx_vbuxx=vbuc2 +Fragment synthesis vbsaa=vbuc1 - New best, scheduling parent pbsc1_derefidx_vbuyy=vbuc2 +Fragment synthesis vbsaa=vbuc1 - New best, scheduling parent pbsc1_derefidx_vbuyy=vbuc2 +Fragment synthesis vbsaa=vbuc1 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - New best, scheduling parent pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - New best, scheduling parent pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuxx=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuyy=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 - New best, scheduling parent pbsc1_derefidx_vbuxx=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 - New best, scheduling parent pbsc1_derefidx_vbuyy=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbuc2 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuyy=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - Successfully synthesized from pbsc1_derefidx_vbuxx=vbuc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbuc2 - Successfully synthesized from vbsaa=vbuc1 +Found best fragment pbsc1_derefidx_vbuz1=vbuc2 < pbsc1_derefidx_vbuyy=vbuc2 < vbsaa=vbuc1 score: 11.5 +New fragment synthesis vwsz1=vwsz2 +New fragment synthesis vwsz1=vwsz2 - sub-option vwuz1=vwuz2 +Fragment synthesis vwsz1=vwsz2 - Successfully synthesized from vwuz1=vwuz2 +Found best fragment vwsz1=vwsz2 < vwuz1=vwuz2 score: 12.5 +New fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - sub-option pbsc1_derefidx_vbuaa=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - sub-option pbsc1_derefidx_vbuyy=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - sub-option pbsc1_derefidx_vbuxx=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - sub-option vbsaa=vbsc1 +New fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 - sub-option pbsc1_derefidx_vbuxx=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 - sub-option pbsc1_derefidx_vbuyy=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - sub-option pbsc1_derefidx_vbuaa=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - sub-option vbsaa=vbsc1 +New fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - sub-option vbsaa=vbsc1 +New fragment synthesis vbsaa=vbsc1 +New fragment synthesis vbsaa=vbsc1 - sub-option vbuaa=vbuc1 +New fragment synthesis vbsaa=vbsc1 - sub-option vbsaa=vbsaa +New fragment synthesis vbsaa=vbsc1 - sub-option vbsaa=vbsyy +New fragment synthesis vbsaa=vbsc1 - sub-option vbsaa=vbsxx +New fragment synthesis vbsaa=vbsaa +New fragment synthesis vbsaa=vbsaa - sub-option vbuaa=vbuaa +New fragment synthesis vbsaa=vbsyy +New fragment synthesis vbsaa=vbsyy - sub-option vbsaa=vbsaa +New fragment synthesis vbsaa=vbsyy - sub-option vbuaa=vbuyy +New fragment synthesis vbsaa=vbsxx +New fragment synthesis vbsaa=vbsxx - sub-option vbsaa=vbsaa +New fragment synthesis vbsaa=vbsxx - sub-option vbuaa=vbuxx +New fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - sub-option pbsc1_derefidx_vbuaa=vbsc2 +New fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - sub-option vbsaa=vbsc1 +New fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - sub-option vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - No file or synthesis results! +Fragment synthesis vbsaa=vbsxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbsaa=vbsxx - New best, scheduling parent vbsaa=vbsc1 +Fragment synthesis vbsaa=vbsyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbsaa=vbsyy - New best, scheduling parent vbsaa=vbsc1 +Fragment synthesis vbsaa=vbsaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis vbsaa=vbsaa - New best, scheduling parent vbsaa=vbsc1 +Fragment synthesis vbsaa=vbsaa - New best, scheduling parent vbsaa=vbsyy +Fragment synthesis vbsaa=vbsaa - New best, scheduling parent vbsaa=vbsxx +Fragment synthesis vbsaa=vbsxx - Successfully synthesized from vbsaa=vbsaa +Fragment synthesis vbsaa=vbsxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis vbsaa=vbsyy - Successfully synthesized from vbsaa=vbsaa +Fragment synthesis vbsaa=vbsyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis vbsaa=vbsc1 - Successfully synthesized from vbuaa=vbuc1 +Fragment synthesis vbsaa=vbsc1 - Successfully synthesized from vbsaa=vbsaa +Fragment synthesis vbsaa=vbsc1 - Successfully synthesized from vbsaa=vbsyy +Fragment synthesis vbsaa=vbsc1 - Successfully synthesized from vbsaa=vbsxx +Fragment synthesis vbsaa=vbsc1 - New best, scheduling parent pbsc1_derefidx_vbuxx=vbsc2 +Fragment synthesis vbsaa=vbsc1 - New best, scheduling parent pbsc1_derefidx_vbuxx=vbsc2 +Fragment synthesis vbsaa=vbsc1 - New best, scheduling parent pbsc1_derefidx_vbuyy=vbsc2 +Fragment synthesis vbsaa=vbsc1 - New best, scheduling parent pbsc1_derefidx_vbuyy=vbsc2 +Fragment synthesis vbsaa=vbsc1 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - New best, scheduling parent pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - New best, scheduling parent pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuxx=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuyy=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 - New best, scheduling parent pbsc1_derefidx_vbuxx=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 - New best, scheduling parent pbsc1_derefidx_vbuyy=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuaa=vbsc2 - New best, scheduling parent pbsc1_derefidx_vbuz1=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuyy=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuxx=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuaa=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuyy=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - Successfully synthesized from pbsc1_derefidx_vbuxx=vbsc2 +Fragment synthesis pbsc1_derefidx_vbuz1=vbsc2 - Successfully synthesized from vbsaa=vbsc1 +Found best fragment pbsc1_derefidx_vbuz1=vbsc2 < pbsc1_derefidx_vbuyy=vbsc2 < vbsaa=vbsc1 < vbuaa=vbuc1 score: 11.5 +New fragment synthesis vwsz1=_neg_vwsz2 +New fragment synthesis vwsz1=_neg_vwsz2 - Successfully loaded vwsz1=_neg_vwsz2.asm +Found best fragment vwsz1=_neg_vwsz2 score: 22.5 +New fragment synthesis vbuz1_eq_0_then_la1 +New fragment synthesis vbuz1_eq_0_then_la1 - Successfully loaded vbuz1_eq_0_then_la1.asm +New fragment synthesis vbuz1_eq_0_then_la1 - sub-option vbuaa_eq_0_then_la1 +New fragment synthesis vbuz1_eq_0_then_la1 - sub-option vbuyy_eq_0_then_la1 +New fragment synthesis vbuz1_eq_0_then_la1 - sub-option vbuxx_eq_0_then_la1 +New fragment synthesis vbuz1_eq_0_then_la1 - sub-option 0_eq_vbuz1_then_la1 +New fragment synthesis vbuz1_eq_0_then_la1 - sub-option 0_eq_vbuz1_then_la1 +New fragment synthesis vbuaa_eq_0_then_la1 +New fragment synthesis vbuaa_eq_0_then_la1 - Successfully loaded vbuaa_eq_0_then_la1.asm +New fragment synthesis vbuaa_eq_0_then_la1 - sub-option vbuxx_eq_0_then_la1 +New fragment synthesis vbuaa_eq_0_then_la1 - sub-option vbuyy_eq_0_then_la1 +New fragment synthesis vbuaa_eq_0_then_la1 - sub-option 0_eq_vbuaa_then_la1 +New fragment synthesis vbuaa_eq_0_then_la1 - sub-option 0_eq_vbuaa_then_la1 +New fragment synthesis vbuxx_eq_0_then_la1 +New fragment synthesis vbuxx_eq_0_then_la1 - Successfully loaded vbuxx_eq_0_then_la1.asm +New fragment synthesis vbuxx_eq_0_then_la1 - sub-option vbuaa_eq_0_then_la1 +New fragment synthesis vbuxx_eq_0_then_la1 - sub-option 0_eq_vbuxx_then_la1 +New fragment synthesis vbuxx_eq_0_then_la1 - sub-option 0_eq_vbuxx_then_la1 +New fragment synthesis 0_eq_vbuxx_then_la1 +New fragment synthesis 0_eq_vbuxx_then_la1 - sub-option 0_eq_vbuaa_then_la1 +New fragment synthesis 0_eq_vbuxx_then_la1 - sub-option vbuxx_eq_0_then_la1 +New fragment synthesis 0_eq_vbuxx_then_la1 - sub-option vbuxx_eq_0_then_la1 +New fragment synthesis 0_eq_vbuaa_then_la1 +New fragment synthesis 0_eq_vbuaa_then_la1 - sub-option 0_eq_vbuxx_then_la1 +New fragment synthesis 0_eq_vbuaa_then_la1 - sub-option 0_eq_vbuyy_then_la1 +New fragment synthesis 0_eq_vbuaa_then_la1 - sub-option vbuaa_eq_0_then_la1 +New fragment synthesis 0_eq_vbuaa_then_la1 - sub-option vbuaa_eq_0_then_la1 +New fragment synthesis 0_eq_vbuyy_then_la1 +New fragment synthesis 0_eq_vbuyy_then_la1 - sub-option 0_eq_vbuaa_then_la1 +New fragment synthesis 0_eq_vbuyy_then_la1 - sub-option vbuyy_eq_0_then_la1 +New fragment synthesis 0_eq_vbuyy_then_la1 - sub-option vbuyy_eq_0_then_la1 +New fragment synthesis vbuyy_eq_0_then_la1 +New fragment synthesis vbuyy_eq_0_then_la1 - Successfully loaded vbuyy_eq_0_then_la1.asm +New fragment synthesis vbuyy_eq_0_then_la1 - sub-option vbuaa_eq_0_then_la1 +New fragment synthesis vbuyy_eq_0_then_la1 - sub-option 0_eq_vbuyy_then_la1 +New fragment synthesis vbuyy_eq_0_then_la1 - sub-option 0_eq_vbuyy_then_la1 +New fragment synthesis 0_eq_vbuz1_then_la1 +New fragment synthesis 0_eq_vbuz1_then_la1 - sub-option 0_eq_vbuaa_then_la1 +New fragment synthesis 0_eq_vbuz1_then_la1 - sub-option 0_eq_vbuyy_then_la1 +New fragment synthesis 0_eq_vbuz1_then_la1 - sub-option 0_eq_vbuxx_then_la1 +New fragment synthesis 0_eq_vbuz1_then_la1 - sub-option vbuz1_eq_0_then_la1 +New fragment synthesis 0_eq_vbuz1_then_la1 - sub-option vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - No file or synthesis results! +Fragment synthesis vbuyy_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuyy_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuyy_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - New best, scheduling parent vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - New best, scheduling parent vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - New best, scheduling parent 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuxx_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuxx_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - New best, scheduling parent vbuxx_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - New best, scheduling parent vbuyy_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuaa_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuaa_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - Successfully synthesized from vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent vbuaa_eq_0_then_la1 +Fragment synthesis 0_eq_vbuaa_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis vbuaa_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuxx_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis 0_eq_vbuyy_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - Successfully synthesized from vbuaa_eq_0_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis vbuyy_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - Successfully synthesized from vbuaa_eq_0_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis vbuxx_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from vbuaa_eq_0_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - New best, scheduling parent 0_eq_vbuz1_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuaa_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuyy_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from 0_eq_vbuxx_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - Successfully synthesized from vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis 0_eq_vbuz1_then_la1 - New best, scheduling parent vbuz1_eq_0_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from vbuaa_eq_0_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from vbuyy_eq_0_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from vbuxx_eq_0_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Fragment synthesis vbuz1_eq_0_then_la1 - Successfully synthesized from 0_eq_vbuz1_then_la1 +Found best fragment vbuz1_eq_0_then_la1 score: 6.0 +New fragment synthesis vbuz1=vbuz1_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - sub-option vbuz1=vbuc1_bxor_vbuz1 +New fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - sub-option vbuz1=vbuz2_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - sub-option vbuz1=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - sub-option vbuz1=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - sub-option vbuz1=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - sub-option vbuz1=vbuz1_bxor_vbuc1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuc1_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - sub-option vbuz1=vbuc1_bxor_vbuz2 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - sub-option vbuz1=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - sub-option vbuz1=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - sub-option vbuz1=vbuxx_bxor_vbuz1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuc1_bxor_vbuyy +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuc1_bxor_vbuxx +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuz1_bxor_vbuc1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuaa=vbuc1_bxor_vbuaa - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuaa - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuc1_bxor_vbuaa - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - Successfully loaded vbuaa=vbuaa_bxor_vbuc1.asm +New fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuaa_bxor_vbuyy - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuyy_bxor_vbuaa - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuaa_bxor_vbuxx - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuxx_bxor_vbuaa - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuc1_bxor_vbuyy +New fragment synthesis vbuaa=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuaa=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuyy_bxor_vbuc1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuaa=vbuyy_bxor_vbuc1 +New fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuc1_bxor_vbuyy +New fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuaa=vbuyy_bxor_vbuxx - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuyy_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuyy_bxor_vbuxx - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuaa=vbuxx_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuxx_bxor_vbuyy - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuxx_bxor_vbuyy - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuaa=vbuc1_bxor_vbuxx +New fragment synthesis vbuaa=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuaa=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuxx_bxor_vbuc1 +New fragment synthesis vbuaa=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuaa=vbuxx_bxor_vbuc1 +New fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuc1_bxor_vbuxx +New fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuyy_bxor_vbuc1 +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuxx_bxor_vbuc1 +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuc1_bxor_vbuz1 +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuaa=vbuz1_bxor_vbuaa - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuz1_bxor_vbuaa - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuz1_bxor_vbuaa - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuaa=vbuaa_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuaa_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuaa_bxor_vbuz1 - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuaa=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuaa=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuaa=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuaa=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuaa=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuaa=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuaa=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuaa=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuaa=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuaa=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuaa=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuaa=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuaa=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuaa=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuaa=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuaa=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuaa=vbuc1_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuyy=vbuc1_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuxx=vbuc1_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuz1=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuz1=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuz1=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuz1=vbuz2_bxor_vbuc1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuaa=vbuc1_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuz1=vbuaa_bxor_vbuz2 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuz1=vbuyy_bxor_vbuz2 +New fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - sub-option vbuz1=vbuxx_bxor_vbuz2 +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuc1_bxor_vbuaa +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuc1_bxor_vbuyy +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuc1_bxor_vbuyy +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuc1_bxor_vbuxx +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuz1_bxor_vbuc1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuc1_bxor_vbuz1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuaa_bxor_vbuz1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuyy_bxor_vbuz1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - sub-option vbuyy=vbuxx_bxor_vbuz1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuaa +New fragment synthesis vbuyy=vbuc1_bxor_vbuaa - sub-option vbuyy=vbuc1_bxor_vbuxx +New fragment synthesis vbuyy=vbuc1_bxor_vbuaa - sub-option vbuyy=vbuc1_bxor_vbuyy +New fragment synthesis vbuyy=vbuc1_bxor_vbuaa - sub-option vbuyy=vbuaa_bxor_vbuc1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuaa - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuyy=vbuc1_bxor_vbuaa - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuc1_bxor_vbuaa - sub-option vbuyy=vbuxx_bxor_vbuaa +New fragment synthesis vbuyy=vbuc1_bxor_vbuxx +New fragment synthesis vbuyy=vbuc1_bxor_vbuxx - sub-option vbuyy=vbuc1_bxor_vbuaa +New fragment synthesis vbuyy=vbuc1_bxor_vbuxx - sub-option vbuyy=vbuxx_bxor_vbuc1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuc1_bxor_vbuxx +New fragment synthesis vbuyy=vbuc1_bxor_vbuxx - sub-option vbuyy=vbuaa_bxor_vbuxx +New fragment synthesis vbuyy=vbuc1_bxor_vbuxx - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuxx_bxor_vbuc1 +New fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - sub-option vbuyy=vbuaa_bxor_vbuc1 +New fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - sub-option vbuyy=vbuc1_bxor_vbuxx +New fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuxx_bxor_vbuc1 +New fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - sub-option vbuyy=vbuxx_bxor_vbuaa +New fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuaa_bxor_vbuc1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - sub-option vbuyy=vbuxx_bxor_vbuc1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - sub-option vbuyy=vbuyy_bxor_vbuc1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - sub-option vbuyy=vbuc1_bxor_vbuaa +New fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - sub-option vbuyy=vbuaa_bxor_vbuxx +New fragment synthesis vbuyy=vbuyy_bxor_vbuc1 +New fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - sub-option vbuyy=vbuc1_bxor_vbuyy +New fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuyy_bxor_vbuc1 +New fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuc1_bxor_vbuyy +New fragment synthesis vbuyy=vbuc1_bxor_vbuyy - sub-option vbuyy=vbuyy_bxor_vbuc1 +New fragment synthesis vbuyy=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuc1_bxor_vbuyy +New fragment synthesis vbuyy=vbuc1_bxor_vbuyy - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuc1_bxor_vbuyy - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuaa_bxor_vbuyy - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuaa_bxor_vbuyy - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuaa_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuxx_bxor_vbuyy - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuxx_bxor_vbuyy - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuxx_bxor_vbuyy - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuyy_bxor_vbuxx - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuyy_bxor_vbuxx - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuyy_bxor_vbuxx - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuyy_bxor_vbuaa - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuyy_bxor_vbuaa - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuyy_bxor_vbuaa - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuaa_bxor_vbuxx +New fragment synthesis vbuyy=vbuaa_bxor_vbuxx - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuaa_bxor_vbuxx - sub-option vbuyy=vbuxx_bxor_vbuaa +New fragment synthesis vbuyy=vbuaa_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuyy=vbuxx_bxor_vbuaa +New fragment synthesis vbuyy=vbuxx_bxor_vbuaa - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuxx_bxor_vbuaa - sub-option vbuyy=vbuaa_bxor_vbuxx +New fragment synthesis vbuyy=vbuxx_bxor_vbuaa - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuaa_bxor_vbuc1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuyy_bxor_vbuc1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuyy_bxor_vbuc1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuxx_bxor_vbuc1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuc1_bxor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuc1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuz1_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuz1_bxor_vbuyy +New fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - sub-option vbuyy=vbuz1_bxor_vbuxx +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa - sub-option vbuyy=vbuz1_bxor_vbuxx +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa - sub-option vbuyy=vbuz1_bxor_vbuyy +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa - sub-option vbuyy=vbuxx_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa - sub-option vbuyy=vbuaa_bxor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuaa - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuxx +New fragment synthesis vbuyy=vbuz1_bxor_vbuxx - sub-option vbuyy=vbuz1_bxor_vbuaa +New fragment synthesis vbuyy=vbuz1_bxor_vbuxx - sub-option vbuyy=vbuaa_bxor_vbuxx +New fragment synthesis vbuyy=vbuz1_bxor_vbuxx - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuz1_bxor_vbuxx - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuz1_bxor_vbuxx - sub-option vbuyy=vbuxx_bxor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuyy=vbuxx_bxor_vbuz1 +New fragment synthesis vbuyy=vbuxx_bxor_vbuz1 - sub-option vbuyy=vbuaa_bxor_vbuz1 +New fragment synthesis vbuyy=vbuxx_bxor_vbuz1 - sub-option vbuyy=vbuxx_bxor_vbuaa +New fragment synthesis vbuyy=vbuxx_bxor_vbuz1 - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuxx_bxor_vbuz1 - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuxx_bxor_vbuz1 - sub-option vbuyy=vbuz1_bxor_vbuxx +New fragment synthesis vbuyy=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - sub-option vbuyy=vbuxx_bxor_vbuz1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - sub-option vbuyy=vbuyy_bxor_vbuz1 +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - sub-option vbuyy=vbuaa_bxor_vbuxx +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - sub-option vbuyy=vbuz1_bxor_vbuaa +New fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuyy=vbuyy_bxor_vbuz1 +New fragment synthesis vbuyy=vbuyy_bxor_vbuz1 - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuyy=vbuyy_bxor_vbuz1 - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuyy=vbuyy_bxor_vbuz1 - sub-option vbuyy=vbuz1_bxor_vbuyy +New fragment synthesis vbuyy=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuyy +New fragment synthesis vbuyy=vbuz1_bxor_vbuyy - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuyy=vbuz1_bxor_vbuyy - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuyy=vbuz1_bxor_vbuyy - sub-option vbuyy=vbuyy_bxor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuc1_bxor_vbuaa +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuc1_bxor_vbuyy +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuc1_bxor_vbuxx +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuc1_bxor_vbuxx +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuz1_bxor_vbuc1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuaa=vbuc1_bxor_vbuz1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuaa_bxor_vbuz1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuyy_bxor_vbuz1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - sub-option vbuxx=vbuxx_bxor_vbuz1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuaa +New fragment synthesis vbuxx=vbuc1_bxor_vbuaa - sub-option vbuxx=vbuc1_bxor_vbuxx +New fragment synthesis vbuxx=vbuc1_bxor_vbuaa - sub-option vbuxx=vbuc1_bxor_vbuyy +New fragment synthesis vbuxx=vbuc1_bxor_vbuaa - sub-option vbuxx=vbuaa_bxor_vbuc1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuaa - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuxx=vbuc1_bxor_vbuaa - sub-option vbuxx=vbuyy_bxor_vbuaa +New fragment synthesis vbuxx=vbuc1_bxor_vbuaa - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuc1_bxor_vbuxx +New fragment synthesis vbuxx=vbuc1_bxor_vbuxx - sub-option vbuxx=vbuxx_bxor_vbuc1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuc1_bxor_vbuxx +New fragment synthesis vbuxx=vbuc1_bxor_vbuxx - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuc1_bxor_vbuxx - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuxx_bxor_vbuc1 +New fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - sub-option vbuxx=vbuc1_bxor_vbuxx +New fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuxx_bxor_vbuc1 +New fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuxx_bxor_vbuaa - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuxx_bxor_vbuaa - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuxx_bxor_vbuaa - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuxx_bxor_vbuyy - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuxx_bxor_vbuyy - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuxx_bxor_vbuyy - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuyy_bxor_vbuxx - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuyy_bxor_vbuxx - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuxx - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuaa_bxor_vbuxx - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuaa_bxor_vbuxx - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuaa_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuc1_bxor_vbuyy +New fragment synthesis vbuxx=vbuc1_bxor_vbuyy - sub-option vbuxx=vbuc1_bxor_vbuaa +New fragment synthesis vbuxx=vbuc1_bxor_vbuyy - sub-option vbuxx=vbuyy_bxor_vbuc1 +New fragment synthesis vbuxx=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuc1_bxor_vbuyy +New fragment synthesis vbuxx=vbuc1_bxor_vbuyy - sub-option vbuxx=vbuaa_bxor_vbuyy +New fragment synthesis vbuxx=vbuc1_bxor_vbuyy - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuc1 +New fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - sub-option vbuxx=vbuaa_bxor_vbuc1 +New fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - sub-option vbuxx=vbuc1_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuyy_bxor_vbuc1 +New fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - sub-option vbuxx=vbuyy_bxor_vbuaa +New fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuaa_bxor_vbuc1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - sub-option vbuxx=vbuxx_bxor_vbuc1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - sub-option vbuxx=vbuyy_bxor_vbuc1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - sub-option vbuxx=vbuc1_bxor_vbuaa +New fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - sub-option vbuxx=vbuaa_bxor_vbuyy +New fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuaa_bxor_vbuyy +New fragment synthesis vbuxx=vbuaa_bxor_vbuyy - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuaa_bxor_vbuyy - sub-option vbuxx=vbuyy_bxor_vbuaa +New fragment synthesis vbuxx=vbuaa_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuaa +New fragment synthesis vbuxx=vbuyy_bxor_vbuaa - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuyy_bxor_vbuaa - sub-option vbuxx=vbuaa_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuaa - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuaa_bxor_vbuc1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuyy_bxor_vbuc1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuxx_bxor_vbuc1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuxx_bxor_vbuc1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuc1_bxor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuc1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuz1_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuz1_bxor_vbuyy +New fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - sub-option vbuxx=vbuz1_bxor_vbuxx +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa - sub-option vbuxx=vbuz1_bxor_vbuxx +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa - sub-option vbuxx=vbuz1_bxor_vbuyy +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa - sub-option vbuxx=vbuyy_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa - sub-option vbuxx=vbuaa_bxor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuaa - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuxx +New fragment synthesis vbuxx=vbuz1_bxor_vbuxx - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuz1_bxor_vbuxx - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuz1_bxor_vbuxx - sub-option vbuxx=vbuxx_bxor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuxx=vbuxx_bxor_vbuz1 +New fragment synthesis vbuxx=vbuxx_bxor_vbuz1 - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuxx=vbuxx_bxor_vbuz1 - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuxx_bxor_vbuz1 - sub-option vbuxx=vbuz1_bxor_vbuxx +New fragment synthesis vbuxx=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuyy +New fragment synthesis vbuxx=vbuz1_bxor_vbuyy - sub-option vbuxx=vbuz1_bxor_vbuaa +New fragment synthesis vbuxx=vbuz1_bxor_vbuyy - sub-option vbuxx=vbuaa_bxor_vbuyy +New fragment synthesis vbuxx=vbuz1_bxor_vbuyy - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuz1_bxor_vbuyy - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuxx=vbuz1_bxor_vbuyy - sub-option vbuxx=vbuyy_bxor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuz1 +New fragment synthesis vbuxx=vbuyy_bxor_vbuz1 - sub-option vbuxx=vbuaa_bxor_vbuz1 +New fragment synthesis vbuxx=vbuyy_bxor_vbuz1 - sub-option vbuxx=vbuyy_bxor_vbuaa +New fragment synthesis vbuxx=vbuyy_bxor_vbuz1 - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuyy_bxor_vbuz1 - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuxx=vbuyy_bxor_vbuz1 - sub-option vbuxx=vbuz1_bxor_vbuyy +New fragment synthesis vbuxx=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - sub-option vbuxx=vbuxx_bxor_vbuz1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - sub-option vbuxx=vbuyy_bxor_vbuz1 +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - sub-option vbuxx=vbuaa_bxor_vbuyy +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - sub-option vbuxx=vbuz1_bxor_vbuaa +New fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuz1=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuz1=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuyy=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuxx=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuz1=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuaa=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuz1=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuaa - sub-option vbuz1=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuz1=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuyy=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuxx=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuz1=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuaa=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuz1=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuxx - sub-option vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuz1=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuyy=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuxx=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuz1=vbuc1_bxor_vbuxx +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuaa=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuz1=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - sub-option vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuz1=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuz1=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuyy=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuxx=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuz1=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuaa=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuz1=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - sub-option vbuz1=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuz1=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuyy=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuxx=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuz1=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuaa=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuz1=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - sub-option vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuz1=vbuc1_bxor_vbuaa +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuyy=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuxx=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuz1=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuaa=vbuc1_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuz1=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuc1_bxor_vbuyy - sub-option vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuyy - sub-option vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuyy - sub-option vbuyy=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuyy - sub-option vbuxx=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuyy - sub-option vbuz1=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuaa_bxor_vbuyy - sub-option vbuaa=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy - sub-option vbuz1=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy - sub-option vbuz1=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy - sub-option vbuyy=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy - sub-option vbuxx=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy - sub-option vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuxx_bxor_vbuyy - sub-option vbuaa=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuxx_bxor_vbuaa - sub-option vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuaa - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuxx_bxor_vbuaa - sub-option vbuyy=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuxx_bxor_vbuaa - sub-option vbuxx=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuxx_bxor_vbuaa - sub-option vbuz1=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuxx_bxor_vbuaa - sub-option vbuaa=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuaa_bxor_vbuxx - sub-option vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuaa_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuaa_bxor_vbuxx - sub-option vbuyy=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuaa_bxor_vbuxx - sub-option vbuxx=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuaa_bxor_vbuxx - sub-option vbuz1=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuaa_bxor_vbuxx - sub-option vbuaa=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx - sub-option vbuz1=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx - sub-option vbuz1=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx - sub-option vbuyy=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx - sub-option vbuxx=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx - sub-option vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuyy_bxor_vbuxx - sub-option vbuaa=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuyy_bxor_vbuaa - sub-option vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuaa - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuyy_bxor_vbuaa - sub-option vbuyy=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuyy_bxor_vbuaa - sub-option vbuxx=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuyy_bxor_vbuaa - sub-option vbuz1=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuyy_bxor_vbuaa - sub-option vbuaa=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuyy=vbuz1_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuxx=vbuz1_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuz1=vbuaa_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuz1=vbuyy_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuz1=vbuxx_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuz1=vbuc1_bxor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuaa=vbuz1_bxor_vbuc1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuz1=vbuz2_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuz1=vbuz2_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - sub-option vbuz1=vbuz2_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuz1=vbuz2_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuz1=vbuz2_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuyy=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuxx=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuz1=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuz1=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuz1=vbuaa_bxor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bxor_vbuaa - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuz1=vbuz2_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuyy=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuxx=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuz1=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuz1=vbuxx_bxor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bxor_vbuxx - sub-option vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuz1=vbuaa_bxor_vbuz2 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuyy=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuxx=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuz1=vbuxx_bxor_vbuaa +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuz1=vbuz2_bxor_vbuxx +New fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - sub-option vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuz1=vbuxx_bxor_vbuz2 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuz1=vbuyy_bxor_vbuz2 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuyy=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuxx=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuz1=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuz1=vbuaa_bxor_vbuxx +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuz1=vbuz2_bxor_vbuaa +New fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuz1=vbuaa_bxor_vbuz2 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuyy=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuxx=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuz1=vbuyy_bxor_vbuaa +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuz1=vbuyy_bxor_vbuxx +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuz1=vbuz2_bxor_vbuyy +New fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - sub-option vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuz1=vbuz2_bxor_vbuaa +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuyy=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuxx=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuz1=vbuaa_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuz1=vbuxx_bxor_vbuyy +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuz1=vbuyy_bxor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bxor_vbuyy - sub-option vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz1 - sub-option vbuz1=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz1 - sub-option vbuz1=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz1 - sub-option vbuz1=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuaa_bxor_vbuz1 - sub-option vbuaa=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bxor_vbuz1 - sub-option vbuz1=vbuaa_bxor_vbuz2 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz1 - sub-option vbuz1=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz1 - sub-option vbuz1=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuxx_bxor_vbuz1 - sub-option vbuaa=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bxor_vbuz1 - sub-option vbuz1=vbuxx_bxor_vbuz2 +New fragment synthesis vbuz1=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuz1_bxor_vbuxx - sub-option vbuz1=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz1_bxor_vbuxx - sub-option vbuz1=vbuxx_bxor_vbuz1 +New fragment synthesis vbuz1=vbuz1_bxor_vbuxx - sub-option vbuaa=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuz1_bxor_vbuxx - sub-option vbuz1=vbuz2_bxor_vbuxx +New fragment synthesis vbuz1=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz1_bxor_vbuaa - sub-option vbuz1=vbuz1_bxor_vbuxx +New fragment synthesis vbuz1=vbuz1_bxor_vbuaa - sub-option vbuz1=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuz1_bxor_vbuaa - sub-option vbuz1=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuz1_bxor_vbuaa - sub-option vbuaa=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz1_bxor_vbuaa - sub-option vbuz1=vbuz2_bxor_vbuaa +New fragment synthesis vbuz1=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuz1_bxor_vbuyy - sub-option vbuz1=vbuz1_bxor_vbuaa +New fragment synthesis vbuz1=vbuz1_bxor_vbuyy - sub-option vbuz1=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuz1_bxor_vbuyy - sub-option vbuaa=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuz1_bxor_vbuyy - sub-option vbuz1=vbuz2_bxor_vbuyy +New fragment synthesis vbuz1=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz1 - sub-option vbuz1=vbuaa_bxor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz1 - sub-option vbuz1=vbuz1_bxor_vbuyy +New fragment synthesis vbuz1=vbuyy_bxor_vbuz1 - sub-option vbuaa=vbuyy_bxor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bxor_vbuz1 - sub-option vbuz1=vbuyy_bxor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuz1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuz1_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuz1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_bxor_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_bxor_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_bxor_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bxor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bxor_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_bxor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bxor_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - New best, scheduling parent vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - New best, scheduling parent vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - New best, scheduling parent vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - New best, scheduling parent vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - New best, scheduling parent vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - New best, scheduling parent vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - New best, scheduling parent vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - New best, scheduling parent vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - New best, scheduling parent vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - New best, scheduling parent vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - New best, scheduling parent vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - New best, scheduling parent vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - New best, scheduling parent vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - New best, scheduling parent vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - New best, scheduling parent vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - New best, scheduling parent vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - New best, scheduling parent vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - New best, scheduling parent vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - New best, scheduling parent vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - New best, scheduling parent vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - New best, scheduling parent vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuxx - Successfully synthesized from vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuxx - Successfully synthesized from vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuxx - Successfully synthesized from vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuxx_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuxx_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - New best, scheduling parent vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - New best, scheduling parent vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - New best, scheduling parent vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - New best, scheduling parent vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - New best, scheduling parent vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - New best, scheduling parent vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - New best, scheduling parent vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - New best, scheduling parent vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - New best, scheduling parent vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuyy - Successfully synthesized from vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuyy - Successfully synthesized from vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuyy - Successfully synthesized from vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuyy_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuaa - New best, scheduling parent vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuaa - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuaa - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuaa - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuaa_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuaa +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuyy +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuxx +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuaa +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuyy +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuxx +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bxor_vbuc1 +Fragment synthesis vbuxx=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuaa +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuyy +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuxx +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bxor_vbuc1 +Fragment synthesis vbuyy=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuyy=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuxx=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuaa +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuyy +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuxx +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz2 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuaa_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuyy_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuxx_bxor_vbuc1 +Fragment synthesis vbuaa=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - New best, scheduling parent vbuz1=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuaa=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - Successfully synthesized from vbuz1=vbuz2_bxor_vbuc1 +Fragment synthesis vbuz1=vbuz1_bxor_vbuc1 - New best, scheduling parent vbuz1=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuz1=vbuz1_bxor_vbuc1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuaa=vbuc1_bxor_vbuz1 +Fragment synthesis vbuz1=vbuc1_bxor_vbuz1 - Successfully synthesized from vbuz1=vbuc1_bxor_vbuz2 +Found best fragment vbuz1=vbuz1_bxor_vbuc1 < vbuz1=vbuc1_bxor_vbuz1 < vbuaa=vbuc1_bxor_vbuz1 < vbuaa=vbuc1_bxor_vbuaa < vbuaa=vbuaa_bxor_vbuc1 score: 8.5 +New fragment synthesis vwuz1=vwuz1_rol_1 +New fragment synthesis vwuz1=vwuz1_rol_1 - Successfully loaded vwuz1=vwuz1_rol_1.asm +Found best fragment vwuz1=vwuz1_rol_1 score: 10.0 +New fragment synthesis vbuz1=_hi_vwuz2 +New fragment synthesis vbuz1=_hi_vwuz2 - sub-option vbuaa=_hi_vwuz1 +New fragment synthesis vbuz1=_hi_vwuz2 - sub-option vbuyy=_hi_vwuz1 +New fragment synthesis vbuz1=_hi_vwuz2 - sub-option vbuxx=_hi_vwuz1 +New fragment synthesis vbuz1=_hi_vwuz2 - sub-option vbuaa=_hi_vwuz1 +New fragment synthesis vbuaa=_hi_vwuz1 +New fragment synthesis vbuaa=_hi_vwuz1 - Successfully loaded vbuaa=_hi_vwuz1.asm +New fragment synthesis vbuyy=_hi_vwuz1 +New fragment synthesis vbuyy=_hi_vwuz1 - sub-option vbuaa=_hi_vwuz1 +New fragment synthesis vbuxx=_hi_vwuz1 +New fragment synthesis vbuxx=_hi_vwuz1 - sub-option vbuaa=_hi_vwuz1 +Fragment synthesis vbuxx=_hi_vwuz1 - No file or synthesis results! +Fragment synthesis vbuyy=_hi_vwuz1 - No file or synthesis results! +Fragment synthesis vbuaa=_hi_vwuz1 - New best, scheduling parent vbuz1=_hi_vwuz2 +Fragment synthesis vbuaa=_hi_vwuz1 - New best, scheduling parent vbuyy=_hi_vwuz1 +Fragment synthesis vbuaa=_hi_vwuz1 - New best, scheduling parent vbuxx=_hi_vwuz1 +Fragment synthesis vbuaa=_hi_vwuz1 - New best, scheduling parent vbuz1=_hi_vwuz2 +Fragment synthesis vbuxx=_hi_vwuz1 - Successfully synthesized from vbuaa=_hi_vwuz1 +Fragment synthesis vbuxx=_hi_vwuz1 - New best, scheduling parent vbuz1=_hi_vwuz2 +Fragment synthesis vbuyy=_hi_vwuz1 - Successfully synthesized from vbuaa=_hi_vwuz1 +Fragment synthesis vbuyy=_hi_vwuz1 - New best, scheduling parent vbuz1=_hi_vwuz2 +Fragment synthesis vbuz1=_hi_vwuz2 - Successfully synthesized from vbuaa=_hi_vwuz1 +Fragment synthesis vbuz1=_hi_vwuz2 - Successfully synthesized from vbuyy=_hi_vwuz1 +Fragment synthesis vbuz1=_hi_vwuz2 - Successfully synthesized from vbuxx=_hi_vwuz1 +Fragment synthesis vbuz1=_hi_vwuz2 - Successfully synthesized from vbuaa=_hi_vwuz1 +Found best fragment vbuz1=_hi_vwuz2 < vbuaa=_hi_vwuz1 score: 6.5 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuaa=vbuz1_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuyy=vbuz1_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuxx=vbuz1_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuz1=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuz1=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuz1=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuz1=vbuc1_band_vbuz2 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuaa=vbuz1_band_vbuc1 +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuz1=vbuz2_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuz1=vbuz2_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuc1 - sub-option vbuz1=vbuz2_band_vbuxx +New fragment synthesis vbuaa=vbuz1_band_vbuc1 +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuyy_band_vbuc1 +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuxx_band_vbuc1 +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuc1_band_vbuz1 +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuz1_band_vbuyy +New fragment synthesis vbuaa=vbuz1_band_vbuc1 - sub-option vbuaa=vbuz1_band_vbuxx +New fragment synthesis vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully loaded vbuaa=vbuaa_band_vbuc1.asm +New fragment synthesis vbuaa=vbuaa_band_vbuc1 - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuaa=vbuaa_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuaa_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuaa=vbuc1_band_vbuaa - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuaa=vbuc1_band_vbuaa - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuc1_band_vbuaa - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuyy_band_vbuaa - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuaa_band_vbuyy - Successfully loaded vbuaa=vbuaa_band_vbuyy.asm +New fragment synthesis vbuaa=vbuaa_band_vbuyy - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuxx_band_vbuaa - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuaa_band_vbuxx - Successfully loaded vbuaa=vbuaa_band_vbuxx.asm +New fragment synthesis vbuaa=vbuaa_band_vbuxx - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuyy_band_vbuc1 +New fragment synthesis vbuaa=vbuyy_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuaa=vbuyy_band_vbuc1 - sub-option vbuaa=vbuc1_band_vbuyy +New fragment synthesis vbuaa=vbuyy_band_vbuc1 - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuyy_band_vbuc1 - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuaa=vbuc1_band_vbuyy +New fragment synthesis vbuaa=vbuc1_band_vbuyy - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuaa=vbuc1_band_vbuyy - sub-option vbuaa=vbuyy_band_vbuc1 +New fragment synthesis vbuaa=vbuc1_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuc1_band_vbuyy - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuaa=vbuxx_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuxx_band_vbuyy - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuxx_band_vbuyy - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuaa=vbuyy_band_vbuxx - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuyy_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuyy_band_vbuxx - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuaa=vbuxx_band_vbuc1 +New fragment synthesis vbuaa=vbuxx_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuaa=vbuxx_band_vbuc1 - sub-option vbuaa=vbuc1_band_vbuxx +New fragment synthesis vbuaa=vbuxx_band_vbuc1 - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuxx_band_vbuc1 - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuaa=vbuc1_band_vbuxx +New fragment synthesis vbuaa=vbuc1_band_vbuxx - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuaa=vbuc1_band_vbuxx - sub-option vbuaa=vbuxx_band_vbuc1 +New fragment synthesis vbuaa=vbuc1_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuc1_band_vbuxx - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuaa=vbuc1_band_vbuz1 +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuc1_band_vbuyy +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuc1_band_vbuxx +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuz1_band_vbuc1 +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuyy_band_vbuz1 +New fragment synthesis vbuaa=vbuc1_band_vbuz1 - sub-option vbuaa=vbuxx_band_vbuz1 +New fragment synthesis vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuaa=vbuaa_band_vbuz1 - Successfully loaded vbuaa=vbuaa_band_vbuz1.asm +New fragment synthesis vbuaa=vbuaa_band_vbuz1 - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuaa_band_vbuz1 - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuaa_band_vbuz1 - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuaa=vbuz1_band_vbuaa - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuz1_band_vbuaa - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuz1_band_vbuaa - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuaa=vbuyy_band_vbuz1 +New fragment synthesis vbuaa=vbuyy_band_vbuz1 - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuaa=vbuyy_band_vbuz1 - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuyy_band_vbuz1 - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuaa=vbuyy_band_vbuz1 - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuaa=vbuyy_band_vbuz1 - sub-option vbuaa=vbuz1_band_vbuyy +New fragment synthesis vbuaa=vbuz1_band_vbuyy +New fragment synthesis vbuaa=vbuz1_band_vbuyy - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuaa=vbuz1_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuz1_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuaa=vbuz1_band_vbuyy - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuaa=vbuz1_band_vbuyy - sub-option vbuaa=vbuyy_band_vbuz1 +New fragment synthesis vbuaa=vbuxx_band_vbuz1 +New fragment synthesis vbuaa=vbuxx_band_vbuz1 - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuaa=vbuxx_band_vbuz1 - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuxx_band_vbuz1 - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuaa=vbuxx_band_vbuz1 - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuaa=vbuxx_band_vbuz1 - sub-option vbuaa=vbuz1_band_vbuxx +New fragment synthesis vbuaa=vbuz1_band_vbuxx +New fragment synthesis vbuaa=vbuz1_band_vbuxx - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuaa=vbuz1_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuz1_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuaa=vbuz1_band_vbuxx - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuaa=vbuz1_band_vbuxx - sub-option vbuaa=vbuxx_band_vbuz1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuaa_band_vbuc1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuyy_band_vbuc1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuyy_band_vbuc1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuxx_band_vbuc1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuc1_band_vbuz1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuaa=vbuz1_band_vbuc1 +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuz1_band_vbuaa +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuz1_band_vbuyy +New fragment synthesis vbuyy=vbuz1_band_vbuc1 - sub-option vbuyy=vbuz1_band_vbuxx +New fragment synthesis vbuyy=vbuaa_band_vbuc1 +New fragment synthesis vbuyy=vbuaa_band_vbuc1 - sub-option vbuyy=vbuxx_band_vbuc1 +New fragment synthesis vbuyy=vbuaa_band_vbuc1 - sub-option vbuyy=vbuyy_band_vbuc1 +New fragment synthesis vbuyy=vbuaa_band_vbuc1 - sub-option vbuyy=vbuc1_band_vbuaa +New fragment synthesis vbuyy=vbuaa_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuyy=vbuaa_band_vbuc1 - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuaa_band_vbuc1 - sub-option vbuyy=vbuaa_band_vbuxx +New fragment synthesis vbuyy=vbuxx_band_vbuc1 +New fragment synthesis vbuyy=vbuxx_band_vbuc1 - sub-option vbuyy=vbuaa_band_vbuc1 +New fragment synthesis vbuyy=vbuxx_band_vbuc1 - sub-option vbuyy=vbuc1_band_vbuxx +New fragment synthesis vbuyy=vbuxx_band_vbuc1 - sub-option vbuaa=vbuxx_band_vbuc1 +New fragment synthesis vbuyy=vbuxx_band_vbuc1 - sub-option vbuyy=vbuxx_band_vbuaa +New fragment synthesis vbuyy=vbuxx_band_vbuc1 - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuc1_band_vbuxx +New fragment synthesis vbuyy=vbuc1_band_vbuxx - sub-option vbuyy=vbuc1_band_vbuaa +New fragment synthesis vbuyy=vbuc1_band_vbuxx - sub-option vbuyy=vbuxx_band_vbuc1 +New fragment synthesis vbuyy=vbuc1_band_vbuxx - sub-option vbuaa=vbuc1_band_vbuxx +New fragment synthesis vbuyy=vbuc1_band_vbuxx - sub-option vbuyy=vbuaa_band_vbuxx +New fragment synthesis vbuyy=vbuc1_band_vbuxx - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuc1_band_vbuaa +New fragment synthesis vbuyy=vbuc1_band_vbuaa - sub-option vbuyy=vbuc1_band_vbuxx +New fragment synthesis vbuyy=vbuc1_band_vbuaa - sub-option vbuyy=vbuc1_band_vbuyy +New fragment synthesis vbuyy=vbuc1_band_vbuaa - sub-option vbuyy=vbuaa_band_vbuc1 +New fragment synthesis vbuyy=vbuc1_band_vbuaa - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuyy=vbuc1_band_vbuaa - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuc1_band_vbuaa - sub-option vbuyy=vbuxx_band_vbuaa +New fragment synthesis vbuyy=vbuc1_band_vbuyy +New fragment synthesis vbuyy=vbuc1_band_vbuyy - sub-option vbuyy=vbuyy_band_vbuc1 +New fragment synthesis vbuyy=vbuc1_band_vbuyy - sub-option vbuaa=vbuc1_band_vbuyy +New fragment synthesis vbuyy=vbuc1_band_vbuyy - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuc1_band_vbuyy - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuyy_band_vbuc1 +New fragment synthesis vbuyy=vbuyy_band_vbuc1 - sub-option vbuyy=vbuc1_band_vbuyy +New fragment synthesis vbuyy=vbuyy_band_vbuc1 - sub-option vbuaa=vbuyy_band_vbuc1 +New fragment synthesis vbuyy=vbuyy_band_vbuc1 - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuyy_band_vbuc1 - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuyy_band_vbuaa - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuyy_band_vbuaa - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuyy_band_vbuaa - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuyy_band_vbuxx - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuyy_band_vbuxx - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuyy_band_vbuxx - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuxx_band_vbuyy - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuxx_band_vbuyy - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuxx_band_vbuyy - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuaa_band_vbuyy - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuaa_band_vbuyy - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuaa_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuxx_band_vbuaa +New fragment synthesis vbuyy=vbuxx_band_vbuaa - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuxx_band_vbuaa - sub-option vbuyy=vbuaa_band_vbuxx +New fragment synthesis vbuyy=vbuxx_band_vbuaa - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuyy=vbuaa_band_vbuxx +New fragment synthesis vbuyy=vbuaa_band_vbuxx - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuaa_band_vbuxx - sub-option vbuyy=vbuxx_band_vbuaa +New fragment synthesis vbuyy=vbuaa_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuyy=vbuc1_band_vbuz1 +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuc1_band_vbuaa +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuc1_band_vbuyy +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuc1_band_vbuyy +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuc1_band_vbuxx +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuz1_band_vbuc1 +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuaa=vbuc1_band_vbuz1 +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuaa_band_vbuz1 +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuyy_band_vbuz1 +New fragment synthesis vbuyy=vbuc1_band_vbuz1 - sub-option vbuyy=vbuxx_band_vbuz1 +New fragment synthesis vbuyy=vbuaa_band_vbuz1 +New fragment synthesis vbuyy=vbuaa_band_vbuz1 - sub-option vbuyy=vbuxx_band_vbuz1 +New fragment synthesis vbuyy=vbuaa_band_vbuz1 - sub-option vbuyy=vbuyy_band_vbuz1 +New fragment synthesis vbuyy=vbuaa_band_vbuz1 - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuaa_band_vbuz1 - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuaa_band_vbuz1 - sub-option vbuyy=vbuaa_band_vbuxx +New fragment synthesis vbuyy=vbuaa_band_vbuz1 - sub-option vbuyy=vbuz1_band_vbuaa +New fragment synthesis vbuyy=vbuaa_band_vbuz1 - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuyy=vbuxx_band_vbuz1 +New fragment synthesis vbuyy=vbuxx_band_vbuz1 - sub-option vbuyy=vbuaa_band_vbuz1 +New fragment synthesis vbuyy=vbuxx_band_vbuz1 - sub-option vbuyy=vbuxx_band_vbuaa +New fragment synthesis vbuyy=vbuxx_band_vbuz1 - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuxx_band_vbuz1 - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuxx_band_vbuz1 - sub-option vbuyy=vbuz1_band_vbuxx +New fragment synthesis vbuyy=vbuxx_band_vbuz1 - sub-option vbuaa=vbuxx_band_vbuz1 +New fragment synthesis vbuyy=vbuz1_band_vbuxx +New fragment synthesis vbuyy=vbuz1_band_vbuxx - sub-option vbuyy=vbuz1_band_vbuaa +New fragment synthesis vbuyy=vbuz1_band_vbuxx - sub-option vbuyy=vbuaa_band_vbuxx +New fragment synthesis vbuyy=vbuz1_band_vbuxx - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuz1_band_vbuxx - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuz1_band_vbuxx - sub-option vbuyy=vbuxx_band_vbuz1 +New fragment synthesis vbuyy=vbuz1_band_vbuxx - sub-option vbuaa=vbuz1_band_vbuxx +New fragment synthesis vbuyy=vbuz1_band_vbuaa +New fragment synthesis vbuyy=vbuz1_band_vbuaa - sub-option vbuyy=vbuz1_band_vbuxx +New fragment synthesis vbuyy=vbuz1_band_vbuaa - sub-option vbuyy=vbuz1_band_vbuyy +New fragment synthesis vbuyy=vbuz1_band_vbuaa - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuz1_band_vbuaa - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuz1_band_vbuaa - sub-option vbuyy=vbuxx_band_vbuaa +New fragment synthesis vbuyy=vbuz1_band_vbuaa - sub-option vbuyy=vbuaa_band_vbuz1 +New fragment synthesis vbuyy=vbuz1_band_vbuaa - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuyy=vbuz1_band_vbuyy +New fragment synthesis vbuyy=vbuz1_band_vbuyy - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuyy=vbuz1_band_vbuyy - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuyy=vbuz1_band_vbuyy - sub-option vbuyy=vbuyy_band_vbuz1 +New fragment synthesis vbuyy=vbuz1_band_vbuyy - sub-option vbuaa=vbuz1_band_vbuyy +New fragment synthesis vbuyy=vbuyy_band_vbuz1 +New fragment synthesis vbuyy=vbuyy_band_vbuz1 - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuyy=vbuyy_band_vbuz1 - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuyy=vbuyy_band_vbuz1 - sub-option vbuyy=vbuz1_band_vbuyy +New fragment synthesis vbuyy=vbuyy_band_vbuz1 - sub-option vbuaa=vbuyy_band_vbuz1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuaa_band_vbuc1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuyy_band_vbuc1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuxx_band_vbuc1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuxx_band_vbuc1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuc1_band_vbuz1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuaa=vbuz1_band_vbuc1 +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuz1_band_vbuaa +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuz1_band_vbuyy +New fragment synthesis vbuxx=vbuz1_band_vbuc1 - sub-option vbuxx=vbuz1_band_vbuxx +New fragment synthesis vbuxx=vbuaa_band_vbuc1 +New fragment synthesis vbuxx=vbuaa_band_vbuc1 - sub-option vbuxx=vbuxx_band_vbuc1 +New fragment synthesis vbuxx=vbuaa_band_vbuc1 - sub-option vbuxx=vbuyy_band_vbuc1 +New fragment synthesis vbuxx=vbuaa_band_vbuc1 - sub-option vbuxx=vbuc1_band_vbuaa +New fragment synthesis vbuxx=vbuaa_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuxx=vbuaa_band_vbuc1 - sub-option vbuxx=vbuaa_band_vbuyy +New fragment synthesis vbuxx=vbuaa_band_vbuc1 - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuxx_band_vbuc1 +New fragment synthesis vbuxx=vbuxx_band_vbuc1 - sub-option vbuxx=vbuc1_band_vbuxx +New fragment synthesis vbuxx=vbuxx_band_vbuc1 - sub-option vbuaa=vbuxx_band_vbuc1 +New fragment synthesis vbuxx=vbuxx_band_vbuc1 - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuxx_band_vbuc1 - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuxx +New fragment synthesis vbuxx=vbuc1_band_vbuxx - sub-option vbuxx=vbuxx_band_vbuc1 +New fragment synthesis vbuxx=vbuc1_band_vbuxx - sub-option vbuaa=vbuc1_band_vbuxx +New fragment synthesis vbuxx=vbuc1_band_vbuxx - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuc1_band_vbuxx - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuaa_band_vbuxx - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuaa_band_vbuxx - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuaa_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuyy_band_vbuxx - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuyy_band_vbuxx - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuyy_band_vbuxx - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuxx_band_vbuyy - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuxx_band_vbuyy - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuxx_band_vbuyy - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuxx_band_vbuaa - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuxx_band_vbuaa - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuxx_band_vbuaa - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuyy_band_vbuc1 +New fragment synthesis vbuxx=vbuyy_band_vbuc1 - sub-option vbuxx=vbuaa_band_vbuc1 +New fragment synthesis vbuxx=vbuyy_band_vbuc1 - sub-option vbuxx=vbuc1_band_vbuyy +New fragment synthesis vbuxx=vbuyy_band_vbuc1 - sub-option vbuaa=vbuyy_band_vbuc1 +New fragment synthesis vbuxx=vbuyy_band_vbuc1 - sub-option vbuxx=vbuyy_band_vbuaa +New fragment synthesis vbuxx=vbuyy_band_vbuc1 - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuc1_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuyy - sub-option vbuxx=vbuc1_band_vbuaa +New fragment synthesis vbuxx=vbuc1_band_vbuyy - sub-option vbuxx=vbuyy_band_vbuc1 +New fragment synthesis vbuxx=vbuc1_band_vbuyy - sub-option vbuaa=vbuc1_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuyy - sub-option vbuxx=vbuaa_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuyy - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuaa +New fragment synthesis vbuxx=vbuc1_band_vbuaa - sub-option vbuxx=vbuc1_band_vbuxx +New fragment synthesis vbuxx=vbuc1_band_vbuaa - sub-option vbuxx=vbuc1_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuaa - sub-option vbuxx=vbuaa_band_vbuc1 +New fragment synthesis vbuxx=vbuc1_band_vbuaa - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuxx=vbuc1_band_vbuaa - sub-option vbuxx=vbuyy_band_vbuaa +New fragment synthesis vbuxx=vbuc1_band_vbuaa - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuyy_band_vbuaa +New fragment synthesis vbuxx=vbuyy_band_vbuaa - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuyy_band_vbuaa - sub-option vbuxx=vbuaa_band_vbuyy +New fragment synthesis vbuxx=vbuyy_band_vbuaa - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuxx=vbuaa_band_vbuyy +New fragment synthesis vbuxx=vbuaa_band_vbuyy - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuaa_band_vbuyy - sub-option vbuxx=vbuyy_band_vbuaa +New fragment synthesis vbuxx=vbuaa_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuz1 +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuc1_band_vbuaa +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuc1_band_vbuyy +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuc1_band_vbuxx +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuc1_band_vbuxx +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuz1_band_vbuc1 +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuaa=vbuc1_band_vbuz1 +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuaa_band_vbuz1 +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuyy_band_vbuz1 +New fragment synthesis vbuxx=vbuc1_band_vbuz1 - sub-option vbuxx=vbuxx_band_vbuz1 +New fragment synthesis vbuxx=vbuaa_band_vbuz1 +New fragment synthesis vbuxx=vbuaa_band_vbuz1 - sub-option vbuxx=vbuxx_band_vbuz1 +New fragment synthesis vbuxx=vbuaa_band_vbuz1 - sub-option vbuxx=vbuyy_band_vbuz1 +New fragment synthesis vbuxx=vbuaa_band_vbuz1 - sub-option vbuxx=vbuaa_band_vbuyy +New fragment synthesis vbuxx=vbuaa_band_vbuz1 - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuaa_band_vbuz1 - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuaa_band_vbuz1 - sub-option vbuxx=vbuz1_band_vbuaa +New fragment synthesis vbuxx=vbuaa_band_vbuz1 - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuxx=vbuxx_band_vbuz1 +New fragment synthesis vbuxx=vbuxx_band_vbuz1 - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuxx_band_vbuz1 - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuxx_band_vbuz1 - sub-option vbuxx=vbuz1_band_vbuxx +New fragment synthesis vbuxx=vbuxx_band_vbuz1 - sub-option vbuaa=vbuxx_band_vbuz1 +New fragment synthesis vbuxx=vbuz1_band_vbuxx +New fragment synthesis vbuxx=vbuz1_band_vbuxx - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuxx=vbuz1_band_vbuxx - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuz1_band_vbuxx - sub-option vbuxx=vbuxx_band_vbuz1 +New fragment synthesis vbuxx=vbuz1_band_vbuxx - sub-option vbuaa=vbuz1_band_vbuxx +New fragment synthesis vbuxx=vbuyy_band_vbuz1 +New fragment synthesis vbuxx=vbuyy_band_vbuz1 - sub-option vbuxx=vbuaa_band_vbuz1 +New fragment synthesis vbuxx=vbuyy_band_vbuz1 - sub-option vbuxx=vbuyy_band_vbuaa +New fragment synthesis vbuxx=vbuyy_band_vbuz1 - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuyy_band_vbuz1 - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuxx=vbuyy_band_vbuz1 - sub-option vbuxx=vbuz1_band_vbuyy +New fragment synthesis vbuxx=vbuyy_band_vbuz1 - sub-option vbuaa=vbuyy_band_vbuz1 +New fragment synthesis vbuxx=vbuz1_band_vbuyy +New fragment synthesis vbuxx=vbuz1_band_vbuyy - sub-option vbuxx=vbuz1_band_vbuaa +New fragment synthesis vbuxx=vbuz1_band_vbuyy - sub-option vbuxx=vbuaa_band_vbuyy +New fragment synthesis vbuxx=vbuz1_band_vbuyy - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuz1_band_vbuyy - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuxx=vbuz1_band_vbuyy - sub-option vbuxx=vbuyy_band_vbuz1 +New fragment synthesis vbuxx=vbuz1_band_vbuyy - sub-option vbuaa=vbuz1_band_vbuyy +New fragment synthesis vbuxx=vbuz1_band_vbuaa +New fragment synthesis vbuxx=vbuz1_band_vbuaa - sub-option vbuxx=vbuz1_band_vbuxx +New fragment synthesis vbuxx=vbuz1_band_vbuaa - sub-option vbuxx=vbuz1_band_vbuyy +New fragment synthesis vbuxx=vbuz1_band_vbuaa - sub-option vbuxx=vbuyy_band_vbuaa +New fragment synthesis vbuxx=vbuz1_band_vbuaa - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuz1_band_vbuaa - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuxx=vbuz1_band_vbuaa - sub-option vbuxx=vbuaa_band_vbuz1 +New fragment synthesis vbuxx=vbuz1_band_vbuaa - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuz1=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuz1=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuz1=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuyy=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuxx=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuz1=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuaa=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuz1=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuc1 - sub-option vbuz1=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuz1=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuaa=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuyy=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuxx=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuz1=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuaa=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuz1=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuc1 - sub-option vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuz1=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuaa=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuyy=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuxx=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuz1=vbuxx_band_vbuc1 +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuaa=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuz1=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuxx - sub-option vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuz1=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuz1=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuyy=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuxx=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuz1=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuaa=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuz1=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuaa - sub-option vbuz1=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuz1=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuaa=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuyy=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuxx=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuz1=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuaa=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuz1=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuyy - sub-option vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuz1=vbuaa_band_vbuc1 +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuaa=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuyy=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuxx=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuz1=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuaa=vbuyy_band_vbuc1 +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuz1=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuc1 - sub-option vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuaa - sub-option vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuaa - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuaa - sub-option vbuyy=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuaa - sub-option vbuxx=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuaa - sub-option vbuz1=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuyy_band_vbuaa - sub-option vbuaa=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuxx - sub-option vbuz1=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuxx - sub-option vbuz1=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuxx - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuxx - sub-option vbuyy=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuxx - sub-option vbuxx=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuxx - sub-option vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuyy_band_vbuxx - sub-option vbuaa=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuaa_band_vbuxx - sub-option vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuaa_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuaa_band_vbuxx - sub-option vbuyy=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuaa_band_vbuxx - sub-option vbuxx=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuaa_band_vbuxx - sub-option vbuz1=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuaa_band_vbuxx - sub-option vbuaa=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuaa - sub-option vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuxx_band_vbuaa - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuaa - sub-option vbuyy=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuaa - sub-option vbuxx=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuaa - sub-option vbuz1=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuxx_band_vbuaa - sub-option vbuaa=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuxx_band_vbuyy - sub-option vbuz1=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuxx_band_vbuyy - sub-option vbuz1=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuyy - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuxx_band_vbuyy - sub-option vbuyy=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuxx_band_vbuyy - sub-option vbuxx=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuxx_band_vbuyy - sub-option vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuxx_band_vbuyy - sub-option vbuaa=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuyy - sub-option vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuyy - sub-option vbuyy=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuyy - sub-option vbuxx=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuyy - sub-option vbuz1=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuaa_band_vbuyy - sub-option vbuaa=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuz2 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuaa=vbuc1_band_vbuz1 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuyy=vbuc1_band_vbuz1 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuxx=vbuc1_band_vbuz1 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuz1=vbuc1_band_vbuaa +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuz1=vbuc1_band_vbuyy +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuz1=vbuc1_band_vbuxx +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuz1=vbuz2_band_vbuc1 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuaa=vbuc1_band_vbuz1 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuz1=vbuaa_band_vbuz2 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuz1=vbuyy_band_vbuz2 +New fragment synthesis vbuz1=vbuc1_band_vbuz2 - sub-option vbuz1=vbuxx_band_vbuz2 +New fragment synthesis vbuz1=vbuaa_band_vbuz2 +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuz1=vbuxx_band_vbuz2 +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuz1=vbuyy_band_vbuz2 +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuyy=vbuaa_band_vbuz1 +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuxx=vbuaa_band_vbuz1 +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuz1=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuz1=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuz1=vbuz2_band_vbuaa +New fragment synthesis vbuz1=vbuaa_band_vbuz2 - sub-option vbuaa=vbuaa_band_vbuz1 +New fragment synthesis vbuz1=vbuxx_band_vbuz2 +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuz1=vbuaa_band_vbuz2 +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuaa=vbuxx_band_vbuz1 +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuyy=vbuxx_band_vbuz1 +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuxx=vbuxx_band_vbuz1 +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuz1=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuz1=vbuz2_band_vbuxx +New fragment synthesis vbuz1=vbuxx_band_vbuz2 - sub-option vbuaa=vbuxx_band_vbuz1 +New fragment synthesis vbuz1=vbuz2_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuz1=vbuz2_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuaa=vbuz1_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuyy=vbuz1_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuxx=vbuz1_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuz1=vbuaa_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuz1=vbuxx_band_vbuz2 +New fragment synthesis vbuz1=vbuz2_band_vbuxx - sub-option vbuaa=vbuz1_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuz1=vbuz2_band_vbuxx +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuz1=vbuz2_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuyy=vbuz1_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuxx=vbuz1_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuz1=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuz1=vbuxx_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuz1=vbuaa_band_vbuz2 +New fragment synthesis vbuz1=vbuz2_band_vbuaa - sub-option vbuaa=vbuz1_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuz1=vbuz2_band_vbuaa +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuaa=vbuz1_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuyy=vbuz1_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuxx=vbuz1_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuz1=vbuaa_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuz1=vbuxx_band_vbuyy +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuz1=vbuyy_band_vbuz2 +New fragment synthesis vbuz1=vbuz2_band_vbuyy - sub-option vbuaa=vbuz1_band_vbuyy +New fragment synthesis vbuz1=vbuyy_band_vbuz2 +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuz1=vbuaa_band_vbuz2 +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuaa=vbuyy_band_vbuz1 +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuyy=vbuyy_band_vbuz1 +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuxx=vbuyy_band_vbuz1 +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuz1=vbuyy_band_vbuaa +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuz1=vbuyy_band_vbuxx +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuz1=vbuz2_band_vbuyy +New fragment synthesis vbuz1=vbuyy_band_vbuz2 - sub-option vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuc1_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuc1_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuc1_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_band_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuxx - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - New best, scheduling parent vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - New best, scheduling parent vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - New best, scheduling parent vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - New best, scheduling parent vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuxx - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuxx - New best, scheduling parent vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuxx - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - New best, scheduling parent vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - New best, scheduling parent vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - New best, scheduling parent vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - New best, scheduling parent vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuyy - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuyy - New best, scheduling parent vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuyy - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuyy - New best, scheduling parent vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_band_vbuxx - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuc1_band_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - New best, scheduling parent vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuaa - New best, scheduling parent vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuaa - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuaa - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuaa - New best, scheduling parent vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuz2 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuz2 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuz2 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuyy - New best, scheduling parent vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuyy - New best, scheduling parent vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - New best, scheduling parent vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuaa - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuaa - New best, scheduling parent vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuaa - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuaa - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuaa - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuaa - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - New best, scheduling parent vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuaa_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - New best, scheduling parent vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuz1=vbuxx_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuaa_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuaa_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuyy_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuz1 - Successfully synthesized from vbuxx=vbuxx_band_vbuz1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuxx_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuxx_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - New best, scheduling parent vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuaa_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuxx - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuaa_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuxx - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuxx - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuxx_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - New best, scheduling parent vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuyy_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuaa_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuaa_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuyy_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuz1 - Successfully synthesized from vbuyy=vbuxx_band_vbuz1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuyy_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - New best, scheduling parent vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuaa_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuyy - Successfully synthesized from vbuz1=vbuxx_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuaa_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuyy - Successfully synthesized from vbuxx=vbuxx_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuaa_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuyy - Successfully synthesized from vbuyy=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuyy_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuyy_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuaa - New best, scheduling parent vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuyy_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuaa - Successfully synthesized from vbuz1=vbuxx_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuxx +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuc1_band_vbuyy +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuyy_band_vbuaa +Fragment synthesis vbuxx=vbuc1_band_vbuaa - Successfully synthesized from vbuxx=vbuxx_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuxx +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuc1_band_vbuyy +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuyy_band_vbuaa +Fragment synthesis vbuyy=vbuc1_band_vbuaa - Successfully synthesized from vbuyy=vbuxx_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuxx - Successfully synthesized from vbuaa=vbuyy_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuyy - Successfully synthesized from vbuaa=vbuxx_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuyy +Fragment synthesis vbuaa=vbuaa_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuaa_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuyy_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuxx_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuz1_band_vbuaa +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuz1_band_vbuyy +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - New best, scheduling parent vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - New best, scheduling parent vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - New best, scheduling parent vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuz1_band_vbuc1 - New best, scheduling parent vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuaa_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuyy_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuxx_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuaa +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuyy +Fragment synthesis vbuxx=vbuz1_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuxx +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuaa_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuyy_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuxx_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuaa +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuyy +Fragment synthesis vbuyy=vbuz1_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuaa +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuyy +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuc1_band_vbuxx +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuaa_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuyy_band_vbuz1 +Fragment synthesis vbuaa=vbuc1_band_vbuz1 - Successfully synthesized from vbuaa=vbuxx_band_vbuz1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuyy=vbuz1_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuxx=vbuz1_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuz1=vbuaa_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuz1=vbuyy_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuz1=vbuxx_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuaa=vbuz1_band_vbuc1 +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuz1=vbuz2_band_vbuaa +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuz1=vbuz2_band_vbuyy +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - Successfully synthesized from vbuz1=vbuz2_band_vbuxx +Fragment synthesis vbuz1=vbuz2_band_vbuc1 - New best, scheduling parent vbuz1=vbuc1_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuyy=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuxx=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuaa +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuyy +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuc1_band_vbuxx +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuz2_band_vbuc1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuaa=vbuc1_band_vbuz1 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuaa_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuyy_band_vbuz2 +Fragment synthesis vbuz1=vbuc1_band_vbuz2 - Successfully synthesized from vbuz1=vbuxx_band_vbuz2 +Found best fragment vbuz1=vbuz2_band_vbuc1 < vbuaa=vbuz1_band_vbuc1 < vbuaa=vbuc1_band_vbuz1 < vbuaa=vbuaa_band_vbuz1 score: 8.5 +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 - Successfully loaded vwuz1=vwuz1_bor_vbuc1.asm +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 - sub-option vwuz1=vbuc1_bor_vwuz1 +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 - sub-option vwuz1=vwuz1_bor_vwuc1 +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 - sub-option vwuz1=vwuz2_bor_vbuc1 +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 - sub-option vwuz1=vwuz1_bor_vbuaa +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 - sub-option vwuz1=vwuz1_bor_vbuyy +New fragment synthesis vwuz1=vwuz1_bor_vbuc1 - sub-option vwuz1=vwuz1_bor_vbuxx +New fragment synthesis vwuz1=vbuc1_bor_vwuz1 +New fragment synthesis vwuz1=vbuc1_bor_vwuz1 - sub-option vwuz1=vwuz1_bor_vbuc1 +New fragment synthesis vwuz1=vbuc1_bor_vwuz1 - sub-option vwuz1=vwuc1_bor_vwuz1 +New fragment synthesis vwuz1=vbuc1_bor_vwuz1 - sub-option vwuz1=vbuc1_bor_vwuz2 +New fragment synthesis vwuz1=vbuc1_bor_vwuz1 - sub-option vwuz1=vbuaa_bor_vwuz1 +New fragment synthesis vwuz1=vbuc1_bor_vwuz1 - sub-option vwuz1=vbuyy_bor_vwuz1 +New fragment synthesis vwuz1=vbuc1_bor_vwuz1 - sub-option vwuz1=vbuxx_bor_vwuz1 +New fragment synthesis vwuz1=vwuc1_bor_vwuz1 +New fragment synthesis vwuz1=vwuc1_bor_vwuz1 - sub-option vwuz1=vwuz1_bor_vwuc1 +New fragment synthesis vwuz1=vwuc1_bor_vwuz1 - sub-option vwuz1=vwuc1_bor_vwuz2 +New fragment synthesis vwuz1=vwuz1_bor_vwuc1 +New fragment synthesis vwuz1=vwuz1_bor_vwuc1 - sub-option vwuz1=vwuc1_bor_vwuz1 +New fragment synthesis vwuz1=vwuz1_bor_vwuc1 - sub-option vwuz1=vwuz2_bor_vwuc1 +New fragment synthesis vwuz1=vwuz2_bor_vwuc1 +New fragment synthesis vwuz1=vwuz2_bor_vwuc1 - sub-option vwuz1=vwuc1_bor_vwuz2 +New fragment synthesis vwuz1=vwuc1_bor_vwuz2 +New fragment synthesis vwuz1=vwuc1_bor_vwuz2 - sub-option vwuz1=vwuz2_bor_vwuc1 +New fragment synthesis vwuz1=vbuc1_bor_vwuz2 +New fragment synthesis vwuz1=vbuc1_bor_vwuz2 - sub-option vwuz1=vwuz2_bor_vbuc1 +New fragment synthesis vwuz1=vbuc1_bor_vwuz2 - sub-option vwuz1=vwuc1_bor_vwuz2 +New fragment synthesis vwuz1=vbuc1_bor_vwuz2 - sub-option vwuz1=vbuaa_bor_vwuz2 +New fragment synthesis vwuz1=vbuc1_bor_vwuz2 - sub-option vwuz1=vbuyy_bor_vwuz2 +New fragment synthesis vwuz1=vbuc1_bor_vwuz2 - sub-option vwuz1=vbuxx_bor_vwuz2 +New fragment synthesis vwuz1=vwuz2_bor_vbuc1 +New fragment synthesis vwuz1=vwuz2_bor_vbuc1 - sub-option vwuz1=vbuc1_bor_vwuz2 +New fragment synthesis vwuz1=vwuz2_bor_vbuc1 - sub-option vwuz1=vwuz2_bor_vwuc1 +New fragment synthesis vwuz1=vwuz2_bor_vbuc1 - sub-option vwuz1=vwuz2_bor_vbuaa +New fragment synthesis vwuz1=vwuz2_bor_vbuc1 - sub-option vwuz1=vwuz2_bor_vbuyy +New fragment synthesis vwuz1=vwuz2_bor_vbuc1 - sub-option vwuz1=vwuz2_bor_vbuxx +New fragment synthesis vwuz1=vwuz2_bor_vbuaa +New fragment synthesis vwuz1=vwuz2_bor_vbuaa - sub-option vwuz1=vwuz2_bor_vbuxx +New fragment synthesis vwuz1=vwuz2_bor_vbuaa - sub-option vwuz1=vwuz2_bor_vbuyy +New fragment synthesis vwuz1=vwuz2_bor_vbuaa - sub-option vwuz1=vbuaa_bor_vwuz2 +New fragment synthesis vwuz1=vwuz2_bor_vbuxx +New fragment synthesis vwuz1=vwuz2_bor_vbuxx - sub-option vwuz1=vwuz2_bor_vbuaa +New fragment synthesis vwuz1=vwuz2_bor_vbuxx - sub-option vwuz1=vbuxx_bor_vwuz2 +New fragment synthesis vwuz1=vbuxx_bor_vwuz2 +New fragment synthesis vwuz1=vbuxx_bor_vwuz2 - sub-option vwuz1=vbuaa_bor_vwuz2 +New fragment synthesis vwuz1=vbuxx_bor_vwuz2 - sub-option vwuz1=vwuz2_bor_vbuxx +New fragment synthesis vwuz1=vbuaa_bor_vwuz2 +New fragment synthesis vwuz1=vbuaa_bor_vwuz2 - sub-option vwuz1=vbuxx_bor_vwuz2 +New fragment synthesis vwuz1=vbuaa_bor_vwuz2 - sub-option vwuz1=vbuyy_bor_vwuz2 +New fragment synthesis vwuz1=vbuaa_bor_vwuz2 - sub-option vwuz1=vwuz2_bor_vbuaa +New fragment synthesis vwuz1=vbuyy_bor_vwuz2 +New fragment synthesis vwuz1=vbuyy_bor_vwuz2 - sub-option vwuz1=vbuaa_bor_vwuz2 +New fragment synthesis vwuz1=vbuyy_bor_vwuz2 - sub-option vwuz1=vwuz2_bor_vbuyy +New fragment synthesis vwuz1=vwuz2_bor_vbuyy +New fragment synthesis vwuz1=vwuz2_bor_vbuyy - sub-option vwuz1=vwuz2_bor_vbuaa +New fragment synthesis vwuz1=vwuz2_bor_vbuyy - sub-option vwuz1=vbuyy_bor_vwuz2 +New fragment synthesis vwuz1=vbuaa_bor_vwuz1 +New fragment synthesis vwuz1=vbuaa_bor_vwuz1 - sub-option vwuz1=vbuxx_bor_vwuz1 +New fragment synthesis vwuz1=vbuaa_bor_vwuz1 - sub-option vwuz1=vbuyy_bor_vwuz1 +New fragment synthesis vwuz1=vbuaa_bor_vwuz1 - sub-option vwuz1=vwuz1_bor_vbuaa +New fragment synthesis vwuz1=vbuaa_bor_vwuz1 - sub-option vwuz1=vbuaa_bor_vwuz2 +New fragment synthesis vwuz1=vbuxx_bor_vwuz1 +New fragment synthesis vwuz1=vbuxx_bor_vwuz1 - sub-option vwuz1=vbuaa_bor_vwuz1 +New fragment synthesis vwuz1=vbuxx_bor_vwuz1 - sub-option vwuz1=vwuz1_bor_vbuxx +New fragment synthesis vwuz1=vbuxx_bor_vwuz1 - sub-option vwuz1=vbuxx_bor_vwuz2 +New fragment synthesis vwuz1=vwuz1_bor_vbuxx +New fragment synthesis vwuz1=vwuz1_bor_vbuxx - sub-option vwuz1=vwuz1_bor_vbuaa +New fragment synthesis vwuz1=vwuz1_bor_vbuxx - sub-option vwuz1=vbuxx_bor_vwuz1 +New fragment synthesis vwuz1=vwuz1_bor_vbuxx - sub-option vwuz1=vwuz2_bor_vbuxx +New fragment synthesis vwuz1=vwuz1_bor_vbuaa +New fragment synthesis vwuz1=vwuz1_bor_vbuaa - sub-option vwuz1=vwuz1_bor_vbuxx +New fragment synthesis vwuz1=vwuz1_bor_vbuaa - sub-option vwuz1=vwuz1_bor_vbuyy +New fragment synthesis vwuz1=vwuz1_bor_vbuaa - sub-option vwuz1=vbuaa_bor_vwuz1 +New fragment synthesis vwuz1=vwuz1_bor_vbuaa - sub-option vwuz1=vwuz2_bor_vbuaa +New fragment synthesis vwuz1=vwuz1_bor_vbuyy +New fragment synthesis vwuz1=vwuz1_bor_vbuyy - sub-option vwuz1=vwuz1_bor_vbuaa +New fragment synthesis vwuz1=vwuz1_bor_vbuyy - sub-option vwuz1=vbuyy_bor_vwuz1 +New fragment synthesis vwuz1=vwuz1_bor_vbuyy - sub-option vwuz1=vwuz2_bor_vbuyy +New fragment synthesis vwuz1=vbuyy_bor_vwuz1 +New fragment synthesis vwuz1=vbuyy_bor_vwuz1 - sub-option vwuz1=vbuaa_bor_vwuz1 +New fragment synthesis vwuz1=vbuyy_bor_vwuz1 - sub-option vwuz1=vwuz1_bor_vbuyy +New fragment synthesis vwuz1=vbuyy_bor_vwuz1 - sub-option vwuz1=vbuyy_bor_vwuz2 +Fragment synthesis vwuz1=vbuyy_bor_vwuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz1_bor_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=vwuz1_bor_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=vwuz1_bor_vbuxx - No file or synthesis results! +Fragment synthesis vwuz1=vbuxx_bor_vwuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vbuaa_bor_vwuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_bor_vbuyy - No file or synthesis results! +Fragment synthesis vwuz1=vbuyy_bor_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vbuaa_bor_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vbuxx_bor_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_bor_vbuxx - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_bor_vbuaa - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_bor_vbuc1 - No file or synthesis results! +Fragment synthesis vwuz1=vbuc1_bor_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vwuc1_bor_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_bor_vwuc1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz1_bor_vwuc1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuc1_bor_vwuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vbuc1_bor_vwuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz1_bor_vbuc1 - New best, scheduling parent vwuz1=vbuc1_bor_vwuz1 +Fragment synthesis vwuz1=vbuc1_bor_vwuz1 - Successfully synthesized from vwuz1=vwuz1_bor_vbuc1 +Fragment synthesis vwuz1=vbuc1_bor_vwuz1 - New best, scheduling parent vwuz1=vwuz1_bor_vbuc1 +Fragment synthesis vwuz1=vwuz1_bor_vbuc1 - Successfully synthesized from vwuz1=vbuc1_bor_vwuz1 +Found best fragment vwuz1=vwuz1_bor_vbuc1 score: 8.5 +New fragment synthesis vwuz1_lt_vwuz2_then_la1 +New fragment synthesis vwuz1_lt_vwuz2_then_la1 - Successfully loaded vwuz1_lt_vwuz2_then_la1.asm +New fragment synthesis vwuz1_lt_vwuz2_then_la1 - sub-option vwuz2_gt_vwuz1_then_la1 +New fragment synthesis vwuz2_gt_vwuz1_then_la1 +New fragment synthesis vwuz2_gt_vwuz1_then_la1 - sub-option vwuz1_lt_vwuz2_then_la1 +Fragment synthesis vwuz2_gt_vwuz1_then_la1 - No file or synthesis results! +Fragment synthesis vwuz1_lt_vwuz2_then_la1 - New best, scheduling parent vwuz2_gt_vwuz1_then_la1 +Fragment synthesis vwuz2_gt_vwuz1_then_la1 - Successfully synthesized from vwuz1_lt_vwuz2_then_la1 +Fragment synthesis vwuz2_gt_vwuz1_then_la1 - New best, scheduling parent vwuz1_lt_vwuz2_then_la1 +Fragment synthesis vwuz1_lt_vwuz2_then_la1 - Successfully synthesized from vwuz2_gt_vwuz1_then_la1 +Found best fragment vwuz1_lt_vwuz2_then_la1 score: 20.0 +New fragment synthesis vwuz1=_inc_vwuz1 +New fragment synthesis vwuz1=_inc_vwuz1 - Successfully loaded vwuz1=_inc_vwuz1.asm +New fragment synthesis vwuz1=_inc_vwuz1 - sub-option vwuz1=vwuz1_plus_1 +New fragment synthesis vwuz1=vwuz1_plus_1 +New fragment synthesis vwuz1=vwuz1_plus_1 - Successfully loaded vwuz1=vwuz1_plus_1.asm +New fragment synthesis vwuz1=vwuz1_plus_1 - sub-option vwuz1=1_plus_vwuz1 +New fragment synthesis vwuz1=vwuz1_plus_1 - sub-option vwuz1=vwuz2_plus_1 +New fragment synthesis vwuz1=1_plus_vwuz1 +New fragment synthesis vwuz1=1_plus_vwuz1 - sub-option vwuz1=vwuz1_plus_1 +New fragment synthesis vwuz1=1_plus_vwuz1 - sub-option vwuz1=1_plus_vwuz2 +New fragment synthesis vwuz1=1_plus_vwuz2 +New fragment synthesis vwuz1=1_plus_vwuz2 - sub-option vwuz1=vwuz2_plus_1 +New fragment synthesis vwuz1=vwuz2_plus_1 +New fragment synthesis vwuz1=vwuz2_plus_1 - Successfully loaded vwuz1=vwuz2_plus_1.asm +New fragment synthesis vwuz1=vwuz2_plus_1 - sub-option vwuz1=1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_1 - New best, scheduling parent vwuz1=1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_1 - New best, scheduling parent vwuz1=vwuz1_plus_1 +Fragment synthesis vwuz1=1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz2_plus_1 +Fragment synthesis vwuz1=1_plus_vwuz2 - New best, scheduling parent vwuz1=vwuz2_plus_1 +Fragment synthesis vwuz1=1_plus_vwuz2 - New best, scheduling parent vwuz1=1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz2_plus_1 - Successfully synthesized from vwuz1=1_plus_vwuz2 +Fragment synthesis vwuz1=1_plus_vwuz1 - Successfully synthesized from vwuz1=1_plus_vwuz2 +Fragment synthesis vwuz1=1_plus_vwuz1 - New best, scheduling parent vwuz1=vwuz1_plus_1 +Fragment synthesis vwuz1=vwuz1_plus_1 - Successfully synthesized from vwuz1=1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_1 - Successfully synthesized from vwuz1=vwuz2_plus_1 +Fragment synthesis vwuz1=vwuz1_plus_1 - New best, scheduling parent vwuz1=1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_1 - New best, scheduling parent vwuz1=_inc_vwuz1 +Fragment synthesis vwuz1=1_plus_vwuz1 - Successfully synthesized from vwuz1=vwuz1_plus_1 +Fragment synthesis vwuz1=1_plus_vwuz1 - Successfully synthesized from vwuz1=1_plus_vwuz2 +Fragment synthesis vwuz1=1_plus_vwuz1 - New best, scheduling parent vwuz1=vwuz1_plus_1 +Fragment synthesis vwuz1=vwuz1_plus_1 - Successfully synthesized from vwuz1=1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_1 - Successfully synthesized from vwuz1=vwuz2_plus_1 +Fragment synthesis vwuz1=_inc_vwuz1 - Successfully synthesized from vwuz1=vwuz1_plus_1 +Found best fragment vwuz1=_inc_vwuz1 score: 12.5 +New fragment synthesis vwuz1=vwuz1_minus_vwuz2 +New fragment synthesis vwuz1=vwuz1_minus_vwuz2 - Successfully loaded vwuz1=vwuz1_minus_vwuz2.asm +Found best fragment vwuz1=vwuz1_minus_vwuz2 score: 20.5 +New fragment synthesis vbuz1=_inc_vbuz1 +New fragment synthesis vbuz1=_inc_vbuz1 - Successfully loaded vbuz1=_inc_vbuz1.asm +New fragment synthesis vbuz1=_inc_vbuz1 - sub-option vbuaa=_inc_vbuz1 +New fragment synthesis vbuaa=_inc_vbuz1 +New fragment synthesis vbuaa=_inc_vbuz1 - sub-option vbuaa=_inc_vbuaa +New fragment synthesis vbuaa=_inc_vbuz1 - sub-option vbuaa=_inc_vbuaa +New fragment synthesis vbuaa=_inc_vbuz1 - sub-option vbuaa=_inc_vbuyy +New fragment synthesis vbuaa=_inc_vbuz1 - sub-option vbuaa=_inc_vbuxx +New fragment synthesis vbuaa=_inc_vbuz1 - sub-option vbuaa=vbuz1_plus_1 +New fragment synthesis vbuaa=vbuz1_plus_1 +New fragment synthesis vbuaa=vbuz1_plus_1 - sub-option vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=vbuz1_plus_1 - sub-option vbuaa=vbuaa_plus_1 +New fragment synthesis vbuaa=vbuz1_plus_1 - sub-option vbuaa=vbuyy_plus_1 +New fragment synthesis vbuaa=vbuz1_plus_1 - sub-option vbuaa=vbuxx_plus_1 +New fragment synthesis vbuaa=vbuz1_plus_1 - sub-option vbuaa=1_plus_vbuz1 +New fragment synthesis vbuaa=1_plus_vbuz1 +New fragment synthesis vbuaa=1_plus_vbuz1 - sub-option vbuaa=1_plus_vbuaa +New fragment synthesis vbuaa=1_plus_vbuz1 - sub-option vbuaa=1_plus_vbuaa +New fragment synthesis vbuaa=1_plus_vbuz1 - sub-option vbuaa=1_plus_vbuyy +New fragment synthesis vbuaa=1_plus_vbuz1 - sub-option vbuaa=1_plus_vbuxx +New fragment synthesis vbuaa=1_plus_vbuz1 - sub-option vbuaa=vbuz1_plus_1 +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuxx +Fragment synthesis vbuaa=1_plus_vbuz1 - New best, scheduling parent vbuaa=vbuz1_plus_1 +Fragment synthesis vbuaa=vbuz1_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=vbuz1_plus_1 - Successfully synthesized from vbuaa=vbuaa_plus_1 +Fragment synthesis vbuaa=vbuz1_plus_1 - Successfully synthesized from vbuaa=vbuyy_plus_1 +Fragment synthesis vbuaa=vbuz1_plus_1 - Successfully synthesized from vbuaa=vbuxx_plus_1 +Fragment synthesis vbuaa=vbuz1_plus_1 - Successfully synthesized from vbuaa=1_plus_vbuz1 +Fragment synthesis vbuaa=vbuz1_plus_1 - New best, scheduling parent vbuaa=1_plus_vbuz1 +Fragment synthesis vbuaa=vbuz1_plus_1 - New best, scheduling parent vbuaa=_inc_vbuz1 +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuaa +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuyy +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=1_plus_vbuxx +Fragment synthesis vbuaa=1_plus_vbuz1 - Successfully synthesized from vbuaa=vbuz1_plus_1 +Fragment synthesis vbuaa=_inc_vbuz1 - Successfully synthesized from vbuaa=_inc_vbuaa +Fragment synthesis vbuaa=_inc_vbuz1 - Successfully synthesized from vbuaa=_inc_vbuaa +Fragment synthesis vbuaa=_inc_vbuz1 - Successfully synthesized from vbuaa=_inc_vbuyy +Fragment synthesis vbuaa=_inc_vbuz1 - Successfully synthesized from vbuaa=_inc_vbuxx +Fragment synthesis vbuaa=_inc_vbuz1 - Successfully synthesized from vbuaa=vbuz1_plus_1 +Fragment synthesis vbuaa=_inc_vbuz1 - New best, scheduling parent vbuz1=_inc_vbuz1 +Fragment synthesis vbuz1=_inc_vbuz1 - Successfully synthesized from vbuaa=_inc_vbuz1 +Found best fragment vbuz1=_inc_vbuz1 score: 5.0 +New fragment synthesis pbuz1=pbuc1 +New fragment synthesis pbuz1=pbuc1 - sub-option pbuz1=vwuc1 +New fragment synthesis pbuz1=vwuc1 +New fragment synthesis pbuz1=vwuc1 - Successfully loaded pbuz1=vwuc1.asm +Fragment synthesis pbuz1=vwuc1 - New best, scheduling parent pbuz1=pbuc1 +Fragment synthesis pbuz1=pbuc1 - Successfully synthesized from pbuz1=vwuc1 +Found best fragment pbuz1=pbuc1 < pbuz1=vwuc1 score: 10.5 +New fragment synthesis _deref_pbuz1=vbuc1 +New fragment synthesis _deref_pbuz1=vbuc1 - sub-option vbuaa=vbuc1 +New fragment synthesis _deref_pbuz1=vbuc1 - sub-option _deref_pbuz1=vbuaa +New fragment synthesis _deref_pbuz1=vbuc1 - sub-option _deref_pbuz1=vbuyy +New fragment synthesis _deref_pbuz1=vbuc1 - sub-option _deref_pbuz1=vbuxx +New fragment synthesis _deref_pbuz1=vbuaa +New fragment synthesis _deref_pbuz1=vbuaa - Successfully loaded _deref_pbuz1=vbuaa.asm +New fragment synthesis _deref_pbuz1=vbuaa - sub-option _deref_pbuz1=vbuxx +New fragment synthesis _deref_pbuz1=vbuaa - sub-option _deref_pbuz1=vbuyy +New fragment synthesis _deref_pbuz1=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis _deref_pbuz1=vbuxx +New fragment synthesis _deref_pbuz1=vbuxx - sub-option _deref_pbuz1=vbuaa +New fragment synthesis _deref_pbuz1=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis _deref_pbuz1=vbuyy +New fragment synthesis _deref_pbuz1=vbuyy - sub-option _deref_pbuz1=vbuaa +New fragment synthesis _deref_pbuz1=vbuyy - sub-option vbuaa=vbuyy +Fragment synthesis _deref_pbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis _deref_pbuz1=vbuyy - New best, scheduling parent _deref_pbuz1=vbuaa +Fragment synthesis _deref_pbuz1=vbuyy - New best, scheduling parent _deref_pbuz1=vbuc1 +Fragment synthesis _deref_pbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis _deref_pbuz1=vbuxx - New best, scheduling parent _deref_pbuz1=vbuaa +Fragment synthesis _deref_pbuz1=vbuxx - New best, scheduling parent _deref_pbuz1=vbuc1 +Fragment synthesis _deref_pbuz1=vbuaa - Successfully synthesized from _deref_pbuz1=vbuxx +Fragment synthesis _deref_pbuz1=vbuaa - Successfully synthesized from _deref_pbuz1=vbuyy +Fragment synthesis _deref_pbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis _deref_pbuz1=vbuaa - New best, scheduling parent _deref_pbuz1=vbuxx +Fragment synthesis _deref_pbuz1=vbuaa - New best, scheduling parent _deref_pbuz1=vbuyy +Fragment synthesis _deref_pbuz1=vbuaa - New best, scheduling parent _deref_pbuz1=vbuc1 +Fragment synthesis _deref_pbuz1=vbuyy - Successfully synthesized from _deref_pbuz1=vbuaa +Fragment synthesis _deref_pbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis _deref_pbuz1=vbuxx - Successfully synthesized from _deref_pbuz1=vbuaa +Fragment synthesis _deref_pbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis _deref_pbuz1=vbuc1 - Successfully synthesized from vbuaa=vbuc1 +Fragment synthesis _deref_pbuz1=vbuc1 - Successfully synthesized from _deref_pbuz1=vbuaa +Fragment synthesis _deref_pbuz1=vbuc1 - Successfully synthesized from _deref_pbuz1=vbuyy +Fragment synthesis _deref_pbuz1=vbuc1 - Successfully synthesized from _deref_pbuz1=vbuxx +Found best fragment _deref_pbuz1=vbuc1 < vbuaa=vbuc1 score: 11.5 +New fragment synthesis pbuz1=_inc_pbuz1 +New fragment synthesis pbuz1=_inc_pbuz1 - Successfully loaded pbuz1=_inc_pbuz1.asm +New fragment synthesis pbuz1=_inc_pbuz1 - sub-option vwuz1=_inc_vwuz1 +Fragment synthesis pbuz1=_inc_pbuz1 - Successfully synthesized from vwuz1=_inc_vwuz1 +Found best fragment pbuz1=_inc_pbuz1 score: 12.5 +New fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 +New fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - Successfully loaded vwuz1=_deref_pbuc1_word__deref_pbuc2.asm +New fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - sub-option vwuz1=vbuaa_word__deref_pbuc1 +New fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - sub-option vwuz1=vbuxx_word__deref_pbuc1 +New fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - sub-option vwuz1=vbuyy_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - sub-option vwuz1=vbuxx_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - sub-option vwuz1=vbuyy_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - sub-option vwuz1=vbuaa_word_vbuxx +New fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - sub-option vwuz1=vbuaa_word_vbuyy +New fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - sub-option vwuz1=vbuaa_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - sub-option vwuz1=vbuxx_word_vbuaa +New fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - sub-option vwuz1=vbuxx_word_vbuyy +New fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - sub-option vwuz1=vbuaa_word__deref_pbuc1 +New fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - sub-option vwuz1=vbuyy_word_vbuaa +New fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - sub-option vwuz1=vbuyy_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - New best, scheduling parent vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - New best, scheduling parent vwuz1=_deref_pbuc1_word__deref_pbuc2 +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - New best, scheduling parent vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - New best, scheduling parent vwuz1=_deref_pbuc1_word__deref_pbuc2 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - New best, scheduling parent vwuz1=vbuxx_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - New best, scheduling parent vwuz1=vbuyy_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - New best, scheduling parent vwuz1=_deref_pbuc1_word__deref_pbuc2 +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word_vbuaa +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word_vbuxx +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - New best, scheduling parent vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuyy_word__deref_pbuc1 - New best, scheduling parent vwuz1=_deref_pbuc1_word__deref_pbuc2 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word_vbuaa +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word_vbuyy +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - New best, scheduling parent vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuxx_word__deref_pbuc1 - New best, scheduling parent vwuz1=_deref_pbuc1_word__deref_pbuc2 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuxx_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuyy_word__deref_pbuc1 +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word_vbuxx +Fragment synthesis vwuz1=vbuaa_word__deref_pbuc1 - Successfully synthesized from vwuz1=vbuaa_word_vbuyy +Fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - Successfully synthesized from vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - Successfully synthesized from vwuz1=vbuaa_word__deref_pbuc1 +Fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - Successfully synthesized from vwuz1=vbuxx_word__deref_pbuc1 +Fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - Successfully synthesized from vwuz1=vbuxx_word__deref_pbuc1 +Fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - Successfully synthesized from vwuz1=vbuyy_word__deref_pbuc1 +Fragment synthesis vwuz1=_deref_pbuc1_word__deref_pbuc2 - Successfully synthesized from vwuz1=vbuyy_word__deref_pbuc1 +Found best fragment vwuz1=_deref_pbuc1_word__deref_pbuc2 score: 14.5 +New fragment synthesis pbuz1=pbuz2 +New fragment synthesis pbuz1=pbuz2 - Successfully loaded pbuz1=pbuz2.asm +New fragment synthesis pbuz1=pbuz2 - sub-option pbuz1=vwuz2 +New fragment synthesis pbuz1=vwuz2 +Fragment synthesis pbuz1=vwuz2 - No file or synthesis results! +Found best fragment pbuz1=pbuz2 score: 12.5 +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - sub-option pbuc1_derefidx_vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - sub-option pbuc1_derefidx_vbuyy=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - sub-option pbuc1_derefidx_vbuxx=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - sub-option pbuc1_derefidx_vbuz1=vbuaa +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - sub-option pbuc1_derefidx_vbuz1=vbuyy +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - sub-option pbuc1_derefidx_vbuz1=vbuxx +New fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - sub-option vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - sub-option pbuc1_derefidx_vbuxx=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - sub-option pbuc1_derefidx_vbuyy=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - sub-option pbuc1_derefidx_vbuaa=vbuyy +New fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - sub-option pbuc1_derefidx_vbuaa=vbuxx +New fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - sub-option pbuc1_derefidx_vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - sub-option pbuc1_derefidx_vbuxx=vbuaa +New fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - sub-option pbuc1_derefidx_vbuxx=vbuyy +New fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - sub-option vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - sub-option vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuxx=vbuaa +New fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - Successfully loaded pbuc1_derefidx_vbuxx=vbuaa.asm +New fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - sub-option pbuc1_derefidx_vbuxx=vbuyy +New fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis pbuc1_derefidx_vbuxx=vbuyy +New fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - sub-option pbuc1_derefidx_vbuaa=vbuyy +New fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - sub-option pbuc1_derefidx_vbuxx=vbuaa +New fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - sub-option vbuaa=vbuyy +New fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - sub-option vbuaa=vbuyy +New fragment synthesis pbuc1_derefidx_vbuaa=vbuyy +New fragment synthesis pbuc1_derefidx_vbuaa=vbuyy - sub-option pbuc1_derefidx_vbuxx=vbuyy +New fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - sub-option pbuc1_derefidx_vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - sub-option pbuc1_derefidx_vbuyy=vbuaa +New fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - sub-option pbuc1_derefidx_vbuyy=vbuxx +New fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - sub-option vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - sub-option vbuaa=vbuz1 +New fragment synthesis pbuc1_derefidx_vbuyy=vbuaa +New fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - Successfully loaded pbuc1_derefidx_vbuyy=vbuaa.asm +New fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - sub-option pbuc1_derefidx_vbuyy=vbuxx +New fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis pbuc1_derefidx_vbuyy=vbuxx +New fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - sub-option pbuc1_derefidx_vbuyy=vbuaa +New fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - sub-option pbuc1_derefidx_vbuaa=vbuxx +New fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis pbuc1_derefidx_vbuaa=vbuxx +New fragment synthesis pbuc1_derefidx_vbuaa=vbuxx - sub-option pbuc1_derefidx_vbuyy=vbuxx +New fragment synthesis pbuc1_derefidx_vbuz1=vbuaa +New fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - sub-option pbuc1_derefidx_vbuz1=vbuxx +New fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - sub-option pbuc1_derefidx_vbuz1=vbuyy +New fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - sub-option pbuc1_derefidx_vbuyy=vbuaa +New fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - sub-option pbuc1_derefidx_vbuxx=vbuaa +New fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - sub-option vbuaa=vbuaa +New fragment synthesis pbuc1_derefidx_vbuz1=vbuxx +New fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - sub-option pbuc1_derefidx_vbuz1=vbuaa +New fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - sub-option pbuc1_derefidx_vbuaa=vbuxx +New fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - sub-option pbuc1_derefidx_vbuyy=vbuxx +New fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - sub-option vbuaa=vbuxx +New fragment synthesis pbuc1_derefidx_vbuz1=vbuyy +New fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - sub-option pbuc1_derefidx_vbuz1=vbuaa +New fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - sub-option pbuc1_derefidx_vbuaa=vbuyy +New fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - sub-option pbuc1_derefidx_vbuxx=vbuyy +New fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - sub-option vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuaa=vbuxx - No file or synthesis results! +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuyy=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuaa=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuaa=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuaa=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuxx - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuyy=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuxx - Successfully synthesized from vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - New best, scheduling parent pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuyy - No file or synthesis results! +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuxx=vbuaa +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuxx=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuaa=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuaa=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuaa=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuyy - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuxx=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuaa - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuaa - Successfully synthesized from vbuaa=vbuaa +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuaa +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuyy - Successfully synthesized from vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuaa +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - New best, scheduling parent pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuyy +Fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuxx +Fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - New best, scheduling parent pbuc1_derefidx_vbuxx=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - New best, scheduling parent pbuc1_derefidx_vbuyy=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuaa=vbuz1 - New best, scheduling parent pbuc1_derefidx_vbuz1=vbuz2 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuaa +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuxx +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuyy=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuaa +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuyy +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuxx=vbuz1 - Successfully synthesized from vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuaa=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuyy=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuxx=vbuz1 +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuaa +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuyy +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from pbuc1_derefidx_vbuz1=vbuxx +Fragment synthesis pbuc1_derefidx_vbuz1=vbuz2 - Successfully synthesized from vbuaa=vbuz1 +Found best fragment pbuc1_derefidx_vbuz1=vbuz2 < pbuc1_derefidx_vbuz1=vbuaa < pbuc1_derefidx_vbuyy=vbuaa score: 12.5 +New fragment synthesis vbuz1=vbuz1_ror_1 +New fragment synthesis vbuz1=vbuz1_ror_1 - Successfully loaded vbuz1=vbuz1_ror_1.asm +New fragment synthesis vbuz1=vbuz1_ror_1 - sub-option vbuaa=vbuz1_ror_1 +Fragment synthesis vbuz1=vbuz1_ror_1 - Successfully synthesized from vbuaa=vbuz1_ror_1 +Found best fragment vbuz1=vbuz1_ror_1 score: 5.0 +New fragment synthesis vbuz1_neq_0_then_la1 +New fragment synthesis vbuz1_neq_0_then_la1 - Successfully loaded vbuz1_neq_0_then_la1.asm +New fragment synthesis vbuz1_neq_0_then_la1 - sub-option vbuaa_neq_0_then_la1 +New fragment synthesis vbuz1_neq_0_then_la1 - sub-option vbuyy_neq_0_then_la1 +New fragment synthesis vbuz1_neq_0_then_la1 - sub-option vbuxx_neq_0_then_la1 +New fragment synthesis vbuz1_neq_0_then_la1 - sub-option 0_neq_vbuz1_then_la1 +New fragment synthesis vbuz1_neq_0_then_la1 - sub-option 0_neq_vbuz1_then_la1 +New fragment synthesis vbuaa_neq_0_then_la1 +New fragment synthesis vbuaa_neq_0_then_la1 - Successfully loaded vbuaa_neq_0_then_la1.asm +New fragment synthesis vbuaa_neq_0_then_la1 - sub-option vbuxx_neq_0_then_la1 +New fragment synthesis vbuaa_neq_0_then_la1 - sub-option vbuyy_neq_0_then_la1 +New fragment synthesis vbuaa_neq_0_then_la1 - sub-option 0_neq_vbuaa_then_la1 +New fragment synthesis vbuaa_neq_0_then_la1 - sub-option 0_neq_vbuaa_then_la1 +New fragment synthesis vbuxx_neq_0_then_la1 +New fragment synthesis vbuxx_neq_0_then_la1 - Successfully loaded vbuxx_neq_0_then_la1.asm +New fragment synthesis vbuxx_neq_0_then_la1 - sub-option vbuaa_neq_0_then_la1 +New fragment synthesis vbuxx_neq_0_then_la1 - sub-option 0_neq_vbuxx_then_la1 +New fragment synthesis vbuxx_neq_0_then_la1 - sub-option 0_neq_vbuxx_then_la1 +New fragment synthesis 0_neq_vbuxx_then_la1 +New fragment synthesis 0_neq_vbuxx_then_la1 - sub-option 0_neq_vbuaa_then_la1 +New fragment synthesis 0_neq_vbuxx_then_la1 - sub-option vbuxx_neq_0_then_la1 +New fragment synthesis 0_neq_vbuxx_then_la1 - sub-option vbuxx_neq_0_then_la1 +New fragment synthesis 0_neq_vbuaa_then_la1 +New fragment synthesis 0_neq_vbuaa_then_la1 - sub-option 0_neq_vbuxx_then_la1 +New fragment synthesis 0_neq_vbuaa_then_la1 - sub-option 0_neq_vbuyy_then_la1 +New fragment synthesis 0_neq_vbuaa_then_la1 - sub-option vbuaa_neq_0_then_la1 +New fragment synthesis 0_neq_vbuaa_then_la1 - sub-option vbuaa_neq_0_then_la1 +New fragment synthesis 0_neq_vbuyy_then_la1 +New fragment synthesis 0_neq_vbuyy_then_la1 - sub-option 0_neq_vbuaa_then_la1 +New fragment synthesis 0_neq_vbuyy_then_la1 - sub-option vbuyy_neq_0_then_la1 +New fragment synthesis 0_neq_vbuyy_then_la1 - sub-option vbuyy_neq_0_then_la1 +New fragment synthesis vbuyy_neq_0_then_la1 +New fragment synthesis vbuyy_neq_0_then_la1 - Successfully loaded vbuyy_neq_0_then_la1.asm +New fragment synthesis vbuyy_neq_0_then_la1 - sub-option vbuaa_neq_0_then_la1 +New fragment synthesis vbuyy_neq_0_then_la1 - sub-option 0_neq_vbuyy_then_la1 +New fragment synthesis vbuyy_neq_0_then_la1 - sub-option 0_neq_vbuyy_then_la1 +New fragment synthesis 0_neq_vbuz1_then_la1 +New fragment synthesis 0_neq_vbuz1_then_la1 - sub-option 0_neq_vbuaa_then_la1 +New fragment synthesis 0_neq_vbuz1_then_la1 - sub-option 0_neq_vbuyy_then_la1 +New fragment synthesis 0_neq_vbuz1_then_la1 - sub-option 0_neq_vbuxx_then_la1 +New fragment synthesis 0_neq_vbuz1_then_la1 - sub-option vbuz1_neq_0_then_la1 +New fragment synthesis 0_neq_vbuz1_then_la1 - sub-option vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - No file or synthesis results! +Fragment synthesis vbuyy_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - New best, scheduling parent vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - New best, scheduling parent vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - New best, scheduling parent 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - New best, scheduling parent vbuxx_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - New best, scheduling parent vbuyy_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - Successfully synthesized from vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent vbuaa_neq_0_then_la1 +Fragment synthesis 0_neq_vbuaa_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis vbuaa_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuxx_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis 0_neq_vbuyy_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - Successfully synthesized from vbuaa_neq_0_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis vbuyy_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - Successfully synthesized from vbuaa_neq_0_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis vbuxx_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from vbuaa_neq_0_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - New best, scheduling parent 0_neq_vbuz1_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuaa_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuyy_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from 0_neq_vbuxx_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - Successfully synthesized from vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis 0_neq_vbuz1_then_la1 - New best, scheduling parent vbuz1_neq_0_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from vbuaa_neq_0_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from vbuyy_neq_0_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from vbuxx_neq_0_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Fragment synthesis vbuz1_neq_0_then_la1 - Successfully synthesized from 0_neq_vbuz1_then_la1 +Found best fragment vbuz1_neq_0_then_la1 score: 6.0 +New fragment synthesis vbuz1=_lo_pbuz2 +New fragment synthesis vbuz1=_lo_pbuz2 - sub-option vbuaa=_lo_pbuz1 +New fragment synthesis vbuz1=_lo_pbuz2 - sub-option vbuyy=_lo_pbuz1 +New fragment synthesis vbuz1=_lo_pbuz2 - sub-option vbuxx=_lo_pbuz1 +New fragment synthesis vbuz1=_lo_pbuz2 - sub-option vbuaa=_lo_pbuz1 +New fragment synthesis vbuaa=_lo_pbuz1 +New fragment synthesis vbuaa=_lo_pbuz1 - Successfully loaded vbuaa=_lo_pbuz1.asm +New fragment synthesis vbuyy=_lo_pbuz1 +New fragment synthesis vbuyy=_lo_pbuz1 - Successfully loaded vbuyy=_lo_pbuz1.asm +New fragment synthesis vbuyy=_lo_pbuz1 - sub-option vbuaa=_lo_pbuz1 +New fragment synthesis vbuxx=_lo_pbuz1 +New fragment synthesis vbuxx=_lo_pbuz1 - Successfully loaded vbuxx=_lo_pbuz1.asm +New fragment synthesis vbuxx=_lo_pbuz1 - sub-option vbuaa=_lo_pbuz1 +Fragment synthesis vbuxx=_lo_pbuz1 - New best, scheduling parent vbuz1=_lo_pbuz2 +Fragment synthesis vbuyy=_lo_pbuz1 - New best, scheduling parent vbuz1=_lo_pbuz2 +Fragment synthesis vbuaa=_lo_pbuz1 - New best, scheduling parent vbuz1=_lo_pbuz2 +Fragment synthesis vbuaa=_lo_pbuz1 - New best, scheduling parent vbuyy=_lo_pbuz1 +Fragment synthesis vbuaa=_lo_pbuz1 - New best, scheduling parent vbuxx=_lo_pbuz1 +Fragment synthesis vbuaa=_lo_pbuz1 - New best, scheduling parent vbuz1=_lo_pbuz2 +Fragment synthesis vbuxx=_lo_pbuz1 - Successfully synthesized from vbuaa=_lo_pbuz1 +Fragment synthesis vbuyy=_lo_pbuz1 - Successfully synthesized from vbuaa=_lo_pbuz1 +Fragment synthesis vbuz1=_lo_pbuz2 - Successfully synthesized from vbuaa=_lo_pbuz1 +Fragment synthesis vbuz1=_lo_pbuz2 - Successfully synthesized from vbuyy=_lo_pbuz1 +Fragment synthesis vbuz1=_lo_pbuz2 - Successfully synthesized from vbuxx=_lo_pbuz1 +Fragment synthesis vbuz1=_lo_pbuz2 - Successfully synthesized from vbuaa=_lo_pbuz1 +Found best fragment vbuz1=_lo_pbuz2 < vbuaa=_lo_pbuz1 score: 6.5 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuaa=vbuz1_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuyy=vbuz1_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuxx=vbuz1_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuz1=vbuaa_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuz1=vbuyy_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuz1=vbuxx_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuz1=vbuz2_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuz1=vbuz2_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuz1=vbuz2_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuz1=vbuz3_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuz3 - sub-option vbuaa=vbuz1_bor_vbuz2 +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuaa=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuz2_bor_vbuz1 +New fragment synthesis vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully loaded vbuaa=vbuaa_bor_vbuz1.asm +New fragment synthesis vbuaa=vbuaa_bor_vbuz1 - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuaa=vbuaa_bor_vbuz1 - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuaa=vbuaa_bor_vbuyy - Successfully loaded vbuaa=vbuaa_bor_vbuyy.asm +New fragment synthesis vbuaa=vbuaa_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuz1_bor_vbuaa - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuz1_bor_vbuaa - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuz1_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuaa=vbuyy_bor_vbuz1 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuaa=vbuyy_bor_vbuz1 - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuz1 - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuz1 - sub-option vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuaa=vbuyy_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuaa=vbuyy_bor_vbuxx - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuaa=vbuyy_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuaa=vbuxx_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuaa=vbuxx_bor_vbuyy - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuaa=vbuz1_bor_vbuyy - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuz1_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuaa=vbuz1_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuaa=vbuz1_bor_vbuyy - sub-option vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuaa=vbuz1_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuaa=vbuxx_bor_vbuz1 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuaa=vbuxx_bor_vbuz1 - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuz1 - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuz1 - sub-option vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuaa=vbuxx_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuaa=vbuz1_bor_vbuxx - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuz1_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuaa=vbuz1_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuaa=vbuz1_bor_vbuxx - sub-option vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuaa=vbuz1_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuaa=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuz1_bor_vbuz2 +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuaa_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuyy_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuyy_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuxx_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuz1_bor_vbuaa +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuz1_bor_vbuyy +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuz1_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuyy=vbuz2_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuz1_bor_vbuz2 +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 - sub-option vbuyy=vbuxx_bor_vbuz1 +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 - sub-option vbuyy=vbuyy_bor_vbuz1 +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 - sub-option vbuyy=vbuaa_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuaa +New fragment synthesis vbuyy=vbuaa_bor_vbuz1 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuyy=vbuxx_bor_vbuz1 +New fragment synthesis vbuyy=vbuxx_bor_vbuz1 - sub-option vbuyy=vbuaa_bor_vbuz1 +New fragment synthesis vbuyy=vbuxx_bor_vbuz1 - sub-option vbuyy=vbuxx_bor_vbuaa +New fragment synthesis vbuyy=vbuxx_bor_vbuz1 - sub-option vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuxx_bor_vbuz1 - sub-option vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuxx_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuxx +New fragment synthesis vbuyy=vbuxx_bor_vbuz1 - sub-option vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuyy=vbuxx_bor_vbuaa +New fragment synthesis vbuyy=vbuxx_bor_vbuaa - sub-option vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuxx_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuxx +New fragment synthesis vbuyy=vbuxx_bor_vbuaa - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuxx_bor_vbuyy - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuxx_bor_vbuyy - sub-option vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuxx_bor_vbuyy - sub-option vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuyy - sub-option vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuyy - sub-option vbuyy=vbuyy_bor_vbuaa +New fragment synthesis vbuyy=vbuaa_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuyy_bor_vbuaa +New fragment synthesis vbuyy=vbuyy_bor_vbuaa - sub-option vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuyy_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuyy_bor_vbuaa - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuyy_bor_vbuxx - sub-option vbuyy=vbuyy_bor_vbuaa +New fragment synthesis vbuyy=vbuyy_bor_vbuxx - sub-option vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuyy_bor_vbuxx - sub-option vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuxx - sub-option vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuxx - sub-option vbuyy=vbuxx_bor_vbuaa +New fragment synthesis vbuyy=vbuaa_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuxx - sub-option vbuyy=vbuz1_bor_vbuaa +New fragment synthesis vbuyy=vbuz1_bor_vbuxx - sub-option vbuyy=vbuaa_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuxx - sub-option vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuxx - sub-option vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuxx - sub-option vbuyy=vbuxx_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuxx - sub-option vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuaa +New fragment synthesis vbuyy=vbuz1_bor_vbuaa - sub-option vbuyy=vbuz1_bor_vbuxx +New fragment synthesis vbuyy=vbuz1_bor_vbuaa - sub-option vbuyy=vbuz1_bor_vbuyy +New fragment synthesis vbuyy=vbuz1_bor_vbuaa - sub-option vbuyy=vbuyy_bor_vbuaa +New fragment synthesis vbuyy=vbuz1_bor_vbuaa - sub-option vbuyy=vbuyy_bor_vbuaa +New fragment synthesis vbuyy=vbuz1_bor_vbuaa - sub-option vbuyy=vbuxx_bor_vbuaa +New fragment synthesis vbuyy=vbuz1_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuaa - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuyy=vbuz1_bor_vbuyy +New fragment synthesis vbuyy=vbuz1_bor_vbuyy - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuz1_bor_vbuyy - sub-option vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuyy=vbuz1_bor_vbuyy - sub-option vbuyy=vbuyy_bor_vbuz1 +New fragment synthesis vbuyy=vbuz1_bor_vbuyy - sub-option vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuyy=vbuyy_bor_vbuz1 +New fragment synthesis vbuyy=vbuyy_bor_vbuz1 - sub-option vbuyy=vbuyy_bor_vbuaa +New fragment synthesis vbuyy=vbuyy_bor_vbuz1 - sub-option vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuyy=vbuyy_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuyy +New fragment synthesis vbuyy=vbuyy_bor_vbuz1 - sub-option vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuaa +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuyy +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuyy +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuxx +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuaa_bor_vbuz1 +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuyy_bor_vbuz1 +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuxx_bor_vbuz1 +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuyy=vbuz1_bor_vbuz2 +New fragment synthesis vbuyy=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuz2_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuaa_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuyy_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuxx_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuxx_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuz1_bor_vbuaa +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuz1_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuz1_bor_vbuxx +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuxx=vbuz2_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuz2 - sub-option vbuaa=vbuz1_bor_vbuz2 +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 - sub-option vbuxx=vbuxx_bor_vbuz1 +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 - sub-option vbuxx=vbuyy_bor_vbuz1 +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 - sub-option vbuxx=vbuaa_bor_vbuyy +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuaa +New fragment synthesis vbuxx=vbuaa_bor_vbuz1 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuxx=vbuxx_bor_vbuz1 +New fragment synthesis vbuxx=vbuxx_bor_vbuz1 - sub-option vbuxx=vbuxx_bor_vbuaa +New fragment synthesis vbuxx=vbuxx_bor_vbuz1 - sub-option vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuxx_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuxx +New fragment synthesis vbuxx=vbuxx_bor_vbuz1 - sub-option vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuxx=vbuxx_bor_vbuaa +New fragment synthesis vbuxx=vbuxx_bor_vbuaa - sub-option vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuxx_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuxx_bor_vbuaa - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuxx_bor_vbuyy - sub-option vbuxx=vbuxx_bor_vbuaa +New fragment synthesis vbuxx=vbuxx_bor_vbuyy - sub-option vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuxx_bor_vbuyy - sub-option vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuyy_bor_vbuxx - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuyy_bor_vbuxx - sub-option vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuyy_bor_vbuxx - sub-option vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuxx - sub-option vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuxx - sub-option vbuxx=vbuxx_bor_vbuaa +New fragment synthesis vbuxx=vbuaa_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuz1_bor_vbuxx +New fragment synthesis vbuxx=vbuz1_bor_vbuxx - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuz1_bor_vbuxx - sub-option vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuz1_bor_vbuxx - sub-option vbuxx=vbuxx_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuxx - sub-option vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuxx=vbuyy_bor_vbuz1 +New fragment synthesis vbuxx=vbuyy_bor_vbuz1 - sub-option vbuxx=vbuaa_bor_vbuz1 +New fragment synthesis vbuxx=vbuyy_bor_vbuz1 - sub-option vbuxx=vbuyy_bor_vbuaa +New fragment synthesis vbuxx=vbuyy_bor_vbuz1 - sub-option vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuyy_bor_vbuz1 - sub-option vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuyy_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuyy +New fragment synthesis vbuxx=vbuyy_bor_vbuz1 - sub-option vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuxx=vbuyy_bor_vbuaa +New fragment synthesis vbuxx=vbuyy_bor_vbuaa - sub-option vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuxx=vbuyy_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuyy +New fragment synthesis vbuxx=vbuyy_bor_vbuaa - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuxx=vbuaa_bor_vbuyy +New fragment synthesis vbuxx=vbuaa_bor_vbuyy - sub-option vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuaa_bor_vbuyy - sub-option vbuxx=vbuyy_bor_vbuaa +New fragment synthesis vbuxx=vbuaa_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuyy - sub-option vbuxx=vbuz1_bor_vbuaa +New fragment synthesis vbuxx=vbuz1_bor_vbuyy - sub-option vbuxx=vbuaa_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuyy - sub-option vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuyy - sub-option vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuyy - sub-option vbuxx=vbuyy_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuyy - sub-option vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuaa +New fragment synthesis vbuxx=vbuz1_bor_vbuaa - sub-option vbuxx=vbuz1_bor_vbuxx +New fragment synthesis vbuxx=vbuz1_bor_vbuaa - sub-option vbuxx=vbuz1_bor_vbuyy +New fragment synthesis vbuxx=vbuz1_bor_vbuaa - sub-option vbuxx=vbuyy_bor_vbuaa +New fragment synthesis vbuxx=vbuz1_bor_vbuaa - sub-option vbuxx=vbuxx_bor_vbuaa +New fragment synthesis vbuxx=vbuz1_bor_vbuaa - sub-option vbuxx=vbuxx_bor_vbuaa +New fragment synthesis vbuxx=vbuz1_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuz1 +New fragment synthesis vbuxx=vbuz1_bor_vbuaa - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuaa +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuyy +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuxx +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuxx +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuaa_bor_vbuz1 +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuyy_bor_vbuz1 +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuxx_bor_vbuz1 +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuxx=vbuz1_bor_vbuz2 +New fragment synthesis vbuxx=vbuz2_bor_vbuz1 - sub-option vbuaa=vbuz2_bor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuz1=vbuxx_bor_vbuz2 +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuz1=vbuyy_bor_vbuz2 +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuyy=vbuaa_bor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuxx=vbuaa_bor_vbuz1 +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuz1=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuz1=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuz1=vbuz2_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuz2 - sub-option vbuaa=vbuaa_bor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuz1=vbuaa_bor_vbuz2 +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuyy=vbuxx_bor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuxx=vbuxx_bor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuz1=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuz1=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuz1=vbuz2_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuz2 - sub-option vbuaa=vbuxx_bor_vbuz1 +New fragment synthesis vbuz1=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuaa - sub-option vbuz1=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuxx_bor_vbuaa - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuaa - sub-option vbuyy=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuaa - sub-option vbuxx=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuaa - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuxx_bor_vbuyy - sub-option vbuz1=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuxx_bor_vbuyy - sub-option vbuz1=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuyy - sub-option vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuxx_bor_vbuyy - sub-option vbuyy=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuxx_bor_vbuyy - sub-option vbuxx=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuxx_bor_vbuyy - sub-option vbuz1=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuyy - sub-option vbuaa=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuyy - sub-option vbuz1=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuyy - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuyy - sub-option vbuxx=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuyy - sub-option vbuz1=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuaa - sub-option vbuz1=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuyy_bor_vbuaa - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuaa - sub-option vbuyy=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuaa - sub-option vbuxx=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuaa - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuyy_bor_vbuxx - sub-option vbuz1=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuxx - sub-option vbuz1=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuyy_bor_vbuxx - sub-option vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuyy_bor_vbuxx - sub-option vbuyy=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuyy_bor_vbuxx - sub-option vbuxx=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuyy_bor_vbuxx - sub-option vbuz1=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuxx - sub-option vbuaa=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuxx - sub-option vbuz1=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuxx - sub-option vbuyy=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuxx - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuxx - sub-option vbuz1=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuz1=vbuz2_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuyy=vbuz1_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuxx=vbuz1_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuz1=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuz1=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuz1=vbuxx_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuxx - sub-option vbuaa=vbuz1_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuz1=vbuz2_bor_vbuxx +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuz1=vbuz2_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuyy=vbuz1_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuxx=vbuz1_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuz1=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuz1=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuaa - sub-option vbuaa=vbuz1_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuz1=vbuz2_bor_vbuaa +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuyy=vbuz1_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuxx=vbuz1_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuz1=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuz1=vbuxx_bor_vbuyy +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuz1=vbuyy_bor_vbuz2 +New fragment synthesis vbuz1=vbuz2_bor_vbuyy - sub-option vbuaa=vbuz1_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuz1=vbuaa_bor_vbuz2 +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuyy=vbuyy_bor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuxx=vbuyy_bor_vbuz1 +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuz1=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuz1=vbuyy_bor_vbuxx +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuz1=vbuz2_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuz2 - sub-option vbuaa=vbuyy_bor_vbuz1 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuaa=vbuz2_bor_vbuz1 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuyy=vbuz2_bor_vbuz1 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuxx=vbuz2_bor_vbuz1 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuz1=vbuz2_bor_vbuaa +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuz1=vbuz2_bor_vbuyy +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuz1=vbuz2_bor_vbuxx +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuz1=vbuaa_bor_vbuz2 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuz1=vbuyy_bor_vbuz2 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuz1=vbuxx_bor_vbuz2 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuz1=vbuz2_bor_vbuz3 +New fragment synthesis vbuz1=vbuz3_bor_vbuz2 - sub-option vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - No file or synthesis results! +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - No file or synthesis results! +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - New best, scheduling parent vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - New best, scheduling parent vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - New best, scheduling parent vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - New best, scheduling parent vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - New best, scheduling parent vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - No file or synthesis results! +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - No file or synthesis results! +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - New best, scheduling parent vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - No file or synthesis results! +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - No file or synthesis results! +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - No file or synthesis results! +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - New best, scheduling parent vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - New best, scheduling parent vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - New best, scheduling parent vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - New best, scheduling parent vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - New best, scheduling parent vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuxx +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - New best, scheduling parent vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuxx +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuxx +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - New best, scheduling parent vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuxx_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuxx_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuxx_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuyy_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuaa - New best, scheduling parent vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuaa - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuxx=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuyy_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuxx_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - New best, scheduling parent vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - New best, scheduling parent vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - New best, scheduling parent vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz1_bor_vbuz2 - New best, scheduling parent vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuaa_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuyy_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuxx_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuaa +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuyy +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz1_bor_vbuxx +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuxx=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuaa_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuyy_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuxx_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuaa +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuyy +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz1_bor_vbuxx +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuyy=vbuz1_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuaa +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuyy +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuxx +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuaa_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuyy_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuxx_bor_vbuz1 +Fragment synthesis vbuaa=vbuz2_bor_vbuz1 - Successfully synthesized from vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuyy=vbuz1_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuxx=vbuz1_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - Successfully synthesized from vbuaa=vbuz1_bor_vbuz2 +Fragment synthesis vbuz1=vbuz2_bor_vbuz3 - New best, scheduling parent vbuz1=vbuz3_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuyy=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuxx=vbuz2_bor_vbuz1 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuaa +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuyy +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuxx +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuaa_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuyy_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuxx_bor_vbuz2 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuz1=vbuz2_bor_vbuz3 +Fragment synthesis vbuz1=vbuz3_bor_vbuz2 - Successfully synthesized from vbuaa=vbuz2_bor_vbuz1 +Found best fragment vbuz1=vbuz2_bor_vbuz3 < vbuaa=vbuz1_bor_vbuz2 < vbuaa=vbuaa_bor_vbuz1 score: 9.5 +New fragment synthesis vbuz1=_hi_pbuz2 +New fragment synthesis vbuz1=_hi_pbuz2 - sub-option vbuaa=_hi_pbuz1 +New fragment synthesis vbuz1=_hi_pbuz2 - sub-option vbuyy=_hi_pbuz1 +New fragment synthesis vbuz1=_hi_pbuz2 - sub-option vbuxx=_hi_pbuz1 +New fragment synthesis vbuz1=_hi_pbuz2 - sub-option vbuaa=_hi_pbuz1 +New fragment synthesis vbuaa=_hi_pbuz1 +New fragment synthesis vbuaa=_hi_pbuz1 - Successfully loaded vbuaa=_hi_pbuz1.asm +New fragment synthesis vbuyy=_hi_pbuz1 +New fragment synthesis vbuyy=_hi_pbuz1 - Successfully loaded vbuyy=_hi_pbuz1.asm +New fragment synthesis vbuyy=_hi_pbuz1 - sub-option vbuaa=_hi_pbuz1 +New fragment synthesis vbuxx=_hi_pbuz1 +New fragment synthesis vbuxx=_hi_pbuz1 - Successfully loaded vbuxx=_hi_pbuz1.asm +New fragment synthesis vbuxx=_hi_pbuz1 - sub-option vbuaa=_hi_pbuz1 +Fragment synthesis vbuxx=_hi_pbuz1 - New best, scheduling parent vbuz1=_hi_pbuz2 +Fragment synthesis vbuyy=_hi_pbuz1 - New best, scheduling parent vbuz1=_hi_pbuz2 +Fragment synthesis vbuaa=_hi_pbuz1 - New best, scheduling parent vbuz1=_hi_pbuz2 +Fragment synthesis vbuaa=_hi_pbuz1 - New best, scheduling parent vbuyy=_hi_pbuz1 +Fragment synthesis vbuaa=_hi_pbuz1 - New best, scheduling parent vbuxx=_hi_pbuz1 +Fragment synthesis vbuaa=_hi_pbuz1 - New best, scheduling parent vbuz1=_hi_pbuz2 +Fragment synthesis vbuxx=_hi_pbuz1 - Successfully synthesized from vbuaa=_hi_pbuz1 +Fragment synthesis vbuyy=_hi_pbuz1 - Successfully synthesized from vbuaa=_hi_pbuz1 +Fragment synthesis vbuz1=_hi_pbuz2 - Successfully synthesized from vbuaa=_hi_pbuz1 +Fragment synthesis vbuz1=_hi_pbuz2 - Successfully synthesized from vbuyy=_hi_pbuz1 +Fragment synthesis vbuz1=_hi_pbuz2 - Successfully synthesized from vbuxx=_hi_pbuz1 +Fragment synthesis vbuz1=_hi_pbuz2 - Successfully synthesized from vbuaa=_hi_pbuz1 +Found best fragment vbuz1=_hi_pbuz2 < vbuaa=_hi_pbuz1 score: 6.5 +New fragment synthesis pbuz1=pbuz1_plus_vwuc1 +New fragment synthesis pbuz1=pbuz1_plus_vwuc1 - sub-option pbuz1=vwuc1_plus_pbuz1 +New fragment synthesis pbuz1=pbuz1_plus_vwuc1 - sub-option pbuz1=vwuz1_plus_vwuc1 +New fragment synthesis pbuz1=pbuz1_plus_vwuc1 - sub-option vwuz1=pbuz1_plus_vwuc1 +New fragment synthesis pbuz1=pbuz1_plus_vwuc1 - sub-option pbuz1=vwuz1_plus_vwuc1 +New fragment synthesis pbuz1=vwuc1_plus_pbuz1 +New fragment synthesis pbuz1=vwuc1_plus_pbuz1 - sub-option pbuz1=pbuz1_plus_vwuc1 +New fragment synthesis pbuz1=vwuc1_plus_pbuz1 - sub-option pbuz1=vwuc1_plus_vwuz1 +New fragment synthesis pbuz1=vwuc1_plus_pbuz1 - sub-option vwuz1=vwuc1_plus_pbuz1 +New fragment synthesis pbuz1=vwuc1_plus_vwuz1 +New fragment synthesis pbuz1=vwuc1_plus_vwuz1 - sub-option pbuz1=vwuz1_plus_vwuc1 +New fragment synthesis pbuz1=vwuc1_plus_vwuz1 - sub-option vwuz1=vwuc1_plus_vwuz1 +New fragment synthesis pbuz1=vwuz1_plus_vwuc1 +New fragment synthesis pbuz1=vwuz1_plus_vwuc1 - sub-option pbuz1=vwuc1_plus_vwuz1 +New fragment synthesis pbuz1=vwuz1_plus_vwuc1 - sub-option vwuz1=vwuz1_plus_vwuc1 +New fragment synthesis vwuz1=vwuz1_plus_vwuc1 +New fragment synthesis vwuz1=vwuz1_plus_vwuc1 - Successfully loaded vwuz1=vwuz1_plus_vwuc1.asm +New fragment synthesis vwuz1=vwuz1_plus_vwuc1 - sub-option vwuz1=vwuc1_plus_vwuz1 +New fragment synthesis vwuz1=vwuz1_plus_vwuc1 - sub-option vwuz1=vwuz2_plus_vwuc1 +New fragment synthesis vwuz1=vwuc1_plus_vwuz1 +New fragment synthesis vwuz1=vwuc1_plus_vwuz1 - sub-option vwuz1=vwuz1_plus_vwuc1 +New fragment synthesis vwuz1=vwuc1_plus_vwuz1 - sub-option vwuz1=vwuc1_plus_vwuz2 +New fragment synthesis vwuz1=vwuc1_plus_vwuz2 +New fragment synthesis vwuz1=vwuc1_plus_vwuz2 - sub-option vwuz1=vwuz2_plus_vwuc1 +New fragment synthesis vwuz1=vwuz2_plus_vwuc1 +New fragment synthesis vwuz1=vwuz2_plus_vwuc1 - Successfully loaded vwuz1=vwuz2_plus_vwuc1.asm +New fragment synthesis vwuz1=vwuz2_plus_vwuc1 - sub-option vwuz1=vwuc1_plus_vwuz2 +New fragment synthesis vwuz1=vwuc1_plus_pbuz1 +New fragment synthesis vwuz1=vwuc1_plus_pbuz1 - sub-option vwuz1=pbuz1_plus_vwuc1 +New fragment synthesis vwuz1=vwuc1_plus_pbuz1 - sub-option vwuz1=vwuc1_plus_vwuz1 +New fragment synthesis vwuz1=pbuz1_plus_vwuc1 +New fragment synthesis vwuz1=pbuz1_plus_vwuc1 - sub-option vwuz1=vwuc1_plus_pbuz1 +New fragment synthesis vwuz1=pbuz1_plus_vwuc1 - sub-option vwuz1=vwuz1_plus_vwuc1 +New fragment synthesis vwuz1=pbuz1_plus_vwuc1 - sub-option vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_plus_vwuc1 - New best, scheduling parent vwuz1=vwuc1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuc1 - New best, scheduling parent vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz2_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz2 - New best, scheduling parent vwuz1=vwuz2_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz2 - New best, scheduling parent vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz2_plus_vwuc1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz2 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz2 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - New best, scheduling parent vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - New best, scheduling parent pbuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - New best, scheduling parent vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - New best, scheduling parent vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - New best, scheduling parent pbuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - New best, scheduling parent vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - New best, scheduling parent pbuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz2_plus_vwuc1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - New best, scheduling parent vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - New best, scheduling parent pbuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - New best, scheduling parent vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - New best, scheduling parent vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - New best, scheduling parent vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - New best, scheduling parent pbuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - New best, scheduling parent vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - New best, scheduling parent pbuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz2 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - New best, scheduling parent vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - New best, scheduling parent pbuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuc1_plus_vwuz1 - New best, scheduling parent vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis vwuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz2_plus_vwuc1 +Fragment synthesis pbuz1=vwuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis pbuz1=vwuz1_plus_vwuc1 - New best, scheduling parent pbuz1=vwuc1_plus_vwuz1 +Fragment synthesis pbuz1=vwuz1_plus_vwuc1 - New best, scheduling parent pbuz1=pbuz1_plus_vwuc1 +Fragment synthesis pbuz1=vwuz1_plus_vwuc1 - New best, scheduling parent pbuz1=pbuz1_plus_vwuc1 +Fragment synthesis pbuz1=vwuc1_plus_vwuz1 - Successfully synthesized from pbuz1=vwuz1_plus_vwuc1 +Fragment synthesis pbuz1=vwuc1_plus_vwuz1 - Successfully synthesized from vwuz1=vwuc1_plus_vwuz1 +Fragment synthesis pbuz1=vwuc1_plus_vwuz1 - New best, scheduling parent pbuz1=vwuz1_plus_vwuc1 +Fragment synthesis pbuz1=vwuc1_plus_vwuz1 - New best, scheduling parent pbuz1=vwuc1_plus_pbuz1 +Fragment synthesis pbuz1=vwuz1_plus_vwuc1 - Successfully synthesized from pbuz1=vwuc1_plus_vwuz1 +Fragment synthesis pbuz1=vwuz1_plus_vwuc1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuc1 +Fragment synthesis pbuz1=vwuc1_plus_pbuz1 - Successfully synthesized from pbuz1=vwuc1_plus_vwuz1 +Fragment synthesis pbuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=vwuc1_plus_pbuz1 +Fragment synthesis pbuz1=vwuc1_plus_pbuz1 - New best, scheduling parent pbuz1=pbuz1_plus_vwuc1 +Fragment synthesis pbuz1=pbuz1_plus_vwuc1 - Successfully synthesized from pbuz1=vwuc1_plus_pbuz1 +Fragment synthesis pbuz1=pbuz1_plus_vwuc1 - Successfully synthesized from pbuz1=vwuz1_plus_vwuc1 +Fragment synthesis pbuz1=pbuz1_plus_vwuc1 - Successfully synthesized from vwuz1=pbuz1_plus_vwuc1 +Fragment synthesis pbuz1=pbuz1_plus_vwuc1 - Successfully synthesized from pbuz1=vwuz1_plus_vwuc1 +Fragment synthesis pbuz1=pbuz1_plus_vwuc1 - New best, scheduling parent pbuz1=vwuc1_plus_pbuz1 +Fragment synthesis pbuz1=vwuc1_plus_pbuz1 - Successfully synthesized from pbuz1=pbuz1_plus_vwuc1 +Fragment synthesis pbuz1=vwuc1_plus_pbuz1 - Successfully synthesized from pbuz1=vwuc1_plus_vwuz1 +Fragment synthesis pbuz1=vwuc1_plus_pbuz1 - Successfully synthesized from vwuz1=vwuc1_plus_pbuz1 +Found best fragment pbuz1=pbuz1_plus_vwuc1 < pbuz1=vwuc1_plus_pbuz1 < pbuz1=vwuc1_plus_vwuz1 < pbuz1=vwuz1_plus_vwuc1 < vwuz1=vwuz1_plus_vwuc1 score: 18.5 INITIAL ASM //SEG0 Basic Upstart @@ -2298,6 +19630,7 @@ INITIAL ASM .const PROCPORT_DDR_MEMORY_MASK = 7 .label PROCPORT = 1 .const PROCPORT_RAM_IO = $35 + .label RASTER = $d012 .label BORDERCOL = $d020 .label D011 = $d011 .const VIC_BMM = $20 @@ -2308,18 +19641,19 @@ INITIAL ASM .label CIA2_PORT_A_DDR = $dd02 .label BITMAP = $a000 .label SCREEN = $8800 - .const DELAY = 8 + .label rem16s = 3 + .label rem16u = $10 //SEG2 @begin bbegin: -//SEG3 [1] phi from @begin to @9 [phi:@begin->@9] -b9_from_bbegin: - jmp b9 -//SEG4 @9 -b9: +//SEG3 [1] phi from @begin to @18 [phi:@begin->@18] +b18_from_bbegin: + jmp b18 +//SEG4 @18 +b18: //SEG5 [2] call main [ ] ( ) jsr main -//SEG6 [3] phi from @9 to @end [phi:@9->@end] -bend_from_b9: +//SEG6 [3] phi from @18 to @end [phi:@18->@end] +bend_from_b18: jmp bend //SEG7 @end bend: @@ -2327,7 +19661,7 @@ bend: main: { .const vicSelectGfxBank1_toDd001_return = 3^(>SCREEN)>>6 .const toD0181_return = (>(SCREEN&$3fff)<<2)|(>BITMAP)>>2&$f - .label _9 = $11 + .label _9 = $25 .label i = 2 //SEG9 asm { sei } sei @@ -2362,109 +19696,128 @@ main: { jmp toD0181 //SEG20 main::toD0181 toD0181: - jmp b10 - //SEG21 main::@10 - b10: + jmp b16 + //SEG21 main::@16 + b16: //SEG22 [12] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) -- _deref_pbuc1=vbuc2 lda #toD0181_return sta D018 //SEG23 [13] call bitmap_init [ ] ( main:2 [ ] ) - //SEG24 [64] phi from main::@10 to bitmap_init [phi:main::@10->bitmap_init] - bitmap_init_from_b10: + //SEG24 [118] phi from main::@16 to bitmap_init [phi:main::@16->bitmap_init] + bitmap_init_from_b16: jsr bitmap_init - //SEG25 [14] phi from main::@10 to main::@11 [phi:main::@10->main::@11] - b11_from_b10: - jmp b11 - //SEG26 main::@11 - b11: + //SEG25 [14] phi from main::@16 to main::@17 [phi:main::@16->main::@17] + b17_from_b16: + jmp b17 + //SEG26 main::@17 + b17: //SEG27 [15] call bitmap_clear [ ] ( main:2 [ ] ) jsr bitmap_clear - //SEG28 [16] phi from main::@11 to main::@12 [phi:main::@11->main::@12] - b12_from_b11: - jmp b12 - //SEG29 main::@12 - b12: + //SEG28 [16] phi from main::@17 to main::@18 [phi:main::@17->main::@18] + b18_from_b17: + jmp b18 + //SEG29 main::@18 + b18: //SEG30 [17] call screen_fill [ ] ( main:2 [ ] ) - //SEG31 [43] phi from main::@12 to screen_fill [phi:main::@12->screen_fill] - screen_fill_from_b12: + //SEG31 [97] phi from main::@18 to screen_fill [phi:main::@18->screen_fill] + screen_fill_from_b18: jsr screen_fill - //SEG32 [18] phi from main::@12 to main::@1 [phi:main::@12->main::@1] - b1_from_b12: - //SEG33 [18] phi (byte) main::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@12->main::@1#0] -- vbuz1=vbuc1 + //SEG32 [18] phi from main::@18 to main::@1 [phi:main::@18->main::@1] + b1_from_b18: + //SEG33 [18] phi (signed word) rem16s#15 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#0] -- vwsz1=vbuc1 + lda #<0 + sta rem16s + lda #>0 + sta rem16s+1 + //SEG34 [18] phi (word) rem16u#21 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#1] -- vwuz1=vbuc1 + lda #<0 + sta rem16u + lda #>0 + sta rem16u+1 + //SEG35 [18] phi (byte) main::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#2] -- vbuz1=vbuc1 lda #0 sta i jmp b1 - //SEG34 [18] phi from main::@15 to main::@1 [phi:main::@15->main::@1] - b1_from_b15: - //SEG35 [18] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@15->main::@1#0] -- register_copy + //SEG36 [18] phi from main::@21 to main::@1 [phi:main::@21->main::@1] + b1_from_b21: + //SEG37 [18] phi (signed word) rem16s#15 = (signed word) rem16s#13 [phi:main::@21->main::@1#0] -- register_copy + //SEG38 [18] phi (word) rem16u#21 = (word) rem16u#18 [phi:main::@21->main::@1#1] -- register_copy + //SEG39 [18] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@21->main::@1#2] -- register_copy jmp b1 - //SEG36 main::@1 + //SEG40 main::@1 b1: - //SEG37 [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 point_init::point_idx#0 ] ( main:2 [ main::i#2 point_init::point_idx#0 ] ) -- vbuz1=vbuz2 + //SEG41 [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ) -- vbuz1=vbuz2 lda i sta point_init.point_idx - //SEG38 [20] call point_init [ main::i#2 ] ( main:2 [ main::i#2 ] ) + //SEG42 [20] call point_init [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) jsr point_init - jmp b14 - //SEG39 main::@14 - b14: - //SEG40 [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 main::$9 ] ( main:2 [ main::i#2 main::$9 ] ) -- vbuz1=vbuz2_ror_1 + jmp b20 + //SEG43 main::@20 + b20: + //SEG44 [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ) -- vbuz1=vbuz2_ror_1 lda i lsr sta _9 - //SEG41 [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 main::$9 bitmap_plot::x#0 ] ) -- vwuz1=pwuc1_derefidx_vbuz2 + //SEG45 [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ) -- vwuz1=pwuc1_derefidx_vbuz2 ldy i lda x_start,y sta bitmap_plot.x lda x_start+1,y sta bitmap_plot.x+1 - //SEG42 [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ) -- vbuz1=pbuc1_derefidx_vbuz2 + //SEG46 [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ) -- vbuz1=pbuc1_derefidx_vbuz2 ldy _9 lda y_start,y sta bitmap_plot.y - //SEG43 [24] call bitmap_plot [ main::i#2 ] ( main:2 [ main::i#2 ] ) + //SEG47 [24] call bitmap_plot [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) jsr bitmap_plot - jmp b15 - //SEG44 main::@15 - b15: - //SEG45 [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 ] ( main:2 [ main::i#1 ] ) -- vbuz1=vbuz1_plus_2 + jmp b21 + //SEG48 main::@21 + b21: + //SEG49 [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) -- vbuz1=vbuz1_plus_2 lda i clc adc #2 sta i - //SEG46 [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 ] ( main:2 [ main::i#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG50 [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) -- vbuz1_neq_vbuc1_then_la1 lda i cmp #8 - bne b1_from_b15 - jmp b3 - //SEG47 main::@3 - b3: - //SEG48 [27] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) -- _deref_pbuc1=_inc__deref_pbuc1 + bne b1_from_b21 + jmp b5 + //SEG51 main::@5 + b5: + //SEG52 [27] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@5 [ ] ( main:2 [ ] ) -- _deref_pbuc1_neq_vbuc2_then_la1 + lda RASTER + cmp #$ff + bne b5 + jmp b7 + //SEG53 main::@7 + b7: + //SEG54 [28] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) -- _deref_pbuc1=_inc__deref_pbuc1 inc BORDERCOL - jmp b3 + jmp b5 } -//SEG49 bitmap_plot +//SEG55 bitmap_plot bitmap_plot: { - .label _1 = $17 - .label _2 = $1b - .label x = $12 - .label y = $14 - .label plotter = $19 - .label _3 = $15 - //SEG50 [28] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 ] ) -- vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 + .label _1 = $2b + .label _2 = $2f + .label x = $26 + .label y = $28 + .label plotter = $2d + .label _3 = $29 + //SEG56 [29] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 ] ) -- vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 ldy y lda bitmap_plot_yhi,y sta _3+1 lda bitmap_plot_ylo,y sta _3 - //SEG51 [29] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) -- vwuz1=vwuz2_band_vwuc1 + //SEG57 [30] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) -- vwuz1=vwuz2_band_vwuc1 lda x and #<$fff8 sta _1 lda x+1 and #>$fff8 sta _1+1 - //SEG52 [30] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) -- pbuz1=pbuz2_plus_vwuz3 + //SEG58 [31] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) -- pbuz1=pbuz2_plus_vwuz3 lda plotter clc adc _3 @@ -2472,10 +19825,10 @@ bitmap_plot: { lda plotter+1 adc _3+1 sta _1+1 - //SEG53 [31] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) -- vbuz1=_lo_vwuz2 + //SEG59 [32] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) -- vbuz1=_lo_vwuz2 lda x sta _2 - //SEG54 [32] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 + //SEG60 [33] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 ldy #0 lda (plotter),y ldy _2 @@ -2483,325 +19836,712 @@ bitmap_plot: { ldy #0 sta (plotter),y jmp breturn - //SEG55 bitmap_plot::@return + //SEG61 bitmap_plot::@return breturn: - //SEG56 [33] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) + //SEG62 [34] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) rts } -//SEG57 point_init +//SEG63 point_init point_init: { - .label _0 = $1c - .label _1 = $1e - .label _2 = $1f - .label _3 = $21 - .label _4 = $23 - .label point_idx = $10 - //SEG58 [34] (word~) point_init::$0 ← *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$0 ] ) -- vwuz1=pwuc1_derefidx_vbuz2_rol_4 - ldy point_idx - lda x_start,y - sta _0 - lda x_start+1,y - sta _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - //SEG59 [35] *((const word[4]) x_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$0 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) -- pwuc1_derefidx_vbuz1=vwuz2 - ldy point_idx - lda _0 - sta x_cur,y - lda _0+1 - sta x_cur+1,y - //SEG60 [36] (byte~) point_init::$1 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::point_idx#0 point_init::$1 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$1 ] ) -- vbuz1=vbuz2_ror_1 + .label _4 = $33 + .label _5 = $35 + .label point_idx = $24 + .label point_idx1 = $30 + .label y_diff = $37 + .label abs16s1__2 = $3f + .label abs16s1_return = 5 + .label abs16s2__2 = $3d + .label abs16s2_return = 7 + .label x_diff = $31 + //SEG64 [35] (byte) point_init::point_idx1#0 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ) -- vbuz1=vbuz2_ror_1 lda point_idx lsr - sta _1 - //SEG61 [37] (word~) point_init::$2 ← ((word)) *((const byte[4]) y_start#0 + (byte~) point_init::$1) [ point_init::point_idx#0 point_init::$2 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$2 ] ) -- vwuz1=_word_pbuc1_derefidx_vbuz2 - ldy _1 - lda y_start,y - sta _2 - lda #0 - sta _2+1 - //SEG62 [38] (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$3 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$3 ] ) -- vwuz1=vwuz2_rol_4 - lda _2 - asl - sta _3 - lda _2+1 - rol - sta _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - //SEG63 [39] *((const word[4]) y_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$3 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) -- pwuc1_derefidx_vbuz1=vwuz2 + sta point_idx1 + //SEG65 [36] (signed word) point_init::x_diff#1 ← (signed word)*((const word[4]) x_end#0 + (byte) point_init::point_idx#0) - (signed word)*((const word[4]) x_start#0 + (byte) point_init::point_idx#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ) -- vwsz1=pwsc1_derefidx_vbuz2_minus_pwsc2_derefidx_vbuz2 ldy point_idx - lda _3 - sta y_cur,y - lda _3+1 - sta y_cur+1,y - //SEG64 [40] (byte~) point_init::$4 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::$4 ] ( main:2::point_init:20 [ main::i#2 point_init::$4 ] ) -- vbuz1=vbuz2_ror_1 - lda point_idx - lsr + sec + lda x_end,y + sbc x_start,y + sta x_diff + lda x_end+1,y + sbc x_start+1,y + sta x_diff+1 + //SEG66 [37] (signed word~) point_init::$4 ← ((signed word)) *((const byte[4]) y_end#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ) -- vwsz1=_sword_pbuc1_derefidx_vbuz2 + ldy point_idx1 + lda y_end,y sta _4 - //SEG65 [41] *((const byte[4]) delay#0 + (byte~) point_init::$4) ← (const byte) DELAY#0 [ ] ( main:2::point_init:20 [ main::i#2 ] ) -- pbuc1_derefidx_vbuz1=vbuc2 - ldy _4 - lda #DELAY - sta delay,y + lda #0 + sta _4+1 + //SEG67 [38] (signed word~) point_init::$5 ← ((signed word)) *((const byte[4]) y_start#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ) -- vwsz1=_sword_pbuc1_derefidx_vbuz2 + ldy point_idx1 + lda y_start,y + sta _5 + lda #0 + sta _5+1 + //SEG68 [39] (signed word) point_init::y_diff#0 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1=vwsz2_minus_vwsz3 + lda _4 + sec + sbc _5 + sta y_diff + lda _4+1 + sbc _5+1 + sta y_diff+1 + jmp abs16s1 + //SEG69 point_init::abs16s1 + abs16s1: + //SEG70 [40] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1_lt_0_then_la1 + lda x_diff+1 + bmi abs16s1_b1 + jmp b12 + //SEG71 point_init::@12 + b12: + //SEG72 [41] (word~) point_init::abs16s1_return#6 ← (word)(signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ) -- vwuz1=vwuz2 + lda x_diff + sta abs16s1_return + lda x_diff+1 + sta abs16s1_return+1 + //SEG73 [42] phi from point_init::@12 point_init::abs16s1_@1 to point_init::abs16s1_@return [phi:point_init::@12/point_init::abs16s1_@1->point_init::abs16s1_@return] + abs16s1_breturn_from_b12: + abs16s1_breturn_from_abs16s1_b1: + //SEG74 [42] phi (word) point_init::abs16s1_return#2 = (word~) point_init::abs16s1_return#6 [phi:point_init::@12/point_init::abs16s1_@1->point_init::abs16s1_@return#0] -- register_copy + jmp abs16s1_breturn + //SEG75 point_init::abs16s1_@return + abs16s1_breturn: + jmp abs16s2 + //SEG76 point_init::abs16s2 + abs16s2: + //SEG77 [43] if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) -- vwsz1_lt_0_then_la1 + lda y_diff+1 + bmi abs16s2_b1 + jmp b13 + //SEG78 point_init::@13 + b13: + //SEG79 [44] (word~) point_init::abs16s2_return#6 ← (word)(signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ) -- vwuz1=vwuz2 + lda y_diff + sta abs16s2_return + lda y_diff+1 + sta abs16s2_return+1 + //SEG80 [45] phi from point_init::@13 point_init::abs16s2_@1 to point_init::abs16s2_@return [phi:point_init::@13/point_init::abs16s2_@1->point_init::abs16s2_@return] + abs16s2_breturn_from_b13: + abs16s2_breturn_from_abs16s2_b1: + //SEG81 [45] phi (word) point_init::abs16s2_return#2 = (word~) point_init::abs16s2_return#6 [phi:point_init::@13/point_init::abs16s2_@1->point_init::abs16s2_@return#0] -- register_copy + jmp abs16s2_breturn + //SEG82 point_init::abs16s2_@return + abs16s2_breturn: + jmp b10 + //SEG83 point_init::@10 + b10: + //SEG84 [46] if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwuz1_gt_vwuz2_then_la1 + lda abs16s1_return + cmp abs16s2_return + lda abs16s1_return+1 + sbc abs16s2_return+1 + bvc !+ + eor #$80 + !: + bpl b1 + //SEG85 [47] phi from point_init::@10 point_init::@4 to point_init::@return [phi:point_init::@10/point_init::@4->point_init::@return] + breturn_from_b10: + breturn_from_b4: + //SEG86 [47] phi (signed word) rem16s#13 = (signed word) rem16s#15 [phi:point_init::@10/point_init::@4->point_init::@return#0] -- register_copy + //SEG87 [47] phi (word) rem16u#18 = (word) rem16u#21 [phi:point_init::@10/point_init::@4->point_init::@return#1] -- register_copy jmp breturn - //SEG66 point_init::@return + //SEG88 point_init::@return breturn: - //SEG67 [42] return [ ] ( main:2::point_init:20 [ main::i#2 ] ) + //SEG89 [48] return [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) + rts + //SEG90 point_init::@1 + b1: + //SEG91 [49] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 [ point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1_lt_0_then_la1 + lda x_diff+1 + bmi b3 + jmp b7 + //SEG92 point_init::@7 + b7: + //SEG93 [50] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← (byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) -- pbsc1_derefidx_vbuz1=vbuc2 + ldy point_idx + lda #$10 + sta x_add,y + jmp b4 + //SEG94 point_init::@4 + b4: + //SEG95 [51] (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#1 [ point_init::y_diff#0 divr16s::divisor#0 ] ( main:2::point_init:20 [ main::i#2 point_init::y_diff#0 divr16s::divisor#0 ] ) -- vwsz1=vwsz2 + lda x_diff + sta divr16s.divisor + lda x_diff+1 + sta divr16s.divisor+1 + //SEG96 [52] (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#0 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) -- vwsz1=vwsz2 + lda y_diff + sta divr16s.rem + lda y_diff+1 + sta divr16s.rem+1 + //SEG97 [53] call divr16s [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + //SEG98 [59] phi from point_init::@4 to divr16s [phi:point_init::@4->divr16s] + divr16s_from_b4: + jsr divr16s + jmp breturn_from_b4 + //SEG99 point_init::@3 + b3: + //SEG100 [54] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← -(byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) -- pbsc1_derefidx_vbuz1=vbsc2 + ldy point_idx + lda #-$10 + sta x_add,y + jmp b4 + //SEG101 point_init::abs16s2_@1 + abs16s2_b1: + //SEG102 [55] (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ) -- vwsz1=_neg_vwsz2 + sec + lda y_diff + eor #$ff + adc #0 + sta abs16s2__2 + lda y_diff+1 + eor #$ff + adc #0 + sta abs16s2__2+1 + //SEG103 [56] (word~) point_init::abs16s2_return#5 ← (word)(signed word) point_init::abs16s2_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ) -- vwuz1=vwuz2 + lda abs16s2__2 + sta abs16s2_return + lda abs16s2__2+1 + sta abs16s2_return+1 + jmp abs16s2_breturn_from_abs16s2_b1 + //SEG104 point_init::abs16s1_@1 + abs16s1_b1: + //SEG105 [57] (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ) -- vwsz1=_neg_vwsz2 + sec + lda x_diff + eor #$ff + adc #0 + sta abs16s1__2 + lda x_diff+1 + eor #$ff + adc #0 + sta abs16s1__2+1 + //SEG106 [58] (word~) point_init::abs16s1_return#5 ← (word)(signed word) point_init::abs16s1_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ) -- vwuz1=vwuz2 + lda abs16s1__2 + sta abs16s1_return + lda abs16s1__2+1 + sta abs16s1_return+1 + jmp abs16s1_breturn_from_abs16s1_b1 +} +//SEG107 divr16s +divr16s: { + .const dividend = 0 + .label _7 = $45 + .label _11 = $43 + .label neg = $f + .label divisor = $39 + .label rem = $3b + .label dividendu = 9 + .label divisoru = $d + .label remu = $b + jmp b16 + //SEG108 divr16s::@16 + b16: + //SEG109 [60] if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) -- vwsz1_lt_0_then_la1 + lda rem+1 + bmi b1 + jmp b17 + //SEG110 divr16s::@17 + b17: + //SEG111 [61] (word~) divr16s::remu#8 ← (word)(signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::remu#8 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#8 ] ) -- vwuz1=vwuz2 + lda rem + sta remu + lda rem+1 + sta remu+1 + //SEG112 [62] phi from divr16s::@17 to divr16s::@2 [phi:divr16s::@17->divr16s::@2] + b2_from_b17: + //SEG113 [62] phi (word) divr16s::remu#3 = (word~) divr16s::remu#8 [phi:divr16s::@17->divr16s::@2#0] -- register_copy + //SEG114 [62] phi (word) divr16s::dividendu#3 = ((word))(const signed word) divr16s::dividend#0 [phi:divr16s::@17->divr16s::@2#1] -- vwuz1=vbuc1 + lda #dividend + sta dividendu+1 + //SEG115 [62] phi (byte) divr16s::neg#3 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16s::@17->divr16s::@2#2] -- vbuz1=vbuc1 + lda #0 + sta neg + jmp b2 + //SEG116 divr16s::@2 + b2: + //SEG117 [63] if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) -- vwsz1_lt_0_then_la1 + lda divisor+1 + bmi b3 + jmp b18 + //SEG118 divr16s::@18 + b18: + //SEG119 [64] (word~) divr16s::divisoru#5 ← (word)(signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ) -- vwuz1=vwuz2 + lda divisor + sta divisoru + lda divisor+1 + sta divisoru+1 + //SEG120 [65] phi from divr16s::@18 divr16s::@3 to divr16s::@4 [phi:divr16s::@18/divr16s::@3->divr16s::@4] + b4_from_b18: + b4_from_b3: + //SEG121 [65] phi (byte) divr16s::neg#4 = (byte) divr16s::neg#3 [phi:divr16s::@18/divr16s::@3->divr16s::@4#0] -- register_copy + //SEG122 [65] phi (word) divr16s::divisoru#3 = (word~) divr16s::divisoru#5 [phi:divr16s::@18/divr16s::@3->divr16s::@4#1] -- register_copy + jmp b4 + //SEG123 divr16s::@4 + b4: + //SEG124 [66] (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 [ divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ) -- vwuz1=vwuz2 + lda dividendu + sta divr16u.dividend + lda dividendu+1 + sta divr16u.dividend+1 + //SEG125 [67] (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 [ divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ) -- vwuz1=vwuz2 + lda divisoru + sta divr16u.divisor + lda divisoru+1 + sta divr16u.divisor+1 + //SEG126 [68] (word) divr16u::rem#3 ← (word) divr16s::remu#3 [ divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) -- vwuz1=vwuz2 + lda remu + sta divr16u.rem + lda remu+1 + sta divr16u.rem+1 + //SEG127 [69] call divr16u [ divr16u::rem#10 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 divr16s::neg#4 ] ) + //SEG128 [80] phi from divr16s::@4 to divr16u [phi:divr16s::@4->divr16u] + divr16u_from_b4: + jsr divr16u + jmp b15 + //SEG129 divr16s::@15 + b15: + //SEG130 [70] if((byte) divr16s::neg#4==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@19 [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 ] ) -- vbuz1_eq_0_then_la1 + lda neg + beq b19 + jmp b11 + //SEG131 divr16s::@11 + b11: + //SEG132 [71] (signed word) rem16s#2 ← - (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#2 ] ) -- vwsz1=_neg_vwsz2 + sec + lda divr16u.rem + eor #$ff + adc #0 + sta rem16s + lda divr16u.rem+1 + eor #$ff + adc #0 + sta rem16s+1 + //SEG133 [72] phi from divr16s::@11 divr16s::@19 to divr16s::@return [phi:divr16s::@11/divr16s::@19->divr16s::@return] + breturn_from_b11: + breturn_from_b19: + //SEG134 [72] phi (signed word) rem16s#3 = (signed word) rem16s#2 [phi:divr16s::@11/divr16s::@19->divr16s::@return#0] -- register_copy + jmp breturn + //SEG135 divr16s::@return + breturn: + //SEG136 [73] return [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + rts + //SEG137 divr16s::@19 + b19: + //SEG138 [74] (signed word~) rem16s#56 ← (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#56 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#56 ] ) -- vwsz1=vwsz2 + lda divr16u.rem + sta rem16s + lda divr16u.rem+1 + sta rem16s+1 + jmp breturn_from_b19 + //SEG139 divr16s::@3 + b3: + //SEG140 [75] (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ) -- vwsz1=_neg_vwsz2 + sec + lda divisor + eor #$ff + adc #0 + sta _11 + lda divisor+1 + eor #$ff + adc #0 + sta _11+1 + //SEG141 [76] (byte) divr16s::neg#2 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ) -- vbuz1=vbuz1_bxor_vbuc1 + lda neg + eor #1 + sta neg + //SEG142 [77] (word~) divr16s::divisoru#4 ← (word)(signed word~) divr16s::$11 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ) -- vwuz1=vwuz2 + lda _11 + sta divisoru + lda _11+1 + sta divisoru+1 + jmp b4_from_b3 + //SEG143 divr16s::@1 + b1: + //SEG144 [78] (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::$7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::$7 ] ) -- vwsz1=_neg_vwsz2 + sec + lda rem + eor #$ff + adc #0 + sta _7 + lda rem+1 + eor #$ff + adc #0 + sta _7+1 + //SEG145 [79] (word~) divr16s::remu#7 ← (word)(signed word~) divr16s::$7 [ divr16s::divisor#0 divr16s::remu#7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#7 ] ) -- vwuz1=vwuz2 + lda _7 + sta remu + lda _7+1 + sta remu+1 + //SEG146 [62] phi from divr16s::@1 to divr16s::@2 [phi:divr16s::@1->divr16s::@2] + b2_from_b1: + //SEG147 [62] phi (word) divr16s::remu#3 = (word~) divr16s::remu#7 [phi:divr16s::@1->divr16s::@2#0] -- register_copy + //SEG148 [62] phi (word) divr16s::dividendu#3 = ((word))-(const signed word) divr16s::dividend#0 [phi:divr16s::@1->divr16s::@2#1] -- vwuz1=vbuc1 + lda #<-dividend + sta dividendu + lda #>-dividend + sta dividendu+1 + //SEG149 [62] phi (byte) divr16s::neg#3 = (byte/signed byte/word/signed word/dword/signed dword) 1 [phi:divr16s::@1->divr16s::@2#2] -- vbuz1=vbuc1 + lda #1 + sta neg + jmp b2 +} +//SEG150 divr16u +divr16u: { + .label _1 = $47 + .label _2 = $48 + .label rem = $10 + .label dividend = $12 + .label quotient = $14 + .label i = $16 + .label return = $14 + .label divisor = $41 + //SEG151 [81] phi from divr16u to divr16u::@1 [phi:divr16u->divr16u::@1] + b1_from_divr16u: + //SEG152 [81] phi (byte) divr16u::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16u->divr16u::@1#0] -- vbuz1=vbuc1 + lda #0 + sta i + //SEG153 [81] phi (word) divr16u::quotient#3 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16u->divr16u::@1#1] -- vwuz1=vbuc1 + lda #<0 + sta quotient + lda #>0 + sta quotient+1 + //SEG154 [81] phi (word) divr16u::dividend#2 = (word) divr16u::dividend#1 [phi:divr16u->divr16u::@1#2] -- register_copy + //SEG155 [81] phi (word) divr16u::rem#4 = (word) divr16u::rem#3 [phi:divr16u->divr16u::@1#3] -- register_copy + jmp b1 + //SEG156 [81] phi from divr16u::@3 to divr16u::@1 [phi:divr16u::@3->divr16u::@1] + b1_from_b3: + //SEG157 [81] phi (byte) divr16u::i#2 = (byte) divr16u::i#1 [phi:divr16u::@3->divr16u::@1#0] -- register_copy + //SEG158 [81] phi (word) divr16u::quotient#3 = (word) divr16u::return#0 [phi:divr16u::@3->divr16u::@1#1] -- register_copy + //SEG159 [81] phi (word) divr16u::dividend#2 = (word) divr16u::dividend#0 [phi:divr16u::@3->divr16u::@1#2] -- register_copy + //SEG160 [81] phi (word) divr16u::rem#4 = (word) divr16u::rem#10 [phi:divr16u::@3->divr16u::@1#3] -- register_copy + jmp b1 + //SEG161 divr16u::@1 + b1: + //SEG162 [82] (word) divr16u::rem#0 ← (word) divr16u::rem#4 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) -- vwuz1=vwuz1_rol_1 + asl rem + rol rem+1 + //SEG163 [83] (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ) -- vbuz1=_hi_vwuz2 + lda dividend+1 + sta _1 + //SEG164 [84] (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ) -- vbuz1=vbuz2_band_vbuc1 + lda #$80 + and _1 + sta _2 + //SEG165 [85] if((byte~) divr16u::$2==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16u::@2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) -- vbuz1_eq_0_then_la1 + lda _2 + beq b2_from_b1 + jmp b4 + //SEG166 divr16u::@4 + b4: + //SEG167 [86] (word) divr16u::rem#1 ← (word) divr16u::rem#0 | (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ) -- vwuz1=vwuz1_bor_vbuc1 + lda #1 + ora rem + sta rem + //SEG168 [87] phi from divr16u::@1 divr16u::@4 to divr16u::@2 [phi:divr16u::@1/divr16u::@4->divr16u::@2] + b2_from_b1: + b2_from_b4: + //SEG169 [87] phi (word) divr16u::rem#5 = (word) divr16u::rem#0 [phi:divr16u::@1/divr16u::@4->divr16u::@2#0] -- register_copy + jmp b2 + //SEG170 divr16u::@2 + b2: + //SEG171 [88] (word) divr16u::dividend#0 ← (word) divr16u::dividend#2 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ) -- vwuz1=vwuz1_rol_1 + asl dividend + rol dividend+1 + //SEG172 [89] (word) divr16u::quotient#1 ← (word) divr16u::quotient#3 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) -- vwuz1=vwuz1_rol_1 + asl quotient + rol quotient+1 + //SEG173 [90] if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) -- vwuz1_lt_vwuz2_then_la1 + lda rem+1 + cmp divisor+1 + bcc b3_from_b2 + bne !+ + lda rem + cmp divisor + bcc b3_from_b2 + !: + jmp b5 + //SEG174 divr16u::@5 + b5: + //SEG175 [91] (word) divr16u::quotient#2 ← ++ (word) divr16u::quotient#1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ) -- vwuz1=_inc_vwuz1 + inc quotient + bne !+ + inc quotient+1 + !: + //SEG176 [92] (word) divr16u::rem#2 ← (word) divr16u::rem#5 - (word) divr16u::divisor#0 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ) -- vwuz1=vwuz1_minus_vwuz2 + lda rem + sec + sbc divisor + sta rem + lda rem+1 + sbc divisor+1 + sta rem+1 + //SEG177 [93] phi from divr16u::@2 divr16u::@5 to divr16u::@3 [phi:divr16u::@2/divr16u::@5->divr16u::@3] + b3_from_b2: + b3_from_b5: + //SEG178 [93] phi (word) divr16u::return#0 = (word) divr16u::quotient#1 [phi:divr16u::@2/divr16u::@5->divr16u::@3#0] -- register_copy + //SEG179 [93] phi (word) divr16u::rem#10 = (word) divr16u::rem#5 [phi:divr16u::@2/divr16u::@5->divr16u::@3#1] -- register_copy + jmp b3 + //SEG180 divr16u::@3 + b3: + //SEG181 [94] (byte) divr16u::i#1 ← ++ (byte) divr16u::i#2 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) -- vbuz1=_inc_vbuz1 + inc i + //SEG182 [95] if((byte) divr16u::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 16) goto divr16u::@1 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + lda i + cmp #$10 + bne b1_from_b3 + jmp breturn + //SEG183 divr16u::@return + breturn: + //SEG184 [96] return [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 ] ) rts } -//SEG68 screen_fill +//SEG185 screen_fill screen_fill: { .const ch = $10 - .label screen = 4 - .label x = 6 - .label y = 3 - //SEG69 [44] phi from screen_fill to screen_fill::@1 [phi:screen_fill->screen_fill::@1] + .label screen = $18 + .label x = $1a + .label y = $17 + //SEG186 [98] phi from screen_fill to screen_fill::@1 [phi:screen_fill->screen_fill::@1] b1_from_screen_fill: - //SEG70 [44] phi (byte) screen_fill::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill->screen_fill::@1#0] -- vbuz1=vbuc1 + //SEG187 [98] phi (byte) screen_fill::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill->screen_fill::@1#0] -- vbuz1=vbuc1 lda #0 sta y - //SEG71 [44] phi (byte*) screen_fill::screen#3 = (const byte*) SCREEN#0 [phi:screen_fill->screen_fill::@1#1] -- pbuz1=pbuc1 + //SEG188 [98] phi (byte*) screen_fill::screen#3 = (const byte*) SCREEN#0 [phi:screen_fill->screen_fill::@1#1] -- pbuz1=pbuc1 lda #SCREEN sta screen+1 jmp b1 - //SEG72 [44] phi from screen_fill::@3 to screen_fill::@1 [phi:screen_fill::@3->screen_fill::@1] + //SEG189 [98] phi from screen_fill::@3 to screen_fill::@1 [phi:screen_fill::@3->screen_fill::@1] b1_from_b3: - //SEG73 [44] phi (byte) screen_fill::y#4 = (byte) screen_fill::y#1 [phi:screen_fill::@3->screen_fill::@1#0] -- register_copy - //SEG74 [44] phi (byte*) screen_fill::screen#3 = (byte*) screen_fill::screen#1 [phi:screen_fill::@3->screen_fill::@1#1] -- register_copy + //SEG190 [98] phi (byte) screen_fill::y#4 = (byte) screen_fill::y#1 [phi:screen_fill::@3->screen_fill::@1#0] -- register_copy + //SEG191 [98] phi (byte*) screen_fill::screen#3 = (byte*) screen_fill::screen#1 [phi:screen_fill::@3->screen_fill::@1#1] -- register_copy jmp b1 - //SEG75 screen_fill::@1 + //SEG192 screen_fill::@1 b1: - //SEG76 [45] phi from screen_fill::@1 to screen_fill::@2 [phi:screen_fill::@1->screen_fill::@2] + //SEG193 [99] phi from screen_fill::@1 to screen_fill::@2 [phi:screen_fill::@1->screen_fill::@2] b2_from_b1: - //SEG77 [45] phi (byte) screen_fill::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill::@1->screen_fill::@2#0] -- vbuz1=vbuc1 + //SEG194 [99] phi (byte) screen_fill::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill::@1->screen_fill::@2#0] -- vbuz1=vbuc1 lda #0 sta x - //SEG78 [45] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#3 [phi:screen_fill::@1->screen_fill::@2#1] -- register_copy + //SEG195 [99] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#3 [phi:screen_fill::@1->screen_fill::@2#1] -- register_copy jmp b2 - //SEG79 [45] phi from screen_fill::@2 to screen_fill::@2 [phi:screen_fill::@2->screen_fill::@2] + //SEG196 [99] phi from screen_fill::@2 to screen_fill::@2 [phi:screen_fill::@2->screen_fill::@2] b2_from_b2: - //SEG80 [45] phi (byte) screen_fill::x#2 = (byte) screen_fill::x#1 [phi:screen_fill::@2->screen_fill::@2#0] -- register_copy - //SEG81 [45] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#1 [phi:screen_fill::@2->screen_fill::@2#1] -- register_copy + //SEG197 [99] phi (byte) screen_fill::x#2 = (byte) screen_fill::x#1 [phi:screen_fill::@2->screen_fill::@2#0] -- register_copy + //SEG198 [99] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#1 [phi:screen_fill::@2->screen_fill::@2#1] -- register_copy jmp b2 - //SEG82 screen_fill::@2 + //SEG199 screen_fill::@2 b2: - //SEG83 [46] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) -- _deref_pbuz1=vbuc1 + //SEG200 [100] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) -- _deref_pbuz1=vbuc1 lda #ch ldy #0 sta (screen),y - //SEG84 [47] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) -- pbuz1=_inc_pbuz1 + //SEG201 [101] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) -- pbuz1=_inc_pbuz1 inc screen bne !+ inc screen+1 !: - //SEG85 [48] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG202 [102] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuz1=_inc_vbuz1 inc x - //SEG86 [49] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG203 [103] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda x cmp #$28 bne b2_from_b2 jmp b3 - //SEG87 screen_fill::@3 + //SEG204 screen_fill::@3 b3: - //SEG88 [50] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG205 [104] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1=_inc_vbuz1 inc y - //SEG89 [51] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG206 [105] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda y cmp #$19 bne b1_from_b3 jmp breturn - //SEG90 screen_fill::@return + //SEG207 screen_fill::@return breturn: - //SEG91 [52] return [ ] ( main:2::screen_fill:17 [ ] ) + //SEG208 [106] return [ ] ( main:2::screen_fill:17 [ ] ) rts } -//SEG92 bitmap_clear +//SEG209 bitmap_clear bitmap_clear: { - .label bitmap = 8 - .label x = $a - .label y = 7 - .label _3 = $24 - //SEG93 [53] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 + .label bitmap = $1c + .label x = $1e + .label y = $1b + .label _3 = $49 + //SEG210 [107] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 lda bitmap_plot_ylo+0 sta _3 lda bitmap_plot_yhi+0 sta _3+1 - //SEG94 [54] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) -- pbuz1=pbuz2 + //SEG211 [108] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) -- pbuz1=pbuz2 lda _3 sta bitmap lda _3+1 sta bitmap+1 - //SEG95 [55] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] + //SEG212 [109] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] b1_from_bitmap_clear: - //SEG96 [55] phi (byte) bitmap_clear::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear->bitmap_clear::@1#0] -- vbuz1=vbuc1 + //SEG213 [109] phi (byte) bitmap_clear::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear->bitmap_clear::@1#0] -- vbuz1=vbuc1 lda #0 sta y - //SEG97 [55] phi (byte*) bitmap_clear::bitmap#3 = (byte*~) bitmap_clear::bitmap#5 [phi:bitmap_clear->bitmap_clear::@1#1] -- register_copy + //SEG214 [109] phi (byte*) bitmap_clear::bitmap#3 = (byte*~) bitmap_clear::bitmap#5 [phi:bitmap_clear->bitmap_clear::@1#1] -- register_copy jmp b1 - //SEG98 [55] phi from bitmap_clear::@3 to bitmap_clear::@1 [phi:bitmap_clear::@3->bitmap_clear::@1] + //SEG215 [109] phi from bitmap_clear::@3 to bitmap_clear::@1 [phi:bitmap_clear::@3->bitmap_clear::@1] b1_from_b3: - //SEG99 [55] phi (byte) bitmap_clear::y#4 = (byte) bitmap_clear::y#1 [phi:bitmap_clear::@3->bitmap_clear::@1#0] -- register_copy - //SEG100 [55] phi (byte*) bitmap_clear::bitmap#3 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@3->bitmap_clear::@1#1] -- register_copy + //SEG216 [109] phi (byte) bitmap_clear::y#4 = (byte) bitmap_clear::y#1 [phi:bitmap_clear::@3->bitmap_clear::@1#0] -- register_copy + //SEG217 [109] phi (byte*) bitmap_clear::bitmap#3 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@3->bitmap_clear::@1#1] -- register_copy jmp b1 - //SEG101 bitmap_clear::@1 + //SEG218 bitmap_clear::@1 b1: - //SEG102 [56] phi from bitmap_clear::@1 to bitmap_clear::@2 [phi:bitmap_clear::@1->bitmap_clear::@2] + //SEG219 [110] phi from bitmap_clear::@1 to bitmap_clear::@2 [phi:bitmap_clear::@1->bitmap_clear::@2] b2_from_b1: - //SEG103 [56] phi (byte) bitmap_clear::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear::@1->bitmap_clear::@2#0] -- vbuz1=vbuc1 + //SEG220 [110] phi (byte) bitmap_clear::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear::@1->bitmap_clear::@2#0] -- vbuz1=vbuc1 lda #0 sta x - //SEG104 [56] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#3 [phi:bitmap_clear::@1->bitmap_clear::@2#1] -- register_copy + //SEG221 [110] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#3 [phi:bitmap_clear::@1->bitmap_clear::@2#1] -- register_copy jmp b2 - //SEG105 [56] phi from bitmap_clear::@2 to bitmap_clear::@2 [phi:bitmap_clear::@2->bitmap_clear::@2] + //SEG222 [110] phi from bitmap_clear::@2 to bitmap_clear::@2 [phi:bitmap_clear::@2->bitmap_clear::@2] b2_from_b2: - //SEG106 [56] phi (byte) bitmap_clear::x#2 = (byte) bitmap_clear::x#1 [phi:bitmap_clear::@2->bitmap_clear::@2#0] -- register_copy - //SEG107 [56] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@2->bitmap_clear::@2#1] -- register_copy + //SEG223 [110] phi (byte) bitmap_clear::x#2 = (byte) bitmap_clear::x#1 [phi:bitmap_clear::@2->bitmap_clear::@2#0] -- register_copy + //SEG224 [110] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@2->bitmap_clear::@2#1] -- register_copy jmp b2 - //SEG108 bitmap_clear::@2 + //SEG225 bitmap_clear::@2 b2: - //SEG109 [57] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) -- _deref_pbuz1=vbuc1 + //SEG226 [111] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) -- _deref_pbuz1=vbuc1 lda #0 ldy #0 sta (bitmap),y - //SEG110 [58] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) -- pbuz1=_inc_pbuz1 + //SEG227 [112] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) -- pbuz1=_inc_pbuz1 inc bitmap bne !+ inc bitmap+1 !: - //SEG111 [59] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG228 [113] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuz1=_inc_vbuz1 inc x - //SEG112 [60] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG229 [114] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda x cmp #$c8 bne b2_from_b2 jmp b3 - //SEG113 bitmap_clear::@3 + //SEG230 bitmap_clear::@3 b3: - //SEG114 [61] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG231 [115] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1=_inc_vbuz1 inc y - //SEG115 [62] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG232 [116] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda y cmp #$28 bne b1_from_b3 jmp breturn - //SEG116 bitmap_clear::@return + //SEG233 bitmap_clear::@return breturn: - //SEG117 [63] return [ ] ( main:2::bitmap_clear:15 [ ] ) + //SEG234 [117] return [ ] ( main:2::bitmap_clear:15 [ ] ) rts } -//SEG118 bitmap_init +//SEG235 bitmap_init bitmap_init: { - .label _3 = $26 - .label _4 = $27 - .label _5 = $28 - .label _6 = $29 - .label _7 = $2a - .label bits = $b - .label x = $c - .label y = $d - .label yoffs = $e - //SEG119 [65] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] + .label _3 = $4b + .label _4 = $4c + .label _5 = $4d + .label _6 = $4e + .label _7 = $4f + .label bits = $1f + .label x = $20 + .label y = $21 + .label yoffs = $22 + //SEG236 [119] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] b1_from_bitmap_init: - //SEG120 [65] phi (byte) bitmap_init::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuz1=vbuc1 + //SEG237 [119] phi (byte) bitmap_init::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuz1=vbuc1 lda #0 sta x - //SEG121 [65] phi (byte) bitmap_init::bits#3 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init->bitmap_init::@1#1] -- vbuz1=vbuc1 + //SEG238 [119] phi (byte) bitmap_init::bits#3 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init->bitmap_init::@1#1] -- vbuz1=vbuc1 lda #$80 sta bits jmp b1 - //SEG122 [65] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] + //SEG239 [119] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] b1_from_b2: - //SEG123 [65] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy - //SEG124 [65] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy + //SEG240 [119] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy + //SEG241 [119] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy jmp b1 - //SEG125 bitmap_init::@1 + //SEG242 bitmap_init::@1 b1: - //SEG126 [66] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) -- pbuc1_derefidx_vbuz1=vbuz2 + //SEG243 [120] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) -- pbuc1_derefidx_vbuz1=vbuz2 lda bits ldy x sta bitmap_plot_bit,y - //SEG127 [67] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuz1=vbuz1_ror_1 + //SEG244 [121] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuz1=vbuz1_ror_1 lsr bits - //SEG128 [68] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuz1_neq_0_then_la1 + //SEG245 [122] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuz1_neq_0_then_la1 lda bits bne b10_from_b1 - //SEG129 [69] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] + //SEG246 [123] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] b2_from_b1: - //SEG130 [69] phi (byte) bitmap_init::bits#4 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuz1=vbuc1 + //SEG247 [123] phi (byte) bitmap_init::bits#4 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuz1=vbuc1 lda #$80 sta bits jmp b2 - //SEG131 bitmap_init::@2 + //SEG248 bitmap_init::@2 b2: - //SEG132 [70] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG249 [124] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuz1=_inc_vbuz1 inc x - //SEG133 [71] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuz1_neq_0_then_la1 + //SEG250 [125] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuz1_neq_0_then_la1 lda x bne b1_from_b2 - //SEG134 [72] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] + //SEG251 [126] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] b3_from_b2: - //SEG135 [72] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 + //SEG252 [126] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 lda #BITMAP sta yoffs+1 - //SEG136 [72] phi (byte) bitmap_init::y#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuz1=vbuc1 + //SEG253 [126] phi (byte) bitmap_init::y#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuz1=vbuc1 lda #0 sta y jmp b3 - //SEG137 [72] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] + //SEG254 [126] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] b3_from_b4: - //SEG138 [72] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy - //SEG139 [72] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy + //SEG255 [126] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy + //SEG256 [126] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy jmp b3 - //SEG140 bitmap_init::@3 + //SEG257 bitmap_init::@3 b3: - //SEG141 [73] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) -- vbuz1=vbuz2_band_vbuc1 + //SEG258 [127] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) -- vbuz1=vbuz2_band_vbuc1 lda #7 and y sta _3 - //SEG142 [74] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) -- vbuz1=_lo_pbuz2 + //SEG259 [128] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) -- vbuz1=_lo_pbuz2 lda yoffs sta _4 - //SEG143 [75] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) -- vbuz1=vbuz2_bor_vbuz3 + //SEG260 [129] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) -- vbuz1=vbuz2_bor_vbuz3 lda _3 ora _4 sta _5 - //SEG144 [76] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuz1=vbuz2 + //SEG261 [130] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuz1=vbuz2 lda _5 ldy y sta bitmap_plot_ylo,y - //SEG145 [77] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) -- vbuz1=_hi_pbuz2 + //SEG262 [131] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) -- vbuz1=_hi_pbuz2 lda yoffs+1 sta _6 - //SEG146 [78] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuz1=vbuz2 + //SEG263 [132] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuz1=vbuz2 lda _6 ldy y sta bitmap_plot_yhi,y - //SEG147 [79] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) -- vbuz1=vbuz2_band_vbuc1 + //SEG264 [133] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) -- vbuz1=vbuz2_band_vbuc1 lda #7 and y sta _7 - //SEG148 [80] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG265 [134] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- vbuz1_neq_vbuc1_then_la1 lda _7 cmp #7 bne b4_from_b3 jmp b7 - //SEG149 bitmap_init::@7 + //SEG266 bitmap_init::@7 b7: - //SEG150 [81] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) -- pbuz1=pbuz1_plus_vwuc1 + //SEG267 [135] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) -- pbuz1=pbuz1_plus_vwuc1 clc lda yoffs adc #<$28*8 @@ -2809,186 +20549,958 @@ bitmap_init: { lda yoffs+1 adc #>$28*8 sta yoffs+1 - //SEG151 [82] phi from bitmap_init::@3 bitmap_init::@7 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4] + //SEG268 [136] phi from bitmap_init::@3 bitmap_init::@7 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4] b4_from_b3: b4_from_b7: - //SEG152 [82] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4#0] -- register_copy + //SEG269 [136] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4#0] -- register_copy jmp b4 - //SEG153 bitmap_init::@4 + //SEG270 bitmap_init::@4 b4: - //SEG154 [83] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuz1=_inc_vbuz1 + //SEG271 [137] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuz1=_inc_vbuz1 inc y - //SEG155 [84] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuz1_neq_0_then_la1 + //SEG272 [138] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuz1_neq_0_then_la1 lda y bne b3_from_b4 jmp breturn - //SEG156 bitmap_init::@return + //SEG273 bitmap_init::@return breturn: - //SEG157 [85] return [ ] ( main:2::bitmap_init:13 [ ] ) + //SEG274 [139] return [ ] ( main:2::bitmap_init:13 [ ] ) rts - //SEG158 [86] phi from bitmap_init::@1 to bitmap_init::@10 [phi:bitmap_init::@1->bitmap_init::@10] + //SEG275 [140] phi from bitmap_init::@1 to bitmap_init::@10 [phi:bitmap_init::@1->bitmap_init::@10] b10_from_b1: jmp b10 - //SEG159 bitmap_init::@10 + //SEG276 bitmap_init::@10 b10: - //SEG160 [69] phi from bitmap_init::@10 to bitmap_init::@2 [phi:bitmap_init::@10->bitmap_init::@2] + //SEG277 [123] phi from bitmap_init::@10 to bitmap_init::@2 [phi:bitmap_init::@10->bitmap_init::@2] b2_from_b10: - //SEG161 [69] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@10->bitmap_init::@2#0] -- register_copy + //SEG278 [123] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@10->bitmap_init::@2#0] -- register_copy jmp b2 } x_start: .word $a, $14, $1e, $1e y_start: .byte $a, $a, $a, $14 - x_cur: .fill 8, 0 - y_cur: .fill 8, 0 - delay: .fill 4, 0 + x_end: .word $14, $a, $14, $14 + y_end: .byte $14, $14, $a, $14 + x_add: .fill 4, 0 bitmap_plot_ylo: .fill $100, 0 bitmap_plot_yhi: .fill $100, 0 bitmap_plot_bit: .fill $100, 0 REGISTER UPLIFT POTENTIAL REGISTERS -Equivalence Class zp ZP_BYTE:39 [ bitmap_init::$4 ] has ALU potential. +Equivalence Class zp ZP_BYTE:76 [ bitmap_init::$4 ] has ALU potential. Statement [5] *((const byte*) PROCPORT_DDR#0) ← (const byte) PROCPORT_DDR_MEMORY_MASK#0 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [6] *((const byte*) PROCPORT#0) ← (const byte) PROCPORT_RAM_IO#0 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [7] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte/signed byte/word/signed word/dword/signed dword) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [8] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte/signed byte/word/signed word/dword/signed dword) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [10] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [12] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a -Statement [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 main::$9 bitmap_plot::x#0 ] ) always clobbers reg byte a +Found best fragment vbuz1=vbuaa score: 3.0 +Found best fragment vbuz1=vbuaa_ror_1 < vbuaa=vbuaa_ror_1 score: 5.0 +Found best fragment vwuz1=pwuc1_derefidx_vbuaa < vwuz1=pwuc1_derefidx_vbuyy score: 18.5 +Found best fragment vwuz1=pwuc1_derefidx_vbuxx score: 15.5 +Found best fragment vwuz1=pwuc1_derefidx_vbuyy score: 15.5 +Statement [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp ZP_BYTE:2 [ main::i#2 main::i#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:17 [ main::$9 ] -Statement [28] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 ] ) always clobbers reg byte a -Statement [29] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) always clobbers reg byte a -Statement [30] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) always clobbers reg byte a -Statement [31] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) always clobbers reg byte a -Statement [32] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:37 [ main::$9 ] +Found best fragment vbuaa=pbuc1_derefidx_vbuz1 < vbuaa=pbuc1_derefidx_vbuyy score: 9.0 +Found best fragment vbuxx=pbuc1_derefidx_vbuz1 < vbuxx=pbuc1_derefidx_vbuxx < vbuxx=vbuaa score: 11.5 +Found best fragment vbuyy=pbuc1_derefidx_vbuz1 < vbuyy=pbuc1_derefidx_vbuxx score: 10.0 +Found best fragment vbuxx=vbuxx_plus_2 score: 5.5 +Found best fragment vbuxx_neq_vbuc1_then_la1 score: 4.5 +Statement [27] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@5 [ ] ( main:2 [ ] ) always clobbers reg byte a +Found best fragment vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa < vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy < vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy score: 18.5 +Found best fragment vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx < vwuz1=vbuaa_word_pbuc1_derefidx_vbuxx score: 15.5 +Found best fragment vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy < vwuz1=vbuaa_word_pbuc1_derefidx_vbuyy score: 15.5 +Statement [29] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 ] ) always clobbers reg byte a +Statement [30] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) always clobbers reg byte a +Statement [31] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) always clobbers reg byte a +Found best fragment vbuaa=_lo_vwuz1 score: 3.5 +Found best fragment vbuxx=_lo_vwuz1 < vbuaa=_lo_vwuz1 score: 7.0 +Found best fragment vbuyy=_lo_vwuz1 < vbuaa=_lo_vwuz1 score: 6.5 +Statement [32] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) always clobbers reg byte a +Found best fragment _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa < _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy < vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy < vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 < vbuaa=vbuaa_bor__deref_pbuz1 score: 23.5 +Found best fragment _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx < _deref_pbuz1=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 < vbuaa=pbuc1_derefidx_vbuxx_bor__deref_pbuz1 < vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuxx < vbuaa=_deref_pbuz1_bor_vbuaa < vbuaa=vbuaa_bor__deref_pbuz1 score: 21.5 +Found best fragment _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy < vbuaa=_deref_pbuz1_bor_pbuc1_derefidx_vbuyy < vbuaa=pbuc1_derefidx_vbuyy_bor__deref_pbuz1 < vbuaa=vbuaa_bor__deref_pbuz1 score: 21.5 +Statement [33] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) always clobbers reg byte a reg byte y Removing always clobbered register reg byte y as potential for zp ZP_BYTE:2 [ main::i#2 main::i#1 ] -Statement [34] (word~) point_init::$0 ← *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$0 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:16 [ point_init::point_idx#0 ] -Statement [35] *((const word[4]) x_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$0 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) always clobbers reg byte a -Statement [36] (byte~) point_init::$1 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::point_idx#0 point_init::$1 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$1 ] ) always clobbers reg byte a -Statement [37] (word~) point_init::$2 ← ((word)) *((const byte[4]) y_start#0 + (byte~) point_init::$1) [ point_init::point_idx#0 point_init::$2 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$2 ] ) always clobbers reg byte a -Statement [38] (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$3 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$3 ] ) always clobbers reg byte a -Statement [39] *((const word[4]) y_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$3 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) always clobbers reg byte a -Statement [40] (byte~) point_init::$4 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::$4 ] ( main:2::point_init:20 [ main::i#2 point_init::$4 ] ) always clobbers reg byte a -Statement [41] *((const byte[4]) delay#0 + (byte~) point_init::$4) ← (const byte) DELAY#0 [ ] ( main:2::point_init:20 [ main::i#2 ] ) always clobbers reg byte a -Statement [46] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) always clobbers reg byte a reg byte y -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:6 [ screen_fill::x#2 screen_fill::x#1 ] -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:6 [ screen_fill::x#2 screen_fill::x#1 ] -Statement [53] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) always clobbers reg byte a -Statement [54] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) always clobbers reg byte a -Statement [57] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) always clobbers reg byte a reg byte y -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:10 [ bitmap_clear::x#2 bitmap_clear::x#1 ] -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:10 [ bitmap_clear::x#2 bitmap_clear::x#1 ] -Statement [73] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:13 [ bitmap_init::y#2 bitmap_init::y#1 ] -Statement [79] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) always clobbers reg byte a -Statement [81] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) always clobbers reg byte a +Found best fragment vbuaa=vbuz1_ror_1 < vbuaa=vbuaa_ror_1 score: 5.5 +Found best fragment vbuxx=vbuz1_ror_1 < vbuxx=vbuaa_ror_1 < vbuaa=vbuaa_ror_1 score: 9.0 +Found best fragment vbuyy=vbuz1_ror_1 < vbuyy=vbuaa_ror_1 < vbuaa=vbuaa_ror_1 score: 8.5 +Found best fragment vwsz1=pwsc1_derefidx_vbuaa_minus_pwsc2_derefidx_vbuaa < vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy score: 29.5 +Found best fragment vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx score: 26.5 +Found best fragment vwsz1=pwsc1_derefidx_vbuyy_minus_pwsc2_derefidx_vbuyy score: 26.5 +Statement [36] (signed word) point_init::x_diff#1 ← (signed word)*((const word[4]) x_end#0 + (byte) point_init::point_idx#0) - (signed word)*((const word[4]) x_start#0 + (byte) point_init::point_idx#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:36 [ point_init::point_idx#0 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:48 [ point_init::point_idx1#0 ] +Found best fragment vwsz1=_sword_pbuc1_derefidx_vbuxx score: 13.0 +Found best fragment vwsz1=_sword_pbuc1_derefidx_vbuyy score: 13.0 +Statement [37] (signed word~) point_init::$4 ← ((signed word)) *((const byte[4]) y_end#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ) always clobbers reg byte a +Statement [38] (signed word~) point_init::$5 ← ((signed word)) *((const byte[4]) y_start#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ) always clobbers reg byte a +Statement [39] (signed word) point_init::y_diff#0 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [40] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [41] (word~) point_init::abs16s1_return#6 ← (word)(signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ) always clobbers reg byte a +Statement [43] if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) always clobbers reg byte a +Statement [44] (word~) point_init::abs16s2_return#6 ← (word)(signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ) always clobbers reg byte a +Statement [46] if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [49] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 [ point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Found best fragment pbsc1_derefidx_vbuxx=vbuc2 < vbsaa=vbuc1 score: 7.5 +Found best fragment pbsc1_derefidx_vbuyy=vbuc2 < vbsaa=vbuc1 score: 7.5 +Statement [50] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← (byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [51] (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#1 [ point_init::y_diff#0 divr16s::divisor#0 ] ( main:2::point_init:20 [ main::i#2 point_init::y_diff#0 divr16s::divisor#0 ] ) always clobbers reg byte a +Statement [52] (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#0 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) always clobbers reg byte a +Found best fragment pbsc1_derefidx_vbuxx=vbsc2 < vbsaa=vbsc1 < vbuaa=vbuc1 score: 7.5 +Found best fragment pbsc1_derefidx_vbuyy=vbsc2 < vbsaa=vbsc1 < vbuaa=vbuc1 score: 7.5 +Statement [54] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← -(byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [55] (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ) always clobbers reg byte a +Statement [56] (word~) point_init::abs16s2_return#5 ← (word)(signed word) point_init::abs16s2_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ) always clobbers reg byte a +Statement [57] (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ) always clobbers reg byte a +Statement [58] (word~) point_init::abs16s1_return#5 ← (word)(signed word) point_init::abs16s1_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ) always clobbers reg byte a +Statement [60] if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) always clobbers reg byte a +Statement [61] (word~) divr16s::remu#8 ← (word)(signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::remu#8 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#8 ] ) always clobbers reg byte a +Statement [63] if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:15 [ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] +Statement [64] (word~) divr16s::divisoru#5 ← (word)(signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ) always clobbers reg byte a +Statement [66] (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 [ divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ) always clobbers reg byte a +Statement [67] (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 [ divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ) always clobbers reg byte a +Statement [68] (word) divr16u::rem#3 ← (word) divr16s::remu#3 [ divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) always clobbers reg byte a +Found best fragment vbuxx_eq_0_then_la1 score: 4.5 +Statement [71] (signed word) rem16s#2 ← - (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#2 ] ) always clobbers reg byte a +Statement [74] (signed word~) rem16s#56 ← (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#56 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#56 ] ) always clobbers reg byte a +Statement [75] (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ) always clobbers reg byte a +Found best fragment vbuxx=vbuxx_bxor_vbuc1 < vbuaa=vbuxx_bxor_vbuc1 < vbuaa=vbuaa_bxor_vbuc1 score: 8.0 +Found best fragment vbuyy=vbuyy_bxor_vbuc1 < vbuaa=vbuyy_bxor_vbuc1 < vbuaa=vbuaa_bxor_vbuc1 score: 7.5 +Statement [76] (byte) divr16s::neg#2 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ) always clobbers reg byte a +Statement [77] (word~) divr16s::divisoru#4 ← (word)(signed word~) divr16s::$11 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ) always clobbers reg byte a +Statement [78] (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::$7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::$7 ] ) always clobbers reg byte a +Statement [79] (word~) divr16s::remu#7 ← (word)(signed word~) divr16s::$7 [ divr16s::divisor#0 divr16s::remu#7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#7 ] ) always clobbers reg byte a +Found best fragment vbuaa=_hi_vwuz1 score: 3.5 +Found best fragment vbuxx=_hi_vwuz1 < vbuaa=_hi_vwuz1 score: 7.0 +Found best fragment vbuyy=_hi_vwuz1 < vbuaa=_hi_vwuz1 score: 6.5 +Statement [83] (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:22 [ divr16u::i#2 divr16u::i#1 ] +Found best fragment vbuaa=vbuz1_band_vbuc1 < vbuaa=vbuc1_band_vbuz1 < vbuaa=vbuaa_band_vbuz1 score: 5.5 +Found best fragment vbuxx=vbuz1_band_vbuc1 < vbuxx=vbuc1_band_vbuz1 < vbuxx=vbuaa_band_vbuz1 < vbuaa=vbuaa_band_vbuz1 score: 9.0 +Found best fragment vbuyy=vbuz1_band_vbuc1 < vbuyy=vbuc1_band_vbuz1 < vbuyy=vbuaa_band_vbuz1 < vbuaa=vbuaa_band_vbuz1 score: 8.5 +Found best fragment vbuz1=vbuaa_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 5.5 +Found best fragment vbuaa=vbuaa_band_vbuc1 score: 2.5 +Found best fragment vbuxx=vbuaa_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 6.0 +Found best fragment vbuyy=vbuaa_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 5.5 +Found best fragment vbuz1=vbuxx_band_vbuc1 < vbuz1=vbuaa_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 7.5 +Found best fragment vbuaa=vbuxx_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 4.5 +Found best fragment vbuxx=vbuxx_band_vbuc1 < vbuaa=vbuxx_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 8.0 +Found best fragment vbuyy=vbuxx_band_vbuc1 < vbuyy=vbuaa_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 7.5 +Found best fragment vbuz1=vbuyy_band_vbuc1 < vbuz1=vbuaa_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 7.5 +Found best fragment vbuaa=vbuyy_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 4.5 +Found best fragment vbuxx=vbuyy_band_vbuc1 < vbuxx=vbuaa_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 8.0 +Found best fragment vbuyy=vbuyy_band_vbuc1 < vbuaa=vbuyy_band_vbuc1 < vbuaa=vbuaa_band_vbuc1 score: 7.5 +Statement [84] (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ) always clobbers reg byte a +Found best fragment vbuaa_eq_0_then_la1 score: 4.5 +Statement [86] (word) divr16u::rem#1 ← (word) divr16u::rem#0 | (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ) always clobbers reg byte a +Statement [90] if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) always clobbers reg byte a +Statement [92] (word) divr16u::rem#2 ← (word) divr16u::rem#5 - (word) divr16u::divisor#0 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ) always clobbers reg byte a +Statement [100] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:26 [ screen_fill::x#2 screen_fill::x#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:26 [ screen_fill::x#2 screen_fill::x#1 ] +Statement [107] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) always clobbers reg byte a +Statement [108] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) always clobbers reg byte a +Statement [111] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:30 [ bitmap_clear::x#2 bitmap_clear::x#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:30 [ bitmap_clear::x#2 bitmap_clear::x#1 ] +Found best fragment pbuc1_derefidx_vbuaa=vbuz1 < pbuc1_derefidx_vbuyy=vbuz1 < pbuc1_derefidx_vbuyy=vbuaa score: 11.5 +Found best fragment pbuc1_derefidx_vbuxx=vbuz1 < pbuc1_derefidx_vbuxx=vbuaa score: 8.5 +Found best fragment pbuc1_derefidx_vbuyy=vbuz1 < pbuc1_derefidx_vbuyy=vbuaa score: 8.5 +Found best fragment pbuc1_derefidx_vbuz1=vbuaa < pbuc1_derefidx_vbuyy=vbuaa score: 9.0 +Found best fragment vbuaa_neq_0_then_la1 score: 4.5 +Statement [127] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:33 [ bitmap_init::y#2 bitmap_init::y#1 ] +Found best fragment vbuaa=_lo_pbuz1 score: 3.5 +Found best fragment vbuxx=_lo_pbuz1 score: 4.5 +Found best fragment vbuz1=vbuaa_bor_vbuz2 < vbuaa=vbuaa_bor_vbuz1 score: 6.5 +Found best fragment vbuz1=vbuxx_bor_vbuz2 < vbuz1=vbuaa_bor_vbuz2 < vbuaa=vbuaa_bor_vbuz1 score: 8.5 +Found best fragment vbuz1=vbuyy_bor_vbuz2 < vbuz1=vbuaa_bor_vbuz2 < vbuaa=vbuaa_bor_vbuz1 score: 8.5 +Found best fragment vbuz1=vbuz2_bor_vbuaa < vbuz1=vbuaa_bor_vbuz2 < vbuaa=vbuaa_bor_vbuz1 score: 6.5 +New fragment synthesis vbuz1=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuxx_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuxx_bor_vbuxx +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuz1=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuaa_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuz1=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuz1=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuz1=vbuxx_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuz1=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuyy=vbuxx_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuxx=vbuxx_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuz1=vbuxx_bor_vbuxx +New fragment synthesis vbuz1=vbuxx_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuxx +New fragment synthesis vbuaa=vbuxx_bor_vbuxx +New fragment synthesis vbuaa=vbuxx_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuxx - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuaa=vbuxx_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully loaded vbuaa=vbuaa_bor_vbuaa.asm +New fragment synthesis vbuaa=vbuaa_bor_vbuaa - sub-option vbuaa=vbuxx_bor_vbuxx +New fragment synthesis vbuaa=vbuaa_bor_vbuaa - sub-option vbuaa=vbuyy_bor_vbuyy +New fragment synthesis vbuaa=vbuaa_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuyy +New fragment synthesis vbuaa=vbuyy_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuyy - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuaa=vbuyy_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuyy +New fragment synthesis vbuyy=vbuxx_bor_vbuxx +New fragment synthesis vbuyy=vbuxx_bor_vbuxx - sub-option vbuyy=vbuxx_bor_vbuaa +New fragment synthesis vbuyy=vbuxx_bor_vbuxx - sub-option vbuyy=vbuaa_bor_vbuaa +New fragment synthesis vbuyy=vbuxx_bor_vbuxx - sub-option vbuyy=vbuxx_bor_vbuaa +New fragment synthesis vbuyy=vbuxx_bor_vbuxx - sub-option vbuyy=vbuaa_bor_vbuaa +New fragment synthesis vbuyy=vbuxx_bor_vbuxx - sub-option vbuyy=vbuxx_bor_vbuxx +New fragment synthesis vbuyy=vbuxx_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuaa +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuxx_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuxx_bor_vbuxx +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuyy_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuyy_bor_vbuyy +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuyy=vbuaa_bor_vbuaa +New fragment synthesis vbuyy=vbuaa_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuyy=vbuyy_bor_vbuyy +New fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully loaded vbuyy=vbuyy_bor_vbuyy.asm +New fragment synthesis vbuyy=vbuyy_bor_vbuyy - sub-option vbuyy=vbuaa_bor_vbuaa +New fragment synthesis vbuyy=vbuyy_bor_vbuyy - sub-option vbuyy=vbuyy_bor_vbuyy +New fragment synthesis vbuyy=vbuyy_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuyy +New fragment synthesis vbuxx=vbuxx_bor_vbuxx +New fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully loaded vbuxx=vbuxx_bor_vbuxx.asm +New fragment synthesis vbuxx=vbuxx_bor_vbuxx - sub-option vbuxx=vbuaa_bor_vbuaa +New fragment synthesis vbuxx=vbuxx_bor_vbuxx - sub-option vbuxx=vbuxx_bor_vbuxx +New fragment synthesis vbuxx=vbuxx_bor_vbuxx - sub-option vbuaa=vbuxx_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuaa +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuxx_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuxx_bor_vbuxx +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuyy +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuyy +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuyy_bor_vbuyy +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuyy_bor_vbuyy +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuxx=vbuaa_bor_vbuaa +New fragment synthesis vbuxx=vbuaa_bor_vbuaa - sub-option vbuaa=vbuaa_bor_vbuaa +New fragment synthesis vbuxx=vbuyy_bor_vbuyy +New fragment synthesis vbuxx=vbuyy_bor_vbuyy - sub-option vbuxx=vbuyy_bor_vbuaa +New fragment synthesis vbuxx=vbuyy_bor_vbuyy - sub-option vbuxx=vbuaa_bor_vbuaa +New fragment synthesis vbuxx=vbuyy_bor_vbuyy - sub-option vbuxx=vbuyy_bor_vbuaa +New fragment synthesis vbuxx=vbuyy_bor_vbuyy - sub-option vbuxx=vbuaa_bor_vbuaa +New fragment synthesis vbuxx=vbuyy_bor_vbuyy - sub-option vbuxx=vbuyy_bor_vbuyy +New fragment synthesis vbuxx=vbuyy_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuz1=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuz1=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuz1=vbuyy_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuz1=vbuaa_bor_vbuaa +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuyy=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuxx=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuz1=vbuyy_bor_vbuyy +New fragment synthesis vbuz1=vbuyy_bor_vbuyy - sub-option vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - New best, scheduling parent vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - New best, scheduling parent vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - New best, scheduling parent vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - New best, scheduling parent vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - New best, scheduling parent vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - New best, scheduling parent vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuxx=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuyy=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - New best, scheduling parent vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - New best, scheduling parent vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - New best, scheduling parent vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - New best, scheduling parent vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuxx=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuyy=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuaa=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuaa=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - New best, scheduling parent vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - New best, scheduling parent vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuyy=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuxx=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuaa_bor_vbuaa - Successfully synthesized from vbuaa=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuyy=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuxx=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuz1=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuyy_bor_vbuyy - Successfully synthesized from vbuaa=vbuyy_bor_vbuyy +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuaa_bor_vbuaa +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuyy=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuxx=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuz1=vbuxx_bor_vbuxx +Fragment synthesis vbuz1=vbuxx_bor_vbuxx - Successfully synthesized from vbuaa=vbuxx_bor_vbuxx +Found best fragment vbuz1=vbuaa_bor_vbuaa < vbuaa=vbuaa_bor_vbuaa score: 3.0 +Found best fragment vbuaa=_hi_pbuz1 score: 3.5 +Found best fragment vbuxx=_hi_pbuz1 score: 4.5 +Statement [133] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) always clobbers reg byte a +Found best fragment vbuaa_neq_vbuc1_then_la1 score: 4.5 +Statement [135] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) always clobbers reg byte a +Found best fragment vbuxx_neq_0_then_la1 score: 4.5 Statement [5] *((const byte*) PROCPORT_DDR#0) ← (const byte) PROCPORT_DDR_MEMORY_MASK#0 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [6] *((const byte*) PROCPORT#0) ← (const byte) PROCPORT_RAM_IO#0 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [7] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte/signed byte/word/signed word/dword/signed dword) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [8] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte/signed byte/word/signed word/dword/signed dword) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [10] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a Statement [12] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a -Statement [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 main::$9 ] ( main:2 [ main::i#2 main::$9 ] ) always clobbers reg byte a -Statement [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 main::$9 bitmap_plot::x#0 ] ) always clobbers reg byte a -Statement [28] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 ] ) always clobbers reg byte a -Statement [29] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) always clobbers reg byte a -Statement [30] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) always clobbers reg byte a -Statement [31] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) always clobbers reg byte a -Statement [32] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) always clobbers reg byte a reg byte y -Statement [34] (word~) point_init::$0 ← *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$0 ] ) always clobbers reg byte a -Statement [35] *((const word[4]) x_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$0 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) always clobbers reg byte a -Statement [36] (byte~) point_init::$1 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::point_idx#0 point_init::$1 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$1 ] ) always clobbers reg byte a -Statement [37] (word~) point_init::$2 ← ((word)) *((const byte[4]) y_start#0 + (byte~) point_init::$1) [ point_init::point_idx#0 point_init::$2 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$2 ] ) always clobbers reg byte a -Statement [38] (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$3 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$3 ] ) always clobbers reg byte a -Statement [39] *((const word[4]) y_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$3 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) always clobbers reg byte a -Statement [40] (byte~) point_init::$4 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::$4 ] ( main:2::point_init:20 [ main::i#2 point_init::$4 ] ) always clobbers reg byte a -Statement [41] *((const byte[4]) delay#0 + (byte~) point_init::$4) ← (const byte) DELAY#0 [ ] ( main:2::point_init:20 [ main::i#2 ] ) always clobbers reg byte a -Statement [46] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) always clobbers reg byte a reg byte y -Statement [53] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) always clobbers reg byte a -Statement [54] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) always clobbers reg byte a -Statement [57] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) always clobbers reg byte a reg byte y -Statement [73] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) always clobbers reg byte a -Statement [79] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) always clobbers reg byte a -Statement [81] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) always clobbers reg byte a +Found best fragment vbuz1=vbuxx score: 3.0 +Found best fragment vbuz1=vbuxx_ror_1 < vbuz1=vbuaa_ror_1 < vbuaa=vbuaa_ror_1 score: 7.5 +Found best fragment vbuxx=vbuxx_ror_1 < vbuaa=vbuxx_ror_1 < vbuaa=vbuaa_ror_1 score: 8.0 +Found best fragment vbuyy=vbuxx_ror_1 < vbuyy=vbuaa_ror_1 < vbuaa=vbuaa_ror_1 score: 7.5 +Statement [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ) always clobbers reg byte a +Statement [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ) always clobbers reg byte a +Statement [27] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@5 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [29] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 ] ) always clobbers reg byte a +Statement [30] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) always clobbers reg byte a +Statement [31] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) always clobbers reg byte a +Statement [32] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) always clobbers reg byte a +Statement [33] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) always clobbers reg byte a reg byte y +Found best fragment vbuz1=vbuyy_ror_1 < vbuz1=vbuaa_ror_1 < vbuaa=vbuaa_ror_1 score: 7.5 +Found best fragment vbuxx=vbuyy_ror_1 < vbuxx=vbuaa_ror_1 < vbuaa=vbuaa_ror_1 score: 8.0 +Found best fragment vbuyy=vbuyy_ror_1 < vbuaa=vbuyy_ror_1 < vbuaa=vbuaa_ror_1 score: 7.5 +Statement [35] (byte) point_init::point_idx1#0 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ) always clobbers reg byte a +Statement [36] (signed word) point_init::x_diff#1 ← (signed word)*((const word[4]) x_end#0 + (byte) point_init::point_idx#0) - (signed word)*((const word[4]) x_start#0 + (byte) point_init::point_idx#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ) always clobbers reg byte a +Statement [37] (signed word~) point_init::$4 ← ((signed word)) *((const byte[4]) y_end#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ) always clobbers reg byte a +Statement [38] (signed word~) point_init::$5 ← ((signed word)) *((const byte[4]) y_start#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ) always clobbers reg byte a +Statement [39] (signed word) point_init::y_diff#0 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [40] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [41] (word~) point_init::abs16s1_return#6 ← (word)(signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ) always clobbers reg byte a +Statement [43] if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) always clobbers reg byte a +Statement [44] (word~) point_init::abs16s2_return#6 ← (word)(signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ) always clobbers reg byte a +Statement [46] if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [49] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 [ point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [50] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← (byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [51] (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#1 [ point_init::y_diff#0 divr16s::divisor#0 ] ( main:2::point_init:20 [ main::i#2 point_init::y_diff#0 divr16s::divisor#0 ] ) always clobbers reg byte a +Statement [52] (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#0 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) always clobbers reg byte a +Statement [54] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← -(byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) always clobbers reg byte a +Statement [55] (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ) always clobbers reg byte a +Statement [56] (word~) point_init::abs16s2_return#5 ← (word)(signed word) point_init::abs16s2_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ) always clobbers reg byte a +Statement [57] (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ) always clobbers reg byte a +Statement [58] (word~) point_init::abs16s1_return#5 ← (word)(signed word) point_init::abs16s1_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ) always clobbers reg byte a +Statement [60] if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) always clobbers reg byte a +Statement [61] (word~) divr16s::remu#8 ← (word)(signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::remu#8 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#8 ] ) always clobbers reg byte a +Statement [63] if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) always clobbers reg byte a +Statement [64] (word~) divr16s::divisoru#5 ← (word)(signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ) always clobbers reg byte a +Statement [66] (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 [ divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ) always clobbers reg byte a +Statement [67] (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 [ divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ) always clobbers reg byte a +Statement [68] (word) divr16u::rem#3 ← (word) divr16s::remu#3 [ divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) always clobbers reg byte a +Statement [71] (signed word) rem16s#2 ← - (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#2 ] ) always clobbers reg byte a +Statement [74] (signed word~) rem16s#56 ← (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#56 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#56 ] ) always clobbers reg byte a +Statement [75] (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ) always clobbers reg byte a +Statement [76] (byte) divr16s::neg#2 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ) always clobbers reg byte a +Statement [77] (word~) divr16s::divisoru#4 ← (word)(signed word~) divr16s::$11 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ) always clobbers reg byte a +Statement [78] (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::$7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::$7 ] ) always clobbers reg byte a +Statement [79] (word~) divr16s::remu#7 ← (word)(signed word~) divr16s::$7 [ divr16s::divisor#0 divr16s::remu#7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#7 ] ) always clobbers reg byte a +Statement [83] (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ) always clobbers reg byte a +Statement [84] (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ) always clobbers reg byte a +Statement [86] (word) divr16u::rem#1 ← (word) divr16u::rem#0 | (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ) always clobbers reg byte a +Statement [90] if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) always clobbers reg byte a +Statement [92] (word) divr16u::rem#2 ← (word) divr16u::rem#5 - (word) divr16u::divisor#0 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ) always clobbers reg byte a +Statement [100] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) always clobbers reg byte a reg byte y +Statement [107] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) always clobbers reg byte a +Statement [108] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) always clobbers reg byte a +Statement [111] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) always clobbers reg byte a reg byte y +Statement [127] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) always clobbers reg byte a +Statement [133] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) always clobbers reg byte a +Statement [135] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) always clobbers reg byte a Potential registers zp ZP_BYTE:2 [ main::i#2 main::i#1 ] : zp ZP_BYTE:2 , reg byte x , -Potential registers zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] : zp ZP_BYTE:3 , reg byte x , -Potential registers zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] : zp ZP_WORD:4 , -Potential registers zp ZP_BYTE:6 [ screen_fill::x#2 screen_fill::x#1 ] : zp ZP_BYTE:6 , reg byte x , -Potential registers zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] : zp ZP_BYTE:7 , reg byte x , -Potential registers zp ZP_WORD:8 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] : zp ZP_WORD:8 , -Potential registers zp ZP_BYTE:10 [ bitmap_clear::x#2 bitmap_clear::x#1 ] : zp ZP_BYTE:10 , reg byte x , -Potential registers zp ZP_BYTE:11 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] : zp ZP_BYTE:11 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:12 [ bitmap_init::x#2 bitmap_init::x#1 ] : zp ZP_BYTE:12 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:13 [ bitmap_init::y#2 bitmap_init::y#1 ] : zp ZP_BYTE:13 , reg byte x , reg byte y , -Potential registers zp ZP_WORD:14 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] : zp ZP_WORD:14 , -Potential registers zp ZP_BYTE:16 [ point_init::point_idx#0 ] : zp ZP_BYTE:16 , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:17 [ main::$9 ] : zp ZP_BYTE:17 , reg byte x , reg byte y , -Potential registers zp ZP_WORD:18 [ bitmap_plot::x#0 ] : zp ZP_WORD:18 , -Potential registers zp ZP_BYTE:20 [ bitmap_plot::y#0 ] : zp ZP_BYTE:20 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:21 [ bitmap_plot::$3 ] : zp ZP_WORD:21 , -Potential registers zp ZP_WORD:23 [ bitmap_plot::$1 ] : zp ZP_WORD:23 , -Potential registers zp ZP_WORD:25 [ bitmap_plot::plotter#1 ] : zp ZP_WORD:25 , -Potential registers zp ZP_BYTE:27 [ bitmap_plot::$2 ] : zp ZP_BYTE:27 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:28 [ point_init::$0 ] : zp ZP_WORD:28 , -Potential registers zp ZP_BYTE:30 [ point_init::$1 ] : zp ZP_BYTE:30 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:31 [ point_init::$2 ] : zp ZP_WORD:31 , -Potential registers zp ZP_WORD:33 [ point_init::$3 ] : zp ZP_WORD:33 , -Potential registers zp ZP_BYTE:35 [ point_init::$4 ] : zp ZP_BYTE:35 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:36 [ bitmap_clear::$3 ] : zp ZP_WORD:36 , -Potential registers zp ZP_BYTE:38 [ bitmap_init::$3 ] : zp ZP_BYTE:38 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:39 [ bitmap_init::$4 ] : zp ZP_BYTE:39 , reg byte a , reg byte x , reg byte y , reg byte alu , -Potential registers zp ZP_BYTE:40 [ bitmap_init::$5 ] : zp ZP_BYTE:40 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:41 [ bitmap_init::$6 ] : zp ZP_BYTE:41 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:42 [ bitmap_init::$7 ] : zp ZP_BYTE:42 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 ] : zp ZP_WORD:3 , +Potential registers zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 ] : zp ZP_WORD:5 , +Potential registers zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 ] : zp ZP_WORD:7 , +Potential registers zp ZP_WORD:9 [ divr16s::dividendu#3 ] : zp ZP_WORD:9 , +Potential registers zp ZP_WORD:11 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 ] : zp ZP_WORD:11 , +Potential registers zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 ] : zp ZP_WORD:13 , +Potential registers zp ZP_BYTE:15 [ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] : zp ZP_BYTE:15 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:16 [ divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] : zp ZP_WORD:16 , +Potential registers zp ZP_WORD:18 [ divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] : zp ZP_WORD:18 , +Potential registers zp ZP_WORD:20 [ divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] : zp ZP_WORD:20 , +Potential registers zp ZP_BYTE:22 [ divr16u::i#2 divr16u::i#1 ] : zp ZP_BYTE:22 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] : zp ZP_BYTE:23 , reg byte x , +Potential registers zp ZP_WORD:24 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] : zp ZP_WORD:24 , +Potential registers zp ZP_BYTE:26 [ screen_fill::x#2 screen_fill::x#1 ] : zp ZP_BYTE:26 , reg byte x , +Potential registers zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] : zp ZP_BYTE:27 , reg byte x , +Potential registers zp ZP_WORD:28 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] : zp ZP_WORD:28 , +Potential registers zp ZP_BYTE:30 [ bitmap_clear::x#2 bitmap_clear::x#1 ] : zp ZP_BYTE:30 , reg byte x , +Potential registers zp ZP_BYTE:31 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] : zp ZP_BYTE:31 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:32 [ bitmap_init::x#2 bitmap_init::x#1 ] : zp ZP_BYTE:32 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:33 [ bitmap_init::y#2 bitmap_init::y#1 ] : zp ZP_BYTE:33 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:34 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] : zp ZP_WORD:34 , +Potential registers zp ZP_BYTE:36 [ point_init::point_idx#0 ] : zp ZP_BYTE:36 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:37 [ main::$9 ] : zp ZP_BYTE:37 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:38 [ bitmap_plot::x#0 ] : zp ZP_WORD:38 , +Potential registers zp ZP_BYTE:40 [ bitmap_plot::y#0 ] : zp ZP_BYTE:40 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:41 [ bitmap_plot::$3 ] : zp ZP_WORD:41 , +Potential registers zp ZP_WORD:43 [ bitmap_plot::$1 ] : zp ZP_WORD:43 , +Potential registers zp ZP_WORD:45 [ bitmap_plot::plotter#1 ] : zp ZP_WORD:45 , +Potential registers zp ZP_BYTE:47 [ bitmap_plot::$2 ] : zp ZP_BYTE:47 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:48 [ point_init::point_idx1#0 ] : zp ZP_BYTE:48 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:49 [ point_init::x_diff#1 ] : zp ZP_WORD:49 , +Potential registers zp ZP_WORD:51 [ point_init::$4 ] : zp ZP_WORD:51 , +Potential registers zp ZP_WORD:53 [ point_init::$5 ] : zp ZP_WORD:53 , +Potential registers zp ZP_WORD:55 [ point_init::y_diff#0 ] : zp ZP_WORD:55 , +Potential registers zp ZP_WORD:57 [ divr16s::divisor#0 ] : zp ZP_WORD:57 , +Potential registers zp ZP_WORD:59 [ divr16s::rem#0 ] : zp ZP_WORD:59 , +Potential registers zp ZP_WORD:61 [ point_init::abs16s2_$2#0 ] : zp ZP_WORD:61 , +Potential registers zp ZP_WORD:63 [ point_init::abs16s1_$2#0 ] : zp ZP_WORD:63 , +Potential registers zp ZP_WORD:65 [ divr16u::divisor#0 ] : zp ZP_WORD:65 , +Potential registers zp ZP_WORD:67 [ divr16s::$11 ] : zp ZP_WORD:67 , +Potential registers zp ZP_WORD:69 [ divr16s::$7 ] : zp ZP_WORD:69 , +Potential registers zp ZP_BYTE:71 [ divr16u::$1 ] : zp ZP_BYTE:71 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:72 [ divr16u::$2 ] : zp ZP_BYTE:72 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:73 [ bitmap_clear::$3 ] : zp ZP_WORD:73 , +Potential registers zp ZP_BYTE:75 [ bitmap_init::$3 ] : zp ZP_BYTE:75 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:76 [ bitmap_init::$4 ] : zp ZP_BYTE:76 , reg byte a , reg byte x , reg byte y , reg byte alu , +Potential registers zp ZP_BYTE:77 [ bitmap_init::$5 ] : zp ZP_BYTE:77 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:78 [ bitmap_init::$6 ] : zp ZP_BYTE:78 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:79 [ bitmap_init::$7 ] : zp ZP_BYTE:79 , reg byte a , reg byte x , reg byte y , REGISTER UPLIFT SCOPES -Uplift Scope [bitmap_clear] 227.6: zp ZP_WORD:8 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] 218.83: zp ZP_BYTE:10 [ bitmap_clear::x#2 bitmap_clear::x#1 ] 20.17: zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] 2: zp ZP_WORD:36 [ bitmap_clear::$3 ] -Uplift Scope [screen_fill] 221.6: zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] 218.83: zp ZP_BYTE:6 [ screen_fill::x#2 screen_fill::x#1 ] 20.17: zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] -Uplift Scope [bitmap_init] 39.11: zp ZP_WORD:14 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] 34.83: zp ZP_BYTE:11 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] 22.5: zp ZP_BYTE:13 [ bitmap_init::y#2 bitmap_init::y#1 ] 22: zp ZP_BYTE:12 [ bitmap_init::x#2 bitmap_init::x#1 ] 22: zp ZP_BYTE:39 [ bitmap_init::$4 ] 22: zp ZP_BYTE:40 [ bitmap_init::$5 ] 22: zp ZP_BYTE:41 [ bitmap_init::$6 ] 22: zp ZP_BYTE:42 [ bitmap_init::$7 ] 11: zp ZP_BYTE:38 [ bitmap_init::$3 ] -Uplift Scope [main] 24.36: zp ZP_BYTE:2 [ main::i#2 main::i#1 ] 11: zp ZP_BYTE:17 [ main::$9 ] -Uplift Scope [bitmap_plot] 15: zp ZP_BYTE:20 [ bitmap_plot::y#0 ] 4: zp ZP_WORD:23 [ bitmap_plot::$1 ] 4: zp ZP_BYTE:27 [ bitmap_plot::$2 ] 3: zp ZP_WORD:18 [ bitmap_plot::x#0 ] 3: zp ZP_WORD:25 [ bitmap_plot::plotter#1 ] 1: zp ZP_WORD:21 [ bitmap_plot::$3 ] -Uplift Scope [point_init] 4: zp ZP_WORD:28 [ point_init::$0 ] 4: zp ZP_BYTE:30 [ point_init::$1 ] 4: zp ZP_WORD:31 [ point_init::$2 ] 4: zp ZP_WORD:33 [ point_init::$3 ] 4: zp ZP_BYTE:35 [ point_init::$4 ] 3: zp ZP_BYTE:16 [ point_init::point_idx#0 ] -Uplift Scope [] +Uplift Scope [divr16u] 816.87: zp ZP_WORD:16 [ divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] 378.75: zp ZP_WORD:20 [ divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] 202: zp ZP_BYTE:71 [ divr16u::$1 ] 202: zp ZP_BYTE:72 [ divr16u::$2 ] 167.04: zp ZP_BYTE:22 [ divr16u::i#2 divr16u::i#1 ] 69.82: zp ZP_WORD:18 [ divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] 11.33: zp ZP_WORD:65 [ divr16u::divisor#0 ] +Uplift Scope [bitmap_clear] 227.6: zp ZP_WORD:28 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] 218.83: zp ZP_BYTE:30 [ bitmap_clear::x#2 bitmap_clear::x#1 ] 20.17: zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] 2: zp ZP_WORD:73 [ bitmap_clear::$3 ] +Uplift Scope [screen_fill] 221.6: zp ZP_WORD:24 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] 218.83: zp ZP_BYTE:26 [ screen_fill::x#2 screen_fill::x#1 ] 20.17: zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] +Uplift Scope [bitmap_init] 39.11: zp ZP_WORD:34 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] 34.83: zp ZP_BYTE:31 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] 22.5: zp ZP_BYTE:33 [ bitmap_init::y#2 bitmap_init::y#1 ] 22: zp ZP_BYTE:32 [ bitmap_init::x#2 bitmap_init::x#1 ] 22: zp ZP_BYTE:76 [ bitmap_init::$4 ] 22: zp ZP_BYTE:77 [ bitmap_init::$5 ] 22: zp ZP_BYTE:78 [ bitmap_init::$6 ] 22: zp ZP_BYTE:79 [ bitmap_init::$7 ] 11: zp ZP_BYTE:75 [ bitmap_init::$3 ] +Uplift Scope [point_init] 14: zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 ] 9: zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 ] 4: zp ZP_WORD:53 [ point_init::$5 ] 2: zp ZP_BYTE:48 [ point_init::point_idx1#0 ] 2: zp ZP_WORD:51 [ point_init::$4 ] 2: zp ZP_WORD:61 [ point_init::abs16s2_$2#0 ] 2: zp ZP_WORD:63 [ point_init::abs16s1_$2#0 ] 0.94: zp ZP_BYTE:36 [ point_init::point_idx#0 ] 0.56: zp ZP_WORD:49 [ point_init::x_diff#1 ] 0.5: zp ZP_WORD:55 [ point_init::y_diff#0 ] +Uplift Scope [main] 24.36: zp ZP_BYTE:2 [ main::i#2 main::i#1 ] 11: zp ZP_BYTE:37 [ main::$9 ] +Uplift Scope [bitmap_plot] 15: zp ZP_BYTE:40 [ bitmap_plot::y#0 ] 4: zp ZP_WORD:43 [ bitmap_plot::$1 ] 4: zp ZP_BYTE:47 [ bitmap_plot::$2 ] 3: zp ZP_WORD:38 [ bitmap_plot::x#0 ] 3: zp ZP_WORD:45 [ bitmap_plot::plotter#1 ] 1: zp ZP_WORD:41 [ bitmap_plot::$3 ] +Uplift Scope [divr16s] 11: zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 ] 8.67: zp ZP_WORD:11 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 ] 4.2: zp ZP_BYTE:15 [ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] 2: zp ZP_WORD:59 [ divr16s::rem#0 ] 2: zp ZP_WORD:69 [ divr16s::$7 ] 1: zp ZP_WORD:67 [ divr16s::$11 ] 0.67: zp ZP_WORD:57 [ divr16s::divisor#0 ] 0.29: zp ZP_WORD:9 [ divr16s::dividendu#3 ] +Uplift Scope [] 12.39: zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 ] -Uplifting [bitmap_clear] best 12881 combination zp ZP_WORD:8 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] reg byte x [ bitmap_clear::x#2 bitmap_clear::x#1 ] zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] zp ZP_WORD:36 [ bitmap_clear::$3 ] -Uplifting [screen_fill] best 11981 combination zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] reg byte x [ screen_fill::x#2 screen_fill::x#1 ] zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] -Uplifting [bitmap_init] best 11541 combination zp ZP_WORD:14 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] reg byte a [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] reg byte x [ bitmap_init::y#2 bitmap_init::y#1 ] reg byte x [ bitmap_init::x#2 bitmap_init::x#1 ] reg byte a [ bitmap_init::$4 ] zp ZP_BYTE:40 [ bitmap_init::$5 ] zp ZP_BYTE:41 [ bitmap_init::$6 ] zp ZP_BYTE:42 [ bitmap_init::$7 ] zp ZP_BYTE:38 [ bitmap_init::$3 ] +Found best fragment vbuyy_eq_0_then_la1 score: 4.5 +Found best fragment vbuxx=vbuc1 score: 3.5 +New fragment synthesis vbuxx=_inc_vbuxx +New fragment synthesis vbuxx=_inc_vbuxx - Successfully loaded vbuxx=_inc_vbuxx.asm +New fragment synthesis vbuxx=_inc_vbuxx - sub-option vbuaa=_inc_vbuxx +Fragment synthesis vbuxx=_inc_vbuxx - Successfully synthesized from vbuaa=_inc_vbuxx +Found best fragment vbuxx=_inc_vbuxx score: 3.5 +Found best fragment vbuyy=vbuc1 score: 3.0 +New fragment synthesis vbuyy=_inc_vbuyy +New fragment synthesis vbuyy=_inc_vbuyy - Successfully loaded vbuyy=_inc_vbuyy.asm +New fragment synthesis vbuyy=_inc_vbuyy - sub-option vbuaa=_inc_vbuyy +Fragment synthesis vbuyy=_inc_vbuyy - Successfully synthesized from vbuaa=_inc_vbuyy +Found best fragment vbuyy=_inc_vbuyy score: 3.0 +Found best fragment vbuyy_neq_vbuc1_then_la1 score: 4.5 +Uplifting [divr16u] best 29497 combination zp ZP_WORD:16 [ divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] zp ZP_WORD:20 [ divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] reg byte a [ divr16u::$1 ] reg byte a [ divr16u::$2 ] reg byte x [ divr16u::i#2 divr16u::i#1 ] zp ZP_WORD:18 [ divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] zp ZP_WORD:65 [ divr16u::divisor#0 ] +Uplifting [bitmap_clear] best 28597 combination zp ZP_WORD:28 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] reg byte x [ bitmap_clear::x#2 bitmap_clear::x#1 ] zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] zp ZP_WORD:73 [ bitmap_clear::$3 ] +Uplifting [screen_fill] best 27697 combination zp ZP_WORD:24 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] reg byte x [ screen_fill::x#2 screen_fill::x#1 ] zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] +Found best fragment vbuaa=vbuc1 score: 2.5 +Found best fragment vbuaa=vbuaa_ror_1 score: 2.0 +Found best fragment pbuc1_derefidx_vbuz1=vbuxx < pbuc1_derefidx_vbuyy=vbuxx < vbuaa=vbuxx score: 11.5 +Found best fragment pbuc1_derefidx_vbuz1=vbuyy < pbuc1_derefidx_vbuz1=vbuaa < pbuc1_derefidx_vbuyy=vbuaa score: 11.5 +Found best fragment vbuyy_neq_0_then_la1 score: 4.5 +Found best fragment vbuaa=_inc_vbuaa < vbuaa=vbuaa_plus_1 score: 4.5 +Found best fragment pbuc1_derefidx_vbuaa=vbuxx < pbuc1_derefidx_vbuyy=vbuxx < vbuaa=vbuxx score: 10.5 +Found best fragment pbuc1_derefidx_vbuaa=vbuyy < pbuc1_derefidx_vbuxx=vbuyy < vbuaa=vbuyy score: 11.0 +Found best fragment pbuc1_derefidx_vbuxx=vbuaa score: 5.0 +Found best fragment pbuc1_derefidx_vbuxx=vbuyy < vbuaa=vbuyy score: 7.5 +Found best fragment pbuc1_derefidx_vbuyy=vbuaa score: 5.0 +Found best fragment pbuc1_derefidx_vbuyy=vbuxx < vbuaa=vbuxx score: 7.5 +Found best fragment vbuz1=vbuz2_bor_vbuxx < vbuz1=vbuz2_bor_vbuaa < vbuz1=vbuaa_bor_vbuz2 < vbuaa=vbuaa_bor_vbuz1 score: 8.5 +Uplifting [bitmap_init] best 27257 combination zp ZP_WORD:34 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] reg byte a [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] reg byte x [ bitmap_init::y#2 bitmap_init::y#1 ] reg byte x [ bitmap_init::x#2 bitmap_init::x#1 ] reg byte a [ bitmap_init::$4 ] zp ZP_BYTE:77 [ bitmap_init::$5 ] zp ZP_BYTE:78 [ bitmap_init::$6 ] zp ZP_BYTE:79 [ bitmap_init::$7 ] zp ZP_BYTE:75 [ bitmap_init::$3 ] Limited combination testing to 100 combinations of 61440 possible. -Uplifting [main] best 11311 combination reg byte x [ main::i#2 main::i#1 ] reg byte y [ main::$9 ] -Uplifting [bitmap_plot] best 11276 combination reg byte a [ bitmap_plot::y#0 ] zp ZP_WORD:23 [ bitmap_plot::$1 ] reg byte a [ bitmap_plot::$2 ] zp ZP_WORD:18 [ bitmap_plot::x#0 ] zp ZP_WORD:25 [ bitmap_plot::plotter#1 ] zp ZP_WORD:21 [ bitmap_plot::$3 ] -Uplifting [point_init] best 11227 combination zp ZP_WORD:28 [ point_init::$0 ] reg byte a [ point_init::$1 ] zp ZP_WORD:31 [ point_init::$2 ] zp ZP_WORD:33 [ point_init::$3 ] reg byte a [ point_init::$4 ] reg byte x [ point_init::point_idx#0 ] -Uplifting [] best 11227 combination -Attempting to uplift remaining variables inzp ZP_BYTE:40 [ bitmap_init::$5 ] -Uplifting [bitmap_init] best 11167 combination reg byte a [ bitmap_init::$5 ] -Attempting to uplift remaining variables inzp ZP_BYTE:41 [ bitmap_init::$6 ] -Uplifting [bitmap_init] best 11107 combination reg byte a [ bitmap_init::$6 ] -Attempting to uplift remaining variables inzp ZP_BYTE:42 [ bitmap_init::$7 ] -Uplifting [bitmap_init] best 11047 combination reg byte a [ bitmap_init::$7 ] -Attempting to uplift remaining variables inzp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] -Uplifting [screen_fill] best 11047 combination zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] -Uplifting [bitmap_clear] best 11047 combination zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:38 [ bitmap_init::$3 ] -Uplifting [bitmap_init] best 11047 combination zp ZP_BYTE:38 [ bitmap_init::$3 ] -Coalescing zero page register with common assignment [ zp ZP_WORD:8 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] ] with [ zp ZP_WORD:36 [ bitmap_clear::$3 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:21 [ bitmap_plot::$3 ] ] with [ zp ZP_WORD:25 [ bitmap_plot::plotter#1 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:31 [ point_init::$2 ] ] with [ zp ZP_WORD:33 [ point_init::$3 ] ] - score: 1 -Coalescing zero page register [ zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 ] ] with [ zp ZP_BYTE:7 [ bitmap_clear::y#4 bitmap_clear::y#1 ] ] -Coalescing zero page register [ zp ZP_BYTE:3 [ screen_fill::y#4 screen_fill::y#1 bitmap_clear::y#4 bitmap_clear::y#1 ] ] with [ zp ZP_BYTE:38 [ bitmap_init::$3 ] ] -Coalescing zero page register [ zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] ] with [ zp ZP_WORD:8 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 ] ] -Coalescing zero page register [ zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 ] ] with [ zp ZP_WORD:14 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] ] -Coalescing zero page register [ zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] ] with [ zp ZP_WORD:18 [ bitmap_plot::x#0 ] ] -Coalescing zero page register [ zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 bitmap_plot::x#0 ] ] with [ zp ZP_WORD:28 [ point_init::$0 ] ] -Coalescing zero page register [ zp ZP_WORD:4 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 bitmap_plot::x#0 point_init::$0 ] ] with [ zp ZP_WORD:31 [ point_init::$2 point_init::$3 ] ] -Allocated (was zp ZP_BYTE:3) zp ZP_BYTE:2 [ screen_fill::y#4 screen_fill::y#1 bitmap_clear::y#4 bitmap_clear::y#1 bitmap_init::$3 ] -Allocated (was zp ZP_WORD:4) zp ZP_WORD:3 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 bitmap_plot::x#0 point_init::$0 point_init::$2 point_init::$3 ] -Allocated (was zp ZP_WORD:21) zp ZP_WORD:5 [ bitmap_plot::$3 bitmap_plot::plotter#1 ] -Allocated (was zp ZP_WORD:23) zp ZP_WORD:7 [ bitmap_plot::$1 ] +Found best fragment vbuxx=vbuz1 score: 4.5 +Found best fragment vbuyy=vbuz1 score: 4.0 +Uplifting [point_init] best 27210 combination zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 ] zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 ] zp ZP_WORD:53 [ point_init::$5 ] reg byte y [ point_init::point_idx1#0 ] zp ZP_WORD:51 [ point_init::$4 ] zp ZP_WORD:61 [ point_init::abs16s2_$2#0 ] zp ZP_WORD:63 [ point_init::abs16s1_$2#0 ] reg byte x [ point_init::point_idx#0 ] zp ZP_WORD:49 [ point_init::x_diff#1 ] zp ZP_WORD:55 [ point_init::y_diff#0 ] +Found best fragment vbuz1=pbuc1_derefidx_vbuxx < vbuz1=vbuaa score: 8.0 +Found best fragment vbuz1=pbuc1_derefidx_vbuyy < vbuz1=vbuaa score: 8.0 +Uplifting [main] best 27170 combination zp ZP_BYTE:2 [ main::i#2 main::i#1 ] reg byte x [ main::$9 ] +Found best fragment vbuaa=pbuc1_derefidx_vbuxx score: 5.0 +Found best fragment vbuxx=pbuc1_derefidx_vbuxx < vbuxx=vbuaa score: 8.5 +Found best fragment vbuyy=pbuc1_derefidx_vbuxx score: 5.5 +Uplifting [bitmap_plot] best 27133 combination reg byte y [ bitmap_plot::y#0 ] zp ZP_WORD:43 [ bitmap_plot::$1 ] reg byte a [ bitmap_plot::$2 ] zp ZP_WORD:38 [ bitmap_plot::x#0 ] zp ZP_WORD:45 [ bitmap_plot::plotter#1 ] zp ZP_WORD:41 [ bitmap_plot::$3 ] +Uplifting [divr16s] best 27124 combination zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 ] zp ZP_WORD:11 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 ] reg byte y [ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] zp ZP_WORD:59 [ divr16s::rem#0 ] zp ZP_WORD:69 [ divr16s::$7 ] zp ZP_WORD:67 [ divr16s::$11 ] zp ZP_WORD:57 [ divr16s::divisor#0 ] zp ZP_WORD:9 [ divr16s::dividendu#3 ] +Uplifting [] best 27124 combination zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 ] +Attempting to uplift remaining variables inzp ZP_BYTE:2 [ main::i#2 main::i#1 ] +Uplifting [main] best 27124 combination zp ZP_BYTE:2 [ main::i#2 main::i#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:77 [ bitmap_init::$5 ] +Found best fragment vbuaa=vbuz1_bor_vbuaa < vbuaa=vbuaa_bor_vbuz1 score: 3.5 +Found best fragment vbuyy=vbuz1_bor_vbuaa < vbuyy=vbuaa_bor_vbuz1 < vbuaa=vbuaa_bor_vbuz1 score: 6.5 +Uplifting [bitmap_init] best 27064 combination reg byte a [ bitmap_init::$5 ] +Attempting to uplift remaining variables inzp ZP_BYTE:78 [ bitmap_init::$6 ] +Found best fragment vbuyy=_hi_pbuz1 score: 4.0 +Uplifting [bitmap_init] best 27004 combination reg byte a [ bitmap_init::$6 ] +Attempting to uplift remaining variables inzp ZP_BYTE:79 [ bitmap_init::$7 ] +Uplifting [bitmap_init] best 26944 combination reg byte a [ bitmap_init::$7 ] +Attempting to uplift remaining variables inzp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] +Uplifting [screen_fill] best 26944 combination zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] +Uplifting [bitmap_clear] best 26944 combination zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:75 [ bitmap_init::$3 ] +Found best fragment vbuaa=vbuyy_bor_vbuaa < vbuaa=vbuaa_bor_vbuyy score: 6.5 +Uplifting [bitmap_init] best 26944 combination zp ZP_BYTE:75 [ bitmap_init::$3 ] +Coalescing zero page register with common assignment [ zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 ] ] with [ zp ZP_WORD:63 [ point_init::abs16s1_$2#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 ] ] with [ zp ZP_WORD:61 [ point_init::abs16s2_$2#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:9 [ divr16s::dividendu#3 ] ] with [ zp ZP_WORD:18 [ divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:11 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 ] ] with [ zp ZP_WORD:16 [ divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:11 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 ] ] with [ zp ZP_WORD:59 [ divr16s::rem#0 ] ] - score: 1 +New fragment synthesis vwsz1=_neg_vwsz1 +New fragment synthesis vwsz1=_neg_vwsz1 - sub-option vwsz1=_neg_vwsz2 +Fragment synthesis vwsz1=_neg_vwsz1 - Successfully synthesized from vwsz1=_neg_vwsz2 +Found best fragment vwsz1=_neg_vwsz1 < vwsz1=_neg_vwsz2 score: 22.5 +Coalescing zero page register with common assignment [ zp ZP_WORD:11 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 divr16s::rem#0 ] ] with [ zp ZP_WORD:69 [ divr16s::$7 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 ] ] with [ zp ZP_WORD:57 [ divr16s::divisor#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 divr16s::divisor#0 ] ] with [ zp ZP_WORD:65 [ divr16u::divisor#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 divr16s::divisor#0 divr16u::divisor#0 ] ] with [ zp ZP_WORD:67 [ divr16s::$11 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:28 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 ] ] with [ zp ZP_WORD:73 [ bitmap_clear::$3 ] ] - score: 1 +New fragment synthesis pbuz1=pbuz1_plus_vwuz2 +New fragment synthesis pbuz1=pbuz1_plus_vwuz2 - sub-option pbuz1=vwuz2_plus_pbuz1 +New fragment synthesis pbuz1=pbuz1_plus_vwuz2 - sub-option pbuz1=vwuz1_plus_vwuz2 +New fragment synthesis pbuz1=pbuz1_plus_vwuz2 - sub-option vwuz1=pbuz1_plus_vwuz2 +New fragment synthesis pbuz1=pbuz1_plus_vwuz2 - sub-option pbuz1=vwuz1_plus_vwuz2 +New fragment synthesis pbuz1=vwuz2_plus_pbuz1 +New fragment synthesis pbuz1=vwuz2_plus_pbuz1 - sub-option pbuz1=pbuz1_plus_vwuz2 +New fragment synthesis pbuz1=vwuz2_plus_pbuz1 - sub-option pbuz1=vwuz2_plus_vwuz1 +New fragment synthesis pbuz1=vwuz2_plus_pbuz1 - sub-option vwuz1=vwuz2_plus_pbuz1 +New fragment synthesis pbuz1=vwuz2_plus_vwuz1 +New fragment synthesis pbuz1=vwuz2_plus_vwuz1 - sub-option pbuz1=vwuz1_plus_vwuz2 +New fragment synthesis pbuz1=vwuz2_plus_vwuz1 - sub-option vwuz1=vwuz2_plus_vwuz1 +New fragment synthesis pbuz1=vwuz1_plus_vwuz2 +New fragment synthesis pbuz1=vwuz1_plus_vwuz2 - sub-option pbuz1=vwuz2_plus_vwuz1 +New fragment synthesis pbuz1=vwuz1_plus_vwuz2 - sub-option vwuz1=vwuz1_plus_vwuz2 +New fragment synthesis vwuz1=vwuz1_plus_vwuz2 +New fragment synthesis vwuz1=vwuz1_plus_vwuz2 - Successfully loaded vwuz1=vwuz1_plus_vwuz2.asm +New fragment synthesis vwuz1=vwuz1_plus_vwuz2 - sub-option vwuz1=vwuz2_plus_vwuz1 +New fragment synthesis vwuz1=vwuz2_plus_vwuz1 +New fragment synthesis vwuz1=vwuz2_plus_vwuz1 - sub-option vwuz1=vwuz1_plus_vwuz2 +New fragment synthesis vwuz1=vwuz2_plus_pbuz1 +New fragment synthesis vwuz1=vwuz2_plus_pbuz1 - sub-option vwuz1=pbuz1_plus_vwuz2 +New fragment synthesis vwuz1=vwuz2_plus_pbuz1 - sub-option vwuz1=vwuz2_plus_vwuz1 +New fragment synthesis vwuz1=pbuz1_plus_vwuz2 +New fragment synthesis vwuz1=pbuz1_plus_vwuz2 - sub-option vwuz1=vwuz2_plus_pbuz1 +New fragment synthesis vwuz1=pbuz1_plus_vwuz2 - sub-option vwuz1=vwuz1_plus_vwuz2 +New fragment synthesis vwuz1=pbuz1_plus_vwuz2 - sub-option vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_plus_pbuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz2_plus_vwuz1 - No file or synthesis results! +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent vwuz1=vwuz2_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent pbuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - New best, scheduling parent vwuz1=vwuz2_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - New best, scheduling parent pbuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_pbuz1 - Successfully synthesized from vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_pbuz1 - New best, scheduling parent vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_pbuz1 - New best, scheduling parent pbuz1=vwuz2_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz2_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz1 - New best, scheduling parent vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz1 - New best, scheduling parent pbuz1=vwuz2_plus_vwuz1 +Fragment synthesis vwuz1=vwuz2_plus_vwuz1 - New best, scheduling parent vwuz1=vwuz2_plus_pbuz1 +Fragment synthesis vwuz1=vwuz2_plus_pbuz1 - Successfully synthesized from vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_pbuz1 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent vwuz1=vwuz2_plus_vwuz1 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent pbuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz1_plus_vwuz2 - New best, scheduling parent vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz2_plus_pbuz1 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis vwuz1=vwuz2_plus_vwuz1 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz1_plus_vwuz2 - New best, scheduling parent pbuz1=vwuz2_plus_vwuz1 +Fragment synthesis pbuz1=vwuz1_plus_vwuz2 - New best, scheduling parent pbuz1=pbuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz1_plus_vwuz2 - New best, scheduling parent pbuz1=pbuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz2_plus_vwuz1 - Successfully synthesized from pbuz1=vwuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz2_plus_vwuz1 - Successfully synthesized from vwuz1=vwuz2_plus_vwuz1 +Fragment synthesis pbuz1=vwuz2_plus_vwuz1 - New best, scheduling parent pbuz1=vwuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz2_plus_vwuz1 - New best, scheduling parent pbuz1=vwuz2_plus_pbuz1 +Fragment synthesis pbuz1=vwuz1_plus_vwuz2 - Successfully synthesized from pbuz1=vwuz2_plus_vwuz1 +Fragment synthesis pbuz1=vwuz1_plus_vwuz2 - Successfully synthesized from vwuz1=vwuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz2_plus_pbuz1 - Successfully synthesized from pbuz1=vwuz2_plus_vwuz1 +Fragment synthesis pbuz1=vwuz2_plus_pbuz1 - Successfully synthesized from vwuz1=vwuz2_plus_pbuz1 +Fragment synthesis pbuz1=vwuz2_plus_pbuz1 - New best, scheduling parent pbuz1=pbuz1_plus_vwuz2 +Fragment synthesis pbuz1=pbuz1_plus_vwuz2 - Successfully synthesized from pbuz1=vwuz2_plus_pbuz1 +Fragment synthesis pbuz1=pbuz1_plus_vwuz2 - Successfully synthesized from pbuz1=vwuz1_plus_vwuz2 +Fragment synthesis pbuz1=pbuz1_plus_vwuz2 - Successfully synthesized from vwuz1=pbuz1_plus_vwuz2 +Fragment synthesis pbuz1=pbuz1_plus_vwuz2 - Successfully synthesized from pbuz1=vwuz1_plus_vwuz2 +Fragment synthesis pbuz1=pbuz1_plus_vwuz2 - New best, scheduling parent pbuz1=vwuz2_plus_pbuz1 +Fragment synthesis pbuz1=vwuz2_plus_pbuz1 - Successfully synthesized from pbuz1=pbuz1_plus_vwuz2 +Fragment synthesis pbuz1=vwuz2_plus_pbuz1 - Successfully synthesized from pbuz1=vwuz2_plus_vwuz1 +Fragment synthesis pbuz1=vwuz2_plus_pbuz1 - Successfully synthesized from vwuz1=vwuz2_plus_pbuz1 +Found best fragment pbuz1=pbuz1_plus_vwuz2 < pbuz1=vwuz2_plus_pbuz1 < pbuz1=vwuz2_plus_vwuz1 < pbuz1=vwuz1_plus_vwuz2 < vwuz1=vwuz1_plus_vwuz2 < vwuz1=vwuz2_plus_vwuz1 < vwuz1=vwuz1_plus_vwuz2 score: 20.5 +Coalescing zero page register with common assignment [ zp ZP_WORD:41 [ bitmap_plot::$3 ] ] with [ zp ZP_WORD:45 [ bitmap_plot::plotter#1 ] ] - score: 1 +New fragment synthesis vwsz1=vwsz1_minus_vwsz2 +New fragment synthesis vwsz1=vwsz1_minus_vwsz2 - sub-option vwuz1=vwuz1_minus_vwuz2 +Fragment synthesis vwsz1=vwsz1_minus_vwsz2 - Successfully synthesized from vwuz1=vwuz1_minus_vwuz2 +Found best fragment vwsz1=vwsz1_minus_vwsz2 < vwuz1=vwuz1_minus_vwuz2 score: 20.5 +Coalescing zero page register with common assignment [ zp ZP_WORD:51 [ point_init::$4 ] ] with [ zp ZP_WORD:55 [ point_init::y_diff#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 divr16s::divisor#0 divr16u::divisor#0 divr16s::$11 ] ] with [ zp ZP_WORD:49 [ point_init::x_diff#1 ] ] - score: 1 +Coalescing zero page register [ zp ZP_BYTE:2 [ main::i#2 main::i#1 ] ] with [ zp ZP_BYTE:23 [ screen_fill::y#4 screen_fill::y#1 ] ] +Coalescing zero page register [ zp ZP_BYTE:2 [ main::i#2 main::i#1 screen_fill::y#4 screen_fill::y#1 ] ] with [ zp ZP_BYTE:27 [ bitmap_clear::y#4 bitmap_clear::y#1 ] ] +Coalescing zero page register [ zp ZP_BYTE:2 [ main::i#2 main::i#1 screen_fill::y#4 screen_fill::y#1 bitmap_clear::y#4 bitmap_clear::y#1 ] ] with [ zp ZP_BYTE:75 [ bitmap_init::$3 ] ] +Coalescing zero page register [ zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 ] ] with [ zp ZP_WORD:9 [ divr16s::dividendu#3 divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] ] +Coalescing zero page register [ zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 divr16s::dividendu#3 divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 ] ] with [ zp ZP_WORD:24 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] ] +Coalescing zero page register [ zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 divr16s::dividendu#3 divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 ] ] with [ zp ZP_WORD:28 [ bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 ] ] +Coalescing zero page register [ zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 divr16s::dividendu#3 divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 ] ] with [ zp ZP_WORD:34 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] ] +Coalescing zero page register [ zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 point_init::abs16s1_$2#0 ] ] with [ zp ZP_WORD:20 [ divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] ] +Coalescing zero page register [ zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 point_init::abs16s1_$2#0 divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 ] ] with [ zp ZP_WORD:38 [ bitmap_plot::x#0 ] ] +Coalescing zero page register [ zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 point_init::abs16s1_$2#0 divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 bitmap_plot::x#0 ] ] with [ zp ZP_WORD:53 [ point_init::$5 ] ] +Coalescing zero page register [ zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 point_init::abs16s2_$2#0 ] ] with [ zp ZP_WORD:41 [ bitmap_plot::$3 bitmap_plot::plotter#1 ] ] +Coalescing zero page register [ zp ZP_WORD:13 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 divr16s::divisor#0 divr16u::divisor#0 divr16s::$11 point_init::x_diff#1 ] ] with [ zp ZP_WORD:43 [ bitmap_plot::$1 ] ] +Allocated (was zp ZP_WORD:11) zp ZP_WORD:9 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 divr16s::rem#0 divr16s::$7 ] +Allocated (was zp ZP_WORD:13) zp ZP_WORD:11 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 divr16s::divisor#0 divr16u::divisor#0 divr16s::$11 point_init::x_diff#1 bitmap_plot::$1 ] +Allocated (was zp ZP_WORD:51) zp ZP_WORD:13 [ point_init::$4 point_init::y_diff#0 ] ASSEMBLER BEFORE OPTIMIZATION //SEG0 Basic Upstart @@ -3000,6 +21512,7 @@ ASSEMBLER BEFORE OPTIMIZATION .const PROCPORT_DDR_MEMORY_MASK = 7 .label PROCPORT = 1 .const PROCPORT_RAM_IO = $35 + .label RASTER = $d012 .label BORDERCOL = $d020 .label D011 = $d011 .const VIC_BMM = $20 @@ -3010,18 +21523,19 @@ ASSEMBLER BEFORE OPTIMIZATION .label CIA2_PORT_A_DDR = $dd02 .label BITMAP = $a000 .label SCREEN = $8800 - .const DELAY = 8 + .label rem16s = 3 + .label rem16u = 9 //SEG2 @begin bbegin: -//SEG3 [1] phi from @begin to @9 [phi:@begin->@9] -b9_from_bbegin: - jmp b9 -//SEG4 @9 -b9: +//SEG3 [1] phi from @begin to @18 [phi:@begin->@18] +b18_from_bbegin: + jmp b18 +//SEG4 @18 +b18: //SEG5 [2] call main [ ] ( ) jsr main -//SEG6 [3] phi from @9 to @end [phi:@9->@end] -bend_from_b9: +//SEG6 [3] phi from @18 to @end [phi:@18->@end] +bend_from_b18: jmp bend //SEG7 @end bend: @@ -3029,6 +21543,7 @@ bend: main: { .const vicSelectGfxBank1_toDd001_return = 3^(>SCREEN)>>6 .const toD0181_return = (>(SCREEN&$3fff)<<2)|(>BITMAP)>>2&$f + .label i = 2 //SEG9 asm { sei } sei //SEG10 [5] *((const byte*) PROCPORT_DDR#0) ← (const byte) PROCPORT_DDR_MEMORY_MASK#0 [ ] ( main:2 [ ] ) -- _deref_pbuc1=vbuc2 @@ -3062,99 +21577,122 @@ main: { jmp toD0181 //SEG20 main::toD0181 toD0181: - jmp b10 - //SEG21 main::@10 - b10: + jmp b16 + //SEG21 main::@16 + b16: //SEG22 [12] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) -- _deref_pbuc1=vbuc2 lda #toD0181_return sta D018 //SEG23 [13] call bitmap_init [ ] ( main:2 [ ] ) - //SEG24 [64] phi from main::@10 to bitmap_init [phi:main::@10->bitmap_init] - bitmap_init_from_b10: + //SEG24 [118] phi from main::@16 to bitmap_init [phi:main::@16->bitmap_init] + bitmap_init_from_b16: jsr bitmap_init - //SEG25 [14] phi from main::@10 to main::@11 [phi:main::@10->main::@11] - b11_from_b10: - jmp b11 - //SEG26 main::@11 - b11: + //SEG25 [14] phi from main::@16 to main::@17 [phi:main::@16->main::@17] + b17_from_b16: + jmp b17 + //SEG26 main::@17 + b17: //SEG27 [15] call bitmap_clear [ ] ( main:2 [ ] ) jsr bitmap_clear - //SEG28 [16] phi from main::@11 to main::@12 [phi:main::@11->main::@12] - b12_from_b11: - jmp b12 - //SEG29 main::@12 - b12: + //SEG28 [16] phi from main::@17 to main::@18 [phi:main::@17->main::@18] + b18_from_b17: + jmp b18 + //SEG29 main::@18 + b18: //SEG30 [17] call screen_fill [ ] ( main:2 [ ] ) - //SEG31 [43] phi from main::@12 to screen_fill [phi:main::@12->screen_fill] - screen_fill_from_b12: + //SEG31 [97] phi from main::@18 to screen_fill [phi:main::@18->screen_fill] + screen_fill_from_b18: jsr screen_fill - //SEG32 [18] phi from main::@12 to main::@1 [phi:main::@12->main::@1] - b1_from_b12: - //SEG33 [18] phi (byte) main::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@12->main::@1#0] -- vbuxx=vbuc1 - ldx #0 + //SEG32 [18] phi from main::@18 to main::@1 [phi:main::@18->main::@1] + b1_from_b18: + //SEG33 [18] phi (signed word) rem16s#15 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#0] -- vwsz1=vbuc1 + lda #<0 + sta rem16s + lda #>0 + sta rem16s+1 + //SEG34 [18] phi (word) rem16u#21 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#1] -- vwuz1=vbuc1 + lda #<0 + sta rem16u + lda #>0 + sta rem16u+1 + //SEG35 [18] phi (byte) main::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#2] -- vbuz1=vbuc1 + lda #0 + sta i jmp b1 - //SEG34 [18] phi from main::@15 to main::@1 [phi:main::@15->main::@1] - b1_from_b15: - //SEG35 [18] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@15->main::@1#0] -- register_copy + //SEG36 [18] phi from main::@21 to main::@1 [phi:main::@21->main::@1] + b1_from_b21: + //SEG37 [18] phi (signed word) rem16s#15 = (signed word) rem16s#13 [phi:main::@21->main::@1#0] -- register_copy + //SEG38 [18] phi (word) rem16u#21 = (word) rem16u#18 [phi:main::@21->main::@1#1] -- register_copy + //SEG39 [18] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@21->main::@1#2] -- register_copy jmp b1 - //SEG36 main::@1 + //SEG40 main::@1 b1: - //SEG37 [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 point_init::point_idx#0 ] ( main:2 [ main::i#2 point_init::point_idx#0 ] ) - // (byte) point_init::point_idx#0 = (byte) main::i#2 // register copy reg byte x - //SEG38 [20] call point_init [ main::i#2 ] ( main:2 [ main::i#2 ] ) + //SEG41 [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ) -- vbuxx=vbuz1 + ldx i + //SEG42 [20] call point_init [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) jsr point_init - jmp b14 - //SEG39 main::@14 - b14: - //SEG40 [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 main::$9 ] ( main:2 [ main::i#2 main::$9 ] ) -- vbuyy=vbuxx_ror_1 - txa + jmp b20 + //SEG43 main::@20 + b20: + //SEG44 [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ) -- vbuxx=vbuz1_ror_1 + lda i lsr - tay - //SEG41 [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 main::$9 bitmap_plot::x#0 ] ) -- vwuz1=pwuc1_derefidx_vbuxx - lda x_start,x + tax + //SEG45 [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ) -- vwuz1=pwuc1_derefidx_vbuz2 + ldy i + lda x_start,y sta bitmap_plot.x - lda x_start+1,x + lda x_start+1,y sta bitmap_plot.x+1 - //SEG42 [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ) -- vbuaa=pbuc1_derefidx_vbuyy - lda y_start,y - //SEG43 [24] call bitmap_plot [ main::i#2 ] ( main:2 [ main::i#2 ] ) + //SEG46 [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ) -- vbuyy=pbuc1_derefidx_vbuxx + ldy y_start,x + //SEG47 [24] call bitmap_plot [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) jsr bitmap_plot - jmp b15 - //SEG44 main::@15 - b15: - //SEG45 [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 ] ( main:2 [ main::i#1 ] ) -- vbuxx=vbuxx_plus_2 - inx - inx - //SEG46 [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 ] ( main:2 [ main::i#1 ] ) -- vbuxx_neq_vbuc1_then_la1 - cpx #8 - bne b1_from_b15 - jmp b3 - //SEG47 main::@3 - b3: - //SEG48 [27] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) -- _deref_pbuc1=_inc__deref_pbuc1 + jmp b21 + //SEG48 main::@21 + b21: + //SEG49 [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) -- vbuz1=vbuz1_plus_2 + lda i + clc + adc #2 + sta i + //SEG50 [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) -- vbuz1_neq_vbuc1_then_la1 + lda i + cmp #8 + bne b1_from_b21 + jmp b5 + //SEG51 main::@5 + b5: + //SEG52 [27] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@5 [ ] ( main:2 [ ] ) -- _deref_pbuc1_neq_vbuc2_then_la1 + lda RASTER + cmp #$ff + bne b5 + jmp b7 + //SEG53 main::@7 + b7: + //SEG54 [28] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) -- _deref_pbuc1=_inc__deref_pbuc1 inc BORDERCOL - jmp b3 + jmp b5 } -//SEG49 bitmap_plot +//SEG55 bitmap_plot bitmap_plot: { - .label _1 = 7 - .label x = 3 - .label plotter = 5 - .label _3 = 5 - //SEG50 [28] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 ] ) -- vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - tay + .label _1 = $b + .label x = 5 + .label plotter = 7 + .label _3 = 7 + //SEG56 [29] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 ] ) -- vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy lda bitmap_plot_yhi,y sta _3+1 lda bitmap_plot_ylo,y sta _3 - //SEG51 [29] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) -- vwuz1=vwuz2_band_vwuc1 + //SEG57 [30] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) -- vwuz1=vwuz2_band_vwuc1 lda x and #<$fff8 sta _1 lda x+1 and #>$fff8 sta _1+1 - //SEG52 [30] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) -- pbuz1=pbuz1_plus_vwuz2 + //SEG58 [31] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) -- pbuz1=pbuz1_plus_vwuz2 lda plotter clc adc _1 @@ -3162,9 +21700,9 @@ bitmap_plot: { lda plotter+1 adc _1+1 sta plotter+1 - //SEG53 [31] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) -- vbuaa=_lo_vwuz1 + //SEG59 [32] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) -- vbuaa=_lo_vwuz1 lda x - //SEG54 [32] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa + //SEG60 [33] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa tay lda bitmap_plot_bit,y ldy #0 @@ -3172,281 +21710,632 @@ bitmap_plot: { ldy #0 sta (plotter),y jmp breturn - //SEG55 bitmap_plot::@return + //SEG61 bitmap_plot::@return breturn: - //SEG56 [33] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) + //SEG62 [34] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) rts } -//SEG57 point_init +//SEG63 point_init point_init: { - .label _0 = 3 - .label _2 = 3 - .label _3 = 3 - //SEG58 [34] (word~) point_init::$0 ← *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$0 ] ) -- vwuz1=pwuc1_derefidx_vbuxx_rol_4 - lda x_start,x - sta _0 - lda x_start+1,x - sta _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - //SEG59 [35] *((const word[4]) x_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$0 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) -- pwuc1_derefidx_vbuxx=vwuz1 - lda _0 - sta x_cur,x - lda _0+1 - sta x_cur+1,x - //SEG60 [36] (byte~) point_init::$1 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::point_idx#0 point_init::$1 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$1 ] ) -- vbuaa=vbuxx_ror_1 + .label _4 = $d + .label _5 = 5 + .label y_diff = $d + .label abs16s1__2 = 5 + .label abs16s1_return = 5 + .label abs16s2__2 = 7 + .label abs16s2_return = 7 + .label x_diff = $b + //SEG64 [35] (byte) point_init::point_idx1#0 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ) -- vbuyy=vbuxx_ror_1 txa lsr - //SEG61 [37] (word~) point_init::$2 ← ((word)) *((const byte[4]) y_start#0 + (byte~) point_init::$1) [ point_init::point_idx#0 point_init::$2 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$2 ] ) -- vwuz1=_word_pbuc1_derefidx_vbuaa tay - lda y_start,y - sta _2 + //SEG65 [36] (signed word) point_init::x_diff#1 ← (signed word)*((const word[4]) x_end#0 + (byte) point_init::point_idx#0) - (signed word)*((const word[4]) x_start#0 + (byte) point_init::point_idx#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ) -- vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx + sec + lda x_end,x + sbc x_start,x + sta x_diff + lda x_end+1,x + sbc x_start+1,x + sta x_diff+1 + //SEG66 [37] (signed word~) point_init::$4 ← ((signed word)) *((const byte[4]) y_end#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ) -- vwsz1=_sword_pbuc1_derefidx_vbuyy + lda y_end,y + sta _4 lda #0 - sta _2+1 - //SEG62 [38] (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$3 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$3 ] ) -- vwuz1=vwuz1_rol_4 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - //SEG63 [39] *((const word[4]) y_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$3 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) -- pwuc1_derefidx_vbuxx=vwuz1 - lda _3 - sta y_cur,x - lda _3+1 - sta y_cur+1,x - //SEG64 [40] (byte~) point_init::$4 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::$4 ] ( main:2::point_init:20 [ main::i#2 point_init::$4 ] ) -- vbuaa=vbuxx_ror_1 - txa - lsr - //SEG65 [41] *((const byte[4]) delay#0 + (byte~) point_init::$4) ← (const byte) DELAY#0 [ ] ( main:2::point_init:20 [ main::i#2 ] ) -- pbuc1_derefidx_vbuaa=vbuc2 - tay - lda #DELAY - sta delay,y + sta _4+1 + //SEG67 [38] (signed word~) point_init::$5 ← ((signed word)) *((const byte[4]) y_start#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ) -- vwsz1=_sword_pbuc1_derefidx_vbuyy + lda y_start,y + sta _5 + lda #0 + sta _5+1 + //SEG68 [39] (signed word) point_init::y_diff#0 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1=vwsz1_minus_vwsz2 + lda y_diff + sec + sbc _5 + sta y_diff + lda y_diff+1 + sbc _5+1 + sta y_diff+1 + jmp abs16s1 + //SEG69 point_init::abs16s1 + abs16s1: + //SEG70 [40] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1_lt_0_then_la1 + lda x_diff+1 + bmi abs16s1_b1 + jmp b12 + //SEG71 point_init::@12 + b12: + //SEG72 [41] (word~) point_init::abs16s1_return#6 ← (word)(signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ) -- vwuz1=vwuz2 + lda x_diff + sta abs16s1_return + lda x_diff+1 + sta abs16s1_return+1 + //SEG73 [42] phi from point_init::@12 point_init::abs16s1_@1 to point_init::abs16s1_@return [phi:point_init::@12/point_init::abs16s1_@1->point_init::abs16s1_@return] + abs16s1_breturn_from_b12: + abs16s1_breturn_from_abs16s1_b1: + //SEG74 [42] phi (word) point_init::abs16s1_return#2 = (word~) point_init::abs16s1_return#6 [phi:point_init::@12/point_init::abs16s1_@1->point_init::abs16s1_@return#0] -- register_copy + jmp abs16s1_breturn + //SEG75 point_init::abs16s1_@return + abs16s1_breturn: + jmp abs16s2 + //SEG76 point_init::abs16s2 + abs16s2: + //SEG77 [43] if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) -- vwsz1_lt_0_then_la1 + lda y_diff+1 + bmi abs16s2_b1 + jmp b13 + //SEG78 point_init::@13 + b13: + //SEG79 [44] (word~) point_init::abs16s2_return#6 ← (word)(signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ) -- vwuz1=vwuz2 + lda y_diff + sta abs16s2_return + lda y_diff+1 + sta abs16s2_return+1 + //SEG80 [45] phi from point_init::@13 point_init::abs16s2_@1 to point_init::abs16s2_@return [phi:point_init::@13/point_init::abs16s2_@1->point_init::abs16s2_@return] + abs16s2_breturn_from_b13: + abs16s2_breturn_from_abs16s2_b1: + //SEG81 [45] phi (word) point_init::abs16s2_return#2 = (word~) point_init::abs16s2_return#6 [phi:point_init::@13/point_init::abs16s2_@1->point_init::abs16s2_@return#0] -- register_copy + jmp abs16s2_breturn + //SEG82 point_init::abs16s2_@return + abs16s2_breturn: + jmp b10 + //SEG83 point_init::@10 + b10: + //SEG84 [46] if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwuz1_gt_vwuz2_then_la1 + lda abs16s1_return + cmp abs16s2_return + lda abs16s1_return+1 + sbc abs16s2_return+1 + bvc !+ + eor #$80 + !: + bpl b1 + //SEG85 [47] phi from point_init::@10 point_init::@4 to point_init::@return [phi:point_init::@10/point_init::@4->point_init::@return] + breturn_from_b10: + breturn_from_b4: + //SEG86 [47] phi (signed word) rem16s#13 = (signed word) rem16s#15 [phi:point_init::@10/point_init::@4->point_init::@return#0] -- register_copy + //SEG87 [47] phi (word) rem16u#18 = (word) rem16u#21 [phi:point_init::@10/point_init::@4->point_init::@return#1] -- register_copy jmp breturn - //SEG66 point_init::@return + //SEG88 point_init::@return breturn: - //SEG67 [42] return [ ] ( main:2::point_init:20 [ main::i#2 ] ) + //SEG89 [48] return [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) + rts + //SEG90 point_init::@1 + b1: + //SEG91 [49] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 [ point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1_lt_0_then_la1 + lda x_diff+1 + bmi b3 + jmp b7 + //SEG92 point_init::@7 + b7: + //SEG93 [50] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← (byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) -- pbsc1_derefidx_vbuxx=vbuc2 + lda #$10 + sta x_add,x + jmp b4 + //SEG94 point_init::@4 + b4: + //SEG95 [51] (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#1 [ point_init::y_diff#0 divr16s::divisor#0 ] ( main:2::point_init:20 [ main::i#2 point_init::y_diff#0 divr16s::divisor#0 ] ) + // (signed word) divr16s::divisor#0 = (signed word) point_init::x_diff#1 // register copy zp ZP_WORD:11 + //SEG96 [52] (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#0 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) -- vwsz1=vwsz2 + lda y_diff + sta divr16s.rem + lda y_diff+1 + sta divr16s.rem+1 + //SEG97 [53] call divr16s [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + //SEG98 [59] phi from point_init::@4 to divr16s [phi:point_init::@4->divr16s] + divr16s_from_b4: + jsr divr16s + jmp breturn_from_b4 + //SEG99 point_init::@3 + b3: + //SEG100 [54] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← -(byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) -- pbsc1_derefidx_vbuxx=vbsc2 + lda #-$10 + sta x_add,x + jmp b4 + //SEG101 point_init::abs16s2_@1 + abs16s2_b1: + //SEG102 [55] (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ) -- vwsz1=_neg_vwsz2 + sec + lda y_diff + eor #$ff + adc #0 + sta abs16s2__2 + lda y_diff+1 + eor #$ff + adc #0 + sta abs16s2__2+1 + //SEG103 [56] (word~) point_init::abs16s2_return#5 ← (word)(signed word) point_init::abs16s2_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ) + // (word~) point_init::abs16s2_return#5 = (word)(signed word) point_init::abs16s2_$2#0 // register copy zp ZP_WORD:7 + jmp abs16s2_breturn_from_abs16s2_b1 + //SEG104 point_init::abs16s1_@1 + abs16s1_b1: + //SEG105 [57] (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ) -- vwsz1=_neg_vwsz2 + sec + lda x_diff + eor #$ff + adc #0 + sta abs16s1__2 + lda x_diff+1 + eor #$ff + adc #0 + sta abs16s1__2+1 + //SEG106 [58] (word~) point_init::abs16s1_return#5 ← (word)(signed word) point_init::abs16s1_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ) + // (word~) point_init::abs16s1_return#5 = (word)(signed word) point_init::abs16s1_$2#0 // register copy zp ZP_WORD:5 + jmp abs16s1_breturn_from_abs16s1_b1 +} +//SEG107 divr16s +divr16s: { + .const dividend = 0 + .label _7 = 9 + .label _11 = $b + .label divisor = $b + .label rem = 9 + .label dividendu = 3 + .label divisoru = $b + .label remu = 9 + jmp b16 + //SEG108 divr16s::@16 + b16: + //SEG109 [60] if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) -- vwsz1_lt_0_then_la1 + lda rem+1 + bmi b1 + jmp b17 + //SEG110 divr16s::@17 + b17: + //SEG111 [61] (word~) divr16s::remu#8 ← (word)(signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::remu#8 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#8 ] ) + // (word~) divr16s::remu#8 = (word)(signed word) divr16s::rem#0 // register copy zp ZP_WORD:9 + //SEG112 [62] phi from divr16s::@17 to divr16s::@2 [phi:divr16s::@17->divr16s::@2] + b2_from_b17: + //SEG113 [62] phi (word) divr16s::remu#3 = (word~) divr16s::remu#8 [phi:divr16s::@17->divr16s::@2#0] -- register_copy + //SEG114 [62] phi (word) divr16s::dividendu#3 = ((word))(const signed word) divr16s::dividend#0 [phi:divr16s::@17->divr16s::@2#1] -- vwuz1=vbuc1 + lda #dividend + sta dividendu+1 + //SEG115 [62] phi (byte) divr16s::neg#3 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16s::@17->divr16s::@2#2] -- vbuyy=vbuc1 + ldy #0 + jmp b2 + //SEG116 divr16s::@2 + b2: + //SEG117 [63] if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) -- vwsz1_lt_0_then_la1 + lda divisor+1 + bmi b3 + jmp b18 + //SEG118 divr16s::@18 + b18: + //SEG119 [64] (word~) divr16s::divisoru#5 ← (word)(signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ) + // (word~) divr16s::divisoru#5 = (word)(signed word) divr16s::divisor#0 // register copy zp ZP_WORD:11 + //SEG120 [65] phi from divr16s::@18 divr16s::@3 to divr16s::@4 [phi:divr16s::@18/divr16s::@3->divr16s::@4] + b4_from_b18: + b4_from_b3: + //SEG121 [65] phi (byte) divr16s::neg#4 = (byte) divr16s::neg#3 [phi:divr16s::@18/divr16s::@3->divr16s::@4#0] -- register_copy + //SEG122 [65] phi (word) divr16s::divisoru#3 = (word~) divr16s::divisoru#5 [phi:divr16s::@18/divr16s::@3->divr16s::@4#1] -- register_copy + jmp b4 + //SEG123 divr16s::@4 + b4: + //SEG124 [66] (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 [ divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ) + // (word) divr16u::dividend#1 = (word) divr16s::dividendu#3 // register copy zp ZP_WORD:3 + //SEG125 [67] (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 [ divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ) + // (word) divr16u::divisor#0 = (word) divr16s::divisoru#3 // register copy zp ZP_WORD:11 + //SEG126 [68] (word) divr16u::rem#3 ← (word) divr16s::remu#3 [ divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) + // (word) divr16u::rem#3 = (word) divr16s::remu#3 // register copy zp ZP_WORD:9 + //SEG127 [69] call divr16u [ divr16u::rem#10 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 divr16s::neg#4 ] ) + //SEG128 [80] phi from divr16s::@4 to divr16u [phi:divr16s::@4->divr16u] + divr16u_from_b4: + jsr divr16u + jmp b15 + //SEG129 divr16s::@15 + b15: + //SEG130 [70] if((byte) divr16s::neg#4==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@19 [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 ] ) -- vbuyy_eq_0_then_la1 + cpy #0 + beq b19 + jmp b11 + //SEG131 divr16s::@11 + b11: + //SEG132 [71] (signed word) rem16s#2 ← - (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#2 ] ) -- vwsz1=_neg_vwsz2 + sec + lda divr16u.rem + eor #$ff + adc #0 + sta rem16s + lda divr16u.rem+1 + eor #$ff + adc #0 + sta rem16s+1 + //SEG133 [72] phi from divr16s::@11 divr16s::@19 to divr16s::@return [phi:divr16s::@11/divr16s::@19->divr16s::@return] + breturn_from_b11: + breturn_from_b19: + //SEG134 [72] phi (signed word) rem16s#3 = (signed word) rem16s#2 [phi:divr16s::@11/divr16s::@19->divr16s::@return#0] -- register_copy + jmp breturn + //SEG135 divr16s::@return + breturn: + //SEG136 [73] return [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + rts + //SEG137 divr16s::@19 + b19: + //SEG138 [74] (signed word~) rem16s#56 ← (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#56 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#56 ] ) -- vwsz1=vwsz2 + lda divr16u.rem + sta rem16s + lda divr16u.rem+1 + sta rem16s+1 + jmp breturn_from_b19 + //SEG139 divr16s::@3 + b3: + //SEG140 [75] (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ) -- vwsz1=_neg_vwsz1 + sec + lda _11 + eor #$ff + adc #0 + sta _11 + lda _11+1 + eor #$ff + adc #0 + sta _11+1 + //SEG141 [76] (byte) divr16s::neg#2 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ) -- vbuyy=vbuyy_bxor_vbuc1 + tya + eor #1 + tay + //SEG142 [77] (word~) divr16s::divisoru#4 ← (word)(signed word~) divr16s::$11 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ) + // (word~) divr16s::divisoru#4 = (word)(signed word~) divr16s::$11 // register copy zp ZP_WORD:11 + jmp b4_from_b3 + //SEG143 divr16s::@1 + b1: + //SEG144 [78] (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::$7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::$7 ] ) -- vwsz1=_neg_vwsz1 + sec + lda _7 + eor #$ff + adc #0 + sta _7 + lda _7+1 + eor #$ff + adc #0 + sta _7+1 + //SEG145 [79] (word~) divr16s::remu#7 ← (word)(signed word~) divr16s::$7 [ divr16s::divisor#0 divr16s::remu#7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#7 ] ) + // (word~) divr16s::remu#7 = (word)(signed word~) divr16s::$7 // register copy zp ZP_WORD:9 + //SEG146 [62] phi from divr16s::@1 to divr16s::@2 [phi:divr16s::@1->divr16s::@2] + b2_from_b1: + //SEG147 [62] phi (word) divr16s::remu#3 = (word~) divr16s::remu#7 [phi:divr16s::@1->divr16s::@2#0] -- register_copy + //SEG148 [62] phi (word) divr16s::dividendu#3 = ((word))-(const signed word) divr16s::dividend#0 [phi:divr16s::@1->divr16s::@2#1] -- vwuz1=vbuc1 + lda #<-dividend + sta dividendu + lda #>-dividend + sta dividendu+1 + //SEG149 [62] phi (byte) divr16s::neg#3 = (byte/signed byte/word/signed word/dword/signed dword) 1 [phi:divr16s::@1->divr16s::@2#2] -- vbuyy=vbuc1 + ldy #1 + jmp b2 +} +//SEG150 divr16u +divr16u: { + .label rem = 9 + .label dividend = 3 + .label quotient = 5 + .label return = 5 + .label divisor = $b + //SEG151 [81] phi from divr16u to divr16u::@1 [phi:divr16u->divr16u::@1] + b1_from_divr16u: + //SEG152 [81] phi (byte) divr16u::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16u->divr16u::@1#0] -- vbuxx=vbuc1 + ldx #0 + //SEG153 [81] phi (word) divr16u::quotient#3 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16u->divr16u::@1#1] -- vwuz1=vbuc1 + lda #<0 + sta quotient + lda #>0 + sta quotient+1 + //SEG154 [81] phi (word) divr16u::dividend#2 = (word) divr16u::dividend#1 [phi:divr16u->divr16u::@1#2] -- register_copy + //SEG155 [81] phi (word) divr16u::rem#4 = (word) divr16u::rem#3 [phi:divr16u->divr16u::@1#3] -- register_copy + jmp b1 + //SEG156 [81] phi from divr16u::@3 to divr16u::@1 [phi:divr16u::@3->divr16u::@1] + b1_from_b3: + //SEG157 [81] phi (byte) divr16u::i#2 = (byte) divr16u::i#1 [phi:divr16u::@3->divr16u::@1#0] -- register_copy + //SEG158 [81] phi (word) divr16u::quotient#3 = (word) divr16u::return#0 [phi:divr16u::@3->divr16u::@1#1] -- register_copy + //SEG159 [81] phi (word) divr16u::dividend#2 = (word) divr16u::dividend#0 [phi:divr16u::@3->divr16u::@1#2] -- register_copy + //SEG160 [81] phi (word) divr16u::rem#4 = (word) divr16u::rem#10 [phi:divr16u::@3->divr16u::@1#3] -- register_copy + jmp b1 + //SEG161 divr16u::@1 + b1: + //SEG162 [82] (word) divr16u::rem#0 ← (word) divr16u::rem#4 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) -- vwuz1=vwuz1_rol_1 + asl rem + rol rem+1 + //SEG163 [83] (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ) -- vbuaa=_hi_vwuz1 + lda dividend+1 + //SEG164 [84] (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ) -- vbuaa=vbuaa_band_vbuc1 + and #$80 + //SEG165 [85] if((byte~) divr16u::$2==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16u::@2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) -- vbuaa_eq_0_then_la1 + cmp #0 + beq b2_from_b1 + jmp b4 + //SEG166 divr16u::@4 + b4: + //SEG167 [86] (word) divr16u::rem#1 ← (word) divr16u::rem#0 | (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ) -- vwuz1=vwuz1_bor_vbuc1 + lda #1 + ora rem + sta rem + //SEG168 [87] phi from divr16u::@1 divr16u::@4 to divr16u::@2 [phi:divr16u::@1/divr16u::@4->divr16u::@2] + b2_from_b1: + b2_from_b4: + //SEG169 [87] phi (word) divr16u::rem#5 = (word) divr16u::rem#0 [phi:divr16u::@1/divr16u::@4->divr16u::@2#0] -- register_copy + jmp b2 + //SEG170 divr16u::@2 + b2: + //SEG171 [88] (word) divr16u::dividend#0 ← (word) divr16u::dividend#2 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ) -- vwuz1=vwuz1_rol_1 + asl dividend + rol dividend+1 + //SEG172 [89] (word) divr16u::quotient#1 ← (word) divr16u::quotient#3 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) -- vwuz1=vwuz1_rol_1 + asl quotient + rol quotient+1 + //SEG173 [90] if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) -- vwuz1_lt_vwuz2_then_la1 + lda rem+1 + cmp divisor+1 + bcc b3_from_b2 + bne !+ + lda rem + cmp divisor + bcc b3_from_b2 + !: + jmp b5 + //SEG174 divr16u::@5 + b5: + //SEG175 [91] (word) divr16u::quotient#2 ← ++ (word) divr16u::quotient#1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ) -- vwuz1=_inc_vwuz1 + inc quotient + bne !+ + inc quotient+1 + !: + //SEG176 [92] (word) divr16u::rem#2 ← (word) divr16u::rem#5 - (word) divr16u::divisor#0 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ) -- vwuz1=vwuz1_minus_vwuz2 + lda rem + sec + sbc divisor + sta rem + lda rem+1 + sbc divisor+1 + sta rem+1 + //SEG177 [93] phi from divr16u::@2 divr16u::@5 to divr16u::@3 [phi:divr16u::@2/divr16u::@5->divr16u::@3] + b3_from_b2: + b3_from_b5: + //SEG178 [93] phi (word) divr16u::return#0 = (word) divr16u::quotient#1 [phi:divr16u::@2/divr16u::@5->divr16u::@3#0] -- register_copy + //SEG179 [93] phi (word) divr16u::rem#10 = (word) divr16u::rem#5 [phi:divr16u::@2/divr16u::@5->divr16u::@3#1] -- register_copy + jmp b3 + //SEG180 divr16u::@3 + b3: + //SEG181 [94] (byte) divr16u::i#1 ← ++ (byte) divr16u::i#2 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) -- vbuxx=_inc_vbuxx + inx + //SEG182 [95] if((byte) divr16u::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 16) goto divr16u::@1 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) -- vbuxx_neq_vbuc1_then_la1 + cpx #$10 + bne b1_from_b3 + jmp breturn + //SEG183 divr16u::@return + breturn: + //SEG184 [96] return [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 ] ) rts } -//SEG68 screen_fill +//SEG185 screen_fill screen_fill: { .const ch = $10 .label screen = 3 .label y = 2 - //SEG69 [44] phi from screen_fill to screen_fill::@1 [phi:screen_fill->screen_fill::@1] + //SEG186 [98] phi from screen_fill to screen_fill::@1 [phi:screen_fill->screen_fill::@1] b1_from_screen_fill: - //SEG70 [44] phi (byte) screen_fill::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill->screen_fill::@1#0] -- vbuz1=vbuc1 + //SEG187 [98] phi (byte) screen_fill::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill->screen_fill::@1#0] -- vbuz1=vbuc1 lda #0 sta y - //SEG71 [44] phi (byte*) screen_fill::screen#3 = (const byte*) SCREEN#0 [phi:screen_fill->screen_fill::@1#1] -- pbuz1=pbuc1 + //SEG188 [98] phi (byte*) screen_fill::screen#3 = (const byte*) SCREEN#0 [phi:screen_fill->screen_fill::@1#1] -- pbuz1=pbuc1 lda #SCREEN sta screen+1 jmp b1 - //SEG72 [44] phi from screen_fill::@3 to screen_fill::@1 [phi:screen_fill::@3->screen_fill::@1] + //SEG189 [98] phi from screen_fill::@3 to screen_fill::@1 [phi:screen_fill::@3->screen_fill::@1] b1_from_b3: - //SEG73 [44] phi (byte) screen_fill::y#4 = (byte) screen_fill::y#1 [phi:screen_fill::@3->screen_fill::@1#0] -- register_copy - //SEG74 [44] phi (byte*) screen_fill::screen#3 = (byte*) screen_fill::screen#1 [phi:screen_fill::@3->screen_fill::@1#1] -- register_copy + //SEG190 [98] phi (byte) screen_fill::y#4 = (byte) screen_fill::y#1 [phi:screen_fill::@3->screen_fill::@1#0] -- register_copy + //SEG191 [98] phi (byte*) screen_fill::screen#3 = (byte*) screen_fill::screen#1 [phi:screen_fill::@3->screen_fill::@1#1] -- register_copy jmp b1 - //SEG75 screen_fill::@1 + //SEG192 screen_fill::@1 b1: - //SEG76 [45] phi from screen_fill::@1 to screen_fill::@2 [phi:screen_fill::@1->screen_fill::@2] + //SEG193 [99] phi from screen_fill::@1 to screen_fill::@2 [phi:screen_fill::@1->screen_fill::@2] b2_from_b1: - //SEG77 [45] phi (byte) screen_fill::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill::@1->screen_fill::@2#0] -- vbuxx=vbuc1 + //SEG194 [99] phi (byte) screen_fill::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill::@1->screen_fill::@2#0] -- vbuxx=vbuc1 ldx #0 - //SEG78 [45] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#3 [phi:screen_fill::@1->screen_fill::@2#1] -- register_copy + //SEG195 [99] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#3 [phi:screen_fill::@1->screen_fill::@2#1] -- register_copy jmp b2 - //SEG79 [45] phi from screen_fill::@2 to screen_fill::@2 [phi:screen_fill::@2->screen_fill::@2] + //SEG196 [99] phi from screen_fill::@2 to screen_fill::@2 [phi:screen_fill::@2->screen_fill::@2] b2_from_b2: - //SEG80 [45] phi (byte) screen_fill::x#2 = (byte) screen_fill::x#1 [phi:screen_fill::@2->screen_fill::@2#0] -- register_copy - //SEG81 [45] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#1 [phi:screen_fill::@2->screen_fill::@2#1] -- register_copy + //SEG197 [99] phi (byte) screen_fill::x#2 = (byte) screen_fill::x#1 [phi:screen_fill::@2->screen_fill::@2#0] -- register_copy + //SEG198 [99] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#1 [phi:screen_fill::@2->screen_fill::@2#1] -- register_copy jmp b2 - //SEG82 screen_fill::@2 + //SEG199 screen_fill::@2 b2: - //SEG83 [46] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) -- _deref_pbuz1=vbuc1 + //SEG200 [100] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) -- _deref_pbuz1=vbuc1 lda #ch ldy #0 sta (screen),y - //SEG84 [47] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) -- pbuz1=_inc_pbuz1 + //SEG201 [101] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) -- pbuz1=_inc_pbuz1 inc screen bne !+ inc screen+1 !: - //SEG85 [48] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx=_inc_vbuxx + //SEG202 [102] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx=_inc_vbuxx inx - //SEG86 [49] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 + //SEG203 [103] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 cpx #$28 bne b2_from_b2 jmp b3 - //SEG87 screen_fill::@3 + //SEG204 screen_fill::@3 b3: - //SEG88 [50] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG205 [104] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1=_inc_vbuz1 inc y - //SEG89 [51] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG206 [105] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda y cmp #$19 bne b1_from_b3 jmp breturn - //SEG90 screen_fill::@return + //SEG207 screen_fill::@return breturn: - //SEG91 [52] return [ ] ( main:2::screen_fill:17 [ ] ) + //SEG208 [106] return [ ] ( main:2::screen_fill:17 [ ] ) rts } -//SEG92 bitmap_clear +//SEG209 bitmap_clear bitmap_clear: { .label bitmap = 3 .label y = 2 .label _3 = 3 - //SEG93 [53] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 + //SEG210 [107] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 lda bitmap_plot_ylo+0 sta _3 lda bitmap_plot_yhi+0 sta _3+1 - //SEG94 [54] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) + //SEG211 [108] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) // (byte*~) bitmap_clear::bitmap#5 = (byte*)(word~) bitmap_clear::$3 // register copy zp ZP_WORD:3 - //SEG95 [55] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] + //SEG212 [109] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] b1_from_bitmap_clear: - //SEG96 [55] phi (byte) bitmap_clear::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear->bitmap_clear::@1#0] -- vbuz1=vbuc1 + //SEG213 [109] phi (byte) bitmap_clear::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear->bitmap_clear::@1#0] -- vbuz1=vbuc1 lda #0 sta y - //SEG97 [55] phi (byte*) bitmap_clear::bitmap#3 = (byte*~) bitmap_clear::bitmap#5 [phi:bitmap_clear->bitmap_clear::@1#1] -- register_copy + //SEG214 [109] phi (byte*) bitmap_clear::bitmap#3 = (byte*~) bitmap_clear::bitmap#5 [phi:bitmap_clear->bitmap_clear::@1#1] -- register_copy jmp b1 - //SEG98 [55] phi from bitmap_clear::@3 to bitmap_clear::@1 [phi:bitmap_clear::@3->bitmap_clear::@1] + //SEG215 [109] phi from bitmap_clear::@3 to bitmap_clear::@1 [phi:bitmap_clear::@3->bitmap_clear::@1] b1_from_b3: - //SEG99 [55] phi (byte) bitmap_clear::y#4 = (byte) bitmap_clear::y#1 [phi:bitmap_clear::@3->bitmap_clear::@1#0] -- register_copy - //SEG100 [55] phi (byte*) bitmap_clear::bitmap#3 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@3->bitmap_clear::@1#1] -- register_copy + //SEG216 [109] phi (byte) bitmap_clear::y#4 = (byte) bitmap_clear::y#1 [phi:bitmap_clear::@3->bitmap_clear::@1#0] -- register_copy + //SEG217 [109] phi (byte*) bitmap_clear::bitmap#3 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@3->bitmap_clear::@1#1] -- register_copy jmp b1 - //SEG101 bitmap_clear::@1 + //SEG218 bitmap_clear::@1 b1: - //SEG102 [56] phi from bitmap_clear::@1 to bitmap_clear::@2 [phi:bitmap_clear::@1->bitmap_clear::@2] + //SEG219 [110] phi from bitmap_clear::@1 to bitmap_clear::@2 [phi:bitmap_clear::@1->bitmap_clear::@2] b2_from_b1: - //SEG103 [56] phi (byte) bitmap_clear::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear::@1->bitmap_clear::@2#0] -- vbuxx=vbuc1 + //SEG220 [110] phi (byte) bitmap_clear::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear::@1->bitmap_clear::@2#0] -- vbuxx=vbuc1 ldx #0 - //SEG104 [56] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#3 [phi:bitmap_clear::@1->bitmap_clear::@2#1] -- register_copy + //SEG221 [110] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#3 [phi:bitmap_clear::@1->bitmap_clear::@2#1] -- register_copy jmp b2 - //SEG105 [56] phi from bitmap_clear::@2 to bitmap_clear::@2 [phi:bitmap_clear::@2->bitmap_clear::@2] + //SEG222 [110] phi from bitmap_clear::@2 to bitmap_clear::@2 [phi:bitmap_clear::@2->bitmap_clear::@2] b2_from_b2: - //SEG106 [56] phi (byte) bitmap_clear::x#2 = (byte) bitmap_clear::x#1 [phi:bitmap_clear::@2->bitmap_clear::@2#0] -- register_copy - //SEG107 [56] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@2->bitmap_clear::@2#1] -- register_copy + //SEG223 [110] phi (byte) bitmap_clear::x#2 = (byte) bitmap_clear::x#1 [phi:bitmap_clear::@2->bitmap_clear::@2#0] -- register_copy + //SEG224 [110] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@2->bitmap_clear::@2#1] -- register_copy jmp b2 - //SEG108 bitmap_clear::@2 + //SEG225 bitmap_clear::@2 b2: - //SEG109 [57] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) -- _deref_pbuz1=vbuc1 + //SEG226 [111] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) -- _deref_pbuz1=vbuc1 lda #0 ldy #0 sta (bitmap),y - //SEG110 [58] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) -- pbuz1=_inc_pbuz1 + //SEG227 [112] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) -- pbuz1=_inc_pbuz1 inc bitmap bne !+ inc bitmap+1 !: - //SEG111 [59] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx=_inc_vbuxx + //SEG228 [113] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx=_inc_vbuxx inx - //SEG112 [60] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 + //SEG229 [114] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 cpx #$c8 bne b2_from_b2 jmp b3 - //SEG113 bitmap_clear::@3 + //SEG230 bitmap_clear::@3 b3: - //SEG114 [61] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG231 [115] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1=_inc_vbuz1 inc y - //SEG115 [62] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG232 [116] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda y cmp #$28 bne b1_from_b3 jmp breturn - //SEG116 bitmap_clear::@return + //SEG233 bitmap_clear::@return breturn: - //SEG117 [63] return [ ] ( main:2::bitmap_clear:15 [ ] ) + //SEG234 [117] return [ ] ( main:2::bitmap_clear:15 [ ] ) rts } -//SEG118 bitmap_init +//SEG235 bitmap_init bitmap_init: { .label _3 = 2 .label yoffs = 3 - //SEG119 [65] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] + //SEG236 [119] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] b1_from_bitmap_init: - //SEG120 [65] phi (byte) bitmap_init::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuxx=vbuc1 + //SEG237 [119] phi (byte) bitmap_init::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuxx=vbuc1 ldx #0 - //SEG121 [65] phi (byte) bitmap_init::bits#3 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init->bitmap_init::@1#1] -- vbuaa=vbuc1 + //SEG238 [119] phi (byte) bitmap_init::bits#3 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init->bitmap_init::@1#1] -- vbuaa=vbuc1 lda #$80 jmp b1 - //SEG122 [65] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] + //SEG239 [119] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] b1_from_b2: - //SEG123 [65] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy - //SEG124 [65] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy + //SEG240 [119] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy + //SEG241 [119] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy jmp b1 - //SEG125 bitmap_init::@1 + //SEG242 bitmap_init::@1 b1: - //SEG126 [66] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa + //SEG243 [120] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa sta bitmap_plot_bit,x - //SEG127 [67] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa=vbuaa_ror_1 + //SEG244 [121] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa=vbuaa_ror_1 lsr - //SEG128 [68] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa_neq_0_then_la1 + //SEG245 [122] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa_neq_0_then_la1 cmp #0 bne b10_from_b1 - //SEG129 [69] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] + //SEG246 [123] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] b2_from_b1: - //SEG130 [69] phi (byte) bitmap_init::bits#4 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuaa=vbuc1 + //SEG247 [123] phi (byte) bitmap_init::bits#4 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuaa=vbuc1 lda #$80 jmp b2 - //SEG131 bitmap_init::@2 + //SEG248 bitmap_init::@2 b2: - //SEG132 [70] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx=_inc_vbuxx + //SEG249 [124] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx=_inc_vbuxx inx - //SEG133 [71] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx_neq_0_then_la1 + //SEG250 [125] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx_neq_0_then_la1 cpx #0 bne b1_from_b2 - //SEG134 [72] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] + //SEG251 [126] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] b3_from_b2: - //SEG135 [72] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 + //SEG252 [126] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 lda #BITMAP sta yoffs+1 - //SEG136 [72] phi (byte) bitmap_init::y#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuxx=vbuc1 + //SEG253 [126] phi (byte) bitmap_init::y#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuxx=vbuc1 ldx #0 jmp b3 - //SEG137 [72] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] + //SEG254 [126] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] b3_from_b4: - //SEG138 [72] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy - //SEG139 [72] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy + //SEG255 [126] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy + //SEG256 [126] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy jmp b3 - //SEG140 bitmap_init::@3 + //SEG257 bitmap_init::@3 b3: - //SEG141 [73] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) -- vbuz1=vbuxx_band_vbuc1 + //SEG258 [127] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) -- vbuz1=vbuxx_band_vbuc1 txa and #7 sta _3 - //SEG142 [74] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) -- vbuaa=_lo_pbuz1 + //SEG259 [128] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) -- vbuaa=_lo_pbuz1 lda yoffs - //SEG143 [75] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) -- vbuaa=vbuz1_bor_vbuaa + //SEG260 [129] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) -- vbuaa=vbuz1_bor_vbuaa ora _3 - //SEG144 [76] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa + //SEG261 [130] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa sta bitmap_plot_ylo,x - //SEG145 [77] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) -- vbuaa=_hi_pbuz1 + //SEG262 [131] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) -- vbuaa=_hi_pbuz1 lda yoffs+1 - //SEG146 [78] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa + //SEG263 [132] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa sta bitmap_plot_yhi,x - //SEG147 [79] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) -- vbuaa=vbuxx_band_vbuc1 + //SEG264 [133] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) -- vbuaa=vbuxx_band_vbuc1 txa and #7 - //SEG148 [80] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- vbuaa_neq_vbuc1_then_la1 + //SEG265 [134] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- vbuaa_neq_vbuc1_then_la1 cmp #7 bne b4_from_b3 jmp b7 - //SEG149 bitmap_init::@7 + //SEG266 bitmap_init::@7 b7: - //SEG150 [81] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) -- pbuz1=pbuz1_plus_vwuc1 + //SEG267 [135] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) -- pbuz1=pbuz1_plus_vwuc1 clc lda yoffs adc #<$28*8 @@ -3454,57 +22343,81 @@ bitmap_init: { lda yoffs+1 adc #>$28*8 sta yoffs+1 - //SEG151 [82] phi from bitmap_init::@3 bitmap_init::@7 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4] + //SEG268 [136] phi from bitmap_init::@3 bitmap_init::@7 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4] b4_from_b3: b4_from_b7: - //SEG152 [82] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4#0] -- register_copy + //SEG269 [136] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4#0] -- register_copy jmp b4 - //SEG153 bitmap_init::@4 + //SEG270 bitmap_init::@4 b4: - //SEG154 [83] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx=_inc_vbuxx + //SEG271 [137] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx=_inc_vbuxx inx - //SEG155 [84] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx_neq_0_then_la1 + //SEG272 [138] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx_neq_0_then_la1 cpx #0 bne b3_from_b4 jmp breturn - //SEG156 bitmap_init::@return + //SEG273 bitmap_init::@return breturn: - //SEG157 [85] return [ ] ( main:2::bitmap_init:13 [ ] ) + //SEG274 [139] return [ ] ( main:2::bitmap_init:13 [ ] ) rts - //SEG158 [86] phi from bitmap_init::@1 to bitmap_init::@10 [phi:bitmap_init::@1->bitmap_init::@10] + //SEG275 [140] phi from bitmap_init::@1 to bitmap_init::@10 [phi:bitmap_init::@1->bitmap_init::@10] b10_from_b1: jmp b10 - //SEG159 bitmap_init::@10 + //SEG276 bitmap_init::@10 b10: - //SEG160 [69] phi from bitmap_init::@10 to bitmap_init::@2 [phi:bitmap_init::@10->bitmap_init::@2] + //SEG277 [123] phi from bitmap_init::@10 to bitmap_init::@2 [phi:bitmap_init::@10->bitmap_init::@2] b2_from_b10: - //SEG161 [69] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@10->bitmap_init::@2#0] -- register_copy + //SEG278 [123] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@10->bitmap_init::@2#0] -- register_copy jmp b2 } x_start: .word $a, $14, $1e, $1e y_start: .byte $a, $a, $a, $14 - x_cur: .fill 8, 0 - y_cur: .fill 8, 0 - delay: .fill 4, 0 + x_end: .word $14, $a, $14, $14 + y_end: .byte $14, $14, $a, $14 + x_add: .fill 4, 0 bitmap_plot_ylo: .fill $100, 0 bitmap_plot_yhi: .fill $100, 0 bitmap_plot_bit: .fill $100, 0 ASSEMBLER OPTIMIZATIONS -Removing instruction jmp b9 +Removing instruction jmp b18 Removing instruction jmp bend Removing instruction jmp vicSelectGfxBank1 Removing instruction jmp vicSelectGfxBank1_toDd001 Removing instruction jmp vicSelectGfxBank1_b1 Removing instruction jmp toD0181 -Removing instruction jmp b10 -Removing instruction jmp b11 -Removing instruction jmp b12 +Removing instruction jmp b16 +Removing instruction jmp b17 +Removing instruction jmp b18 Removing instruction jmp b1 -Removing instruction jmp b14 -Removing instruction jmp b15 -Removing instruction jmp b3 +Removing instruction jmp b20 +Removing instruction jmp b21 +Removing instruction jmp b5 +Removing instruction jmp b7 Removing instruction jmp breturn +Removing instruction jmp abs16s1 +Removing instruction jmp b12 +Removing instruction jmp abs16s1_breturn +Removing instruction jmp abs16s2 +Removing instruction jmp b13 +Removing instruction jmp abs16s2_breturn +Removing instruction jmp b10 +Removing instruction jmp breturn +Removing instruction jmp b7 +Removing instruction jmp b4 +Removing instruction jmp b16 +Removing instruction jmp b17 +Removing instruction jmp b2 +Removing instruction jmp b18 +Removing instruction jmp b4 +Removing instruction jmp b15 +Removing instruction jmp b11 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp b4 +Removing instruction jmp b2 +Removing instruction jmp b5 +Removing instruction jmp b3 Removing instruction jmp breturn Removing instruction jmp b1 Removing instruction jmp b2 @@ -3522,10 +22435,27 @@ Removing instruction jmp b4 Removing instruction jmp breturn Removing instruction jmp b10 Succesful ASM optimization Pass5NextJumpElimination +Removing instruction lda #>0 +Removing instruction lda #<0 +Removing instruction lda #>0 +Removing instruction lda #0 +Replacing instruction ldy i with TAY +Removing instruction lda i Removing instruction ldy #0 +Replacing instruction lda #<0 with TXA +Removing instruction lda #>0 Replacing instruction ldy #0 with TAY Succesful ASM optimization Pass5UnnecesaryLoadElimination -Replacing label b1_from_b15 with b1 +Replacing label b1_from_b21 with b1 +Replacing label breturn_from_b4 with breturn +Replacing label abs16s2_breturn_from_abs16s2_b1 with b10 +Replacing label abs16s1_breturn_from_abs16s1_b1 with abs16s2 +Replacing label breturn_from_b19 with breturn +Replacing label b4_from_b3 with b4 +Replacing label b2_from_b1 with b2 +Replacing label b3_from_b2 with b3 +Replacing label b3_from_b2 with b3 +Replacing label b1_from_b3 with b1 Replacing label b2_from_b2 with b2 Replacing label b1_from_b3 with b1 Replacing label b2_from_b2 with b2 @@ -3535,16 +22465,33 @@ Replacing label b1_from_b2 with b1 Replacing label b4_from_b3 with b4 Replacing label b3_from_b4 with b3 Removing instruction bbegin: -Removing instruction b9_from_bbegin: -Removing instruction bend_from_b9: +Removing instruction b18_from_bbegin: +Removing instruction bend_from_b18: Removing instruction vicSelectGfxBank1_toDd001_from_vicSelectGfxBank1: Removing instruction vicSelectGfxBank1_toDd001: Removing instruction toD0181_from_vicSelectGfxBank1_b1: Removing instruction toD0181: -Removing instruction b11_from_b10: -Removing instruction b12_from_b11: -Removing instruction screen_fill_from_b12: -Removing instruction b1_from_b15: +Removing instruction b17_from_b16: +Removing instruction b18_from_b17: +Removing instruction screen_fill_from_b18: +Removing instruction b1_from_b21: +Removing instruction abs16s1_breturn_from_b12: +Removing instruction abs16s1_breturn_from_abs16s1_b1: +Removing instruction abs16s1_breturn: +Removing instruction abs16s2_breturn_from_b13: +Removing instruction abs16s2_breturn_from_abs16s2_b1: +Removing instruction abs16s2_breturn: +Removing instruction breturn_from_b10: +Removing instruction breturn_from_b4: +Removing instruction b4_from_b18: +Removing instruction b4_from_b3: +Removing instruction breturn_from_b11: +Removing instruction breturn_from_b19: +Removing instruction b1_from_b3: +Removing instruction b2_from_b1: +Removing instruction b2_from_b4: +Removing instruction b3_from_b2: +Removing instruction b3_from_b5: Removing instruction b1_from_b3: Removing instruction b2_from_b1: Removing instruction b2_from_b2: @@ -3558,18 +22505,35 @@ Removing instruction b4_from_b7: Removing instruction b10_from_b1: Removing instruction b2_from_b10: Succesful ASM optimization Pass5RedundantLabelElimination -Removing instruction b9: +Removing instruction b18: Removing instruction bend: Removing instruction vicSelectGfxBank1: Removing instruction vicSelectGfxBank1_b1: -Removing instruction b10: -Removing instruction bitmap_init_from_b10: -Removing instruction b11: -Removing instruction b12: -Removing instruction b1_from_b12: -Removing instruction b14: -Removing instruction b15: +Removing instruction b16: +Removing instruction bitmap_init_from_b16: +Removing instruction b17: +Removing instruction b18: +Removing instruction b1_from_b18: +Removing instruction b20: +Removing instruction b21: +Removing instruction b7: Removing instruction breturn: +Removing instruction abs16s1: +Removing instruction b12: +Removing instruction b13: +Removing instruction b7: +Removing instruction divr16s_from_b4: +Removing instruction b16: +Removing instruction b17: +Removing instruction b2_from_b17: +Removing instruction b18: +Removing instruction divr16u_from_b4: +Removing instruction b15: +Removing instruction b11: +Removing instruction b2_from_b1: +Removing instruction b1_from_divr16u: +Removing instruction b4: +Removing instruction b5: Removing instruction breturn: Removing instruction b1_from_screen_fill: Removing instruction b3: @@ -3587,6 +22551,7 @@ Skipping double jump to b2 in bne b10 Succesful ASM optimization Pass5DoubleJumpElimination Removing instruction jmp b1 Removing instruction jmp b1 +Removing instruction jmp b1 Removing instruction jmp b2 Removing instruction jmp b1 Removing instruction jmp b2 @@ -3599,7 +22564,7 @@ Removing unreachable instruction jmp b2 Succesful ASM optimization Pass5UnreachableCodeElimination FINAL SYMBOL TABLE -(label) @9 +(label) @18 (label) @begin (label) @end (byte*) BITMAP @@ -3614,8 +22579,6 @@ FINAL SYMBOL TABLE (const byte*) D011#0 D011 = ((byte*))(word/dword/signed dword) 53265 (byte*) D018 (const byte*) D018#0 D018 = ((byte*))(word/dword/signed dword) 53272 -(byte) DELAY -(const byte) DELAY#0 DELAY = (byte/signed byte/word/signed word/dword/signed dword) 8 (byte*) PROCPORT (const byte*) PROCPORT#0 PROCPORT = ((byte*))(byte/signed byte/word/signed word/dword/signed dword) 1 (byte*) PROCPORT_DDR @@ -3624,6 +22587,8 @@ FINAL SYMBOL TABLE (const byte) PROCPORT_DDR_MEMORY_MASK#0 PROCPORT_DDR_MEMORY_MASK = (byte/signed byte/word/signed word/dword/signed dword) 7 (byte) PROCPORT_RAM_IO (const byte) PROCPORT_RAM_IO#0 PROCPORT_RAM_IO = (byte/signed byte/word/signed word/dword/signed dword) 53 +(byte*) RASTER +(const byte*) RASTER#0 RASTER = ((byte*))(word/dword/signed dword) 53266 (byte*) SCREEN (const byte*) SCREEN#0 SCREEN = ((byte*))(word/dword/signed dword) 34816 (byte) VIC_BMM @@ -3678,36 +22643,103 @@ FINAL SYMBOL TABLE (byte*) bitmap_init::yoffs#2 yoffs zp ZP_WORD:3 6.111111111111112 (byte*) bitmap_init::yoffs#4 yoffs zp ZP_WORD:3 11.0 (void()) bitmap_plot((word) bitmap_plot::x , (byte) bitmap_plot::y) -(word~) bitmap_plot::$1 $1 zp ZP_WORD:7 4.0 +(word~) bitmap_plot::$1 $1 zp ZP_WORD:11 4.0 (byte~) bitmap_plot::$2 reg byte a 4.0 -(word~) bitmap_plot::$3 $3 zp ZP_WORD:5 1.0 +(word~) bitmap_plot::$3 $3 zp ZP_WORD:7 1.0 (label) bitmap_plot::@return (byte*) bitmap_plot::plotter -(byte*) bitmap_plot::plotter#1 plotter zp ZP_WORD:5 3.0 +(byte*) bitmap_plot::plotter#1 plotter zp ZP_WORD:7 3.0 (word) bitmap_plot::x -(word) bitmap_plot::x#0 x zp ZP_WORD:3 3.0 +(word) bitmap_plot::x#0 x zp ZP_WORD:5 3.0 (byte) bitmap_plot::y -(byte) bitmap_plot::y#0 reg byte a 15.0 +(byte) bitmap_plot::y#0 reg byte y 15.0 (byte[256]) bitmap_plot_bit (const byte[256]) bitmap_plot_bit#0 bitmap_plot_bit = { fill( 256, 0) } (byte[256]) bitmap_plot_yhi (const byte[256]) bitmap_plot_yhi#0 bitmap_plot_yhi = { fill( 256, 0) } (byte[256]) bitmap_plot_ylo (const byte[256]) bitmap_plot_ylo#0 bitmap_plot_ylo = { fill( 256, 0) } -(byte[4]) delay -(const byte[4]) delay#0 delay = { fill( 4, 0) } +(signed word()) divr16s((signed word) divr16s::dividend , (signed word) divr16s::divisor , (signed word) divr16s::rem) +(signed word~) divr16s::$11 $11 zp ZP_WORD:11 1.0 +(signed word~) divr16s::$7 $7 zp ZP_WORD:9 2.0 +(label) divr16s::@1 +(label) divr16s::@11 +(label) divr16s::@15 +(label) divr16s::@16 +(label) divr16s::@17 +(label) divr16s::@18 +(label) divr16s::@19 +(label) divr16s::@2 +(label) divr16s::@3 +(label) divr16s::@4 +(label) divr16s::@return +(signed word) divr16s::dividend +(const signed word) divr16s::dividend#0 dividend = (byte/signed byte/word/signed word/dword/signed dword) 0 +(word) divr16s::dividendu +(word) divr16s::dividendu#3 dividendu zp ZP_WORD:3 0.2857142857142857 +(signed word) divr16s::divisor +(signed word) divr16s::divisor#0 divisor zp ZP_WORD:11 0.6666666666666666 +(word) divr16s::divisoru +(word) divr16s::divisoru#3 divisoru zp ZP_WORD:11 3.0 +(word~) divr16s::divisoru#4 divisoru zp ZP_WORD:11 4.0 +(word~) divr16s::divisoru#5 divisoru zp ZP_WORD:11 4.0 +(byte) divr16s::neg +(byte) divr16s::neg#2 reg byte y 2.0 +(byte) divr16s::neg#3 reg byte y 1.0 +(byte) divr16s::neg#4 reg byte y 1.2000000000000002 +(signed word) divr16s::rem +(signed word) divr16s::rem#0 rem zp ZP_WORD:9 2.0 +(word) divr16s::remu +(word) divr16s::remu#3 remu zp ZP_WORD:9 0.6666666666666666 +(word~) divr16s::remu#7 remu zp ZP_WORD:9 4.0 +(word~) divr16s::remu#8 remu zp ZP_WORD:9 4.0 +(word) divr16s::resultu +(signed word) divr16s::return +(word()) divr16u((word) divr16u::dividend , (word) divr16u::divisor , (word) divr16u::rem) +(byte~) divr16u::$1 reg byte a 202.0 +(byte~) divr16u::$2 reg byte a 202.0 +(label) divr16u::@1 +(label) divr16u::@2 +(label) divr16u::@3 +(label) divr16u::@4 +(label) divr16u::@5 +(label) divr16u::@return +(word) divr16u::dividend +(word) divr16u::dividend#0 dividend zp ZP_WORD:3 25.25 +(word) divr16u::dividend#1 dividend zp ZP_WORD:3 1.0 +(word) divr16u::dividend#2 dividend zp ZP_WORD:3 43.57142857142858 +(word) divr16u::divisor +(word) divr16u::divisor#0 divisor zp ZP_WORD:11 11.333333333333332 +(byte) divr16u::i +(byte) divr16u::i#1 reg byte x 151.5 +(byte) divr16u::i#2 reg byte x 15.538461538461538 +(word) divr16u::quotient +(word) divr16u::quotient#1 quotient zp ZP_WORD:5 151.5 +(word) divr16u::quotient#2 quotient zp ZP_WORD:5 101.0 +(word) divr16u::quotient#3 quotient zp ZP_WORD:5 25.25 +(word) divr16u::rem +(word) divr16u::rem#0 rem zp ZP_WORD:9 75.75 +(word) divr16u::rem#1 rem zp ZP_WORD:9 202.0 +(word) divr16u::rem#10 rem zp ZP_WORD:9 27.727272727272727 +(word) divr16u::rem#2 rem zp ZP_WORD:9 202.0 +(word) divr16u::rem#3 rem zp ZP_WORD:9 2.0 +(word) divr16u::rem#4 rem zp ZP_WORD:9 204.0 +(word) divr16u::rem#5 rem zp ZP_WORD:9 101.0 +(word) divr16u::return +(word) divr16u::return#0 return zp ZP_WORD:5 101.0 (void()) main() -(byte~) main::$9 reg byte y 11.0 +(byte~) main::$9 reg byte x 11.0 (label) main::@1 -(label) main::@10 -(label) main::@11 -(label) main::@12 -(label) main::@14 -(label) main::@15 -(label) main::@3 +(label) main::@16 +(label) main::@17 +(label) main::@18 +(label) main::@20 +(label) main::@21 +(label) main::@5 +(label) main::@7 (byte) main::i -(byte) main::i#1 reg byte x 16.5 -(byte) main::i#2 reg byte x 7.857142857142857 +(byte) main::i#1 i zp ZP_BYTE:2 16.5 +(byte) main::i#2 i zp ZP_BYTE:2 7.857142857142857 (label) main::toD0181 (word~) main::toD0181_$0 (word~) main::toD0181_$1 @@ -3735,14 +22767,59 @@ FINAL SYMBOL TABLE (byte) main::vicSelectGfxBank1_toDd001_return (const byte) main::vicSelectGfxBank1_toDd001_return#0 vicSelectGfxBank1_toDd001_return = (byte/signed byte/word/signed word/dword/signed dword) 3^>((word))(const byte*) SCREEN#0>>(byte/signed byte/word/signed word/dword/signed dword) 6 (void()) point_init((byte) point_init::point_idx) -(word~) point_init::$0 $0 zp ZP_WORD:3 4.0 -(byte~) point_init::$1 reg byte a 4.0 -(word~) point_init::$2 $2 zp ZP_WORD:3 4.0 -(word~) point_init::$3 $3 zp ZP_WORD:3 4.0 -(byte~) point_init::$4 reg byte a 4.0 +(signed word~) point_init::$4 $4 zp ZP_WORD:13 2.0 +(signed word~) point_init::$5 $5 zp ZP_WORD:5 4.0 +(label) point_init::@1 +(label) point_init::@10 +(label) point_init::@12 +(label) point_init::@13 +(label) point_init::@3 +(label) point_init::@4 +(label) point_init::@7 (label) point_init::@return +(label) point_init::abs16s1 +(bool~) point_init::abs16s1_$0 +(word~) point_init::abs16s1_$1 +(signed word~) point_init::abs16s1_$2 +(signed word) point_init::abs16s1_$2#0 abs16s1_$2 zp ZP_WORD:5 2.0 +(word~) point_init::abs16s1_$3 +(label) point_init::abs16s1_@1 +(label) point_init::abs16s1_@return +(word) point_init::abs16s1_return +(word) point_init::abs16s1_return#2 abs16s1_return zp ZP_WORD:5 1.0 +(word~) point_init::abs16s1_return#5 abs16s1_return zp ZP_WORD:5 4.0 +(word~) point_init::abs16s1_return#6 abs16s1_return zp ZP_WORD:5 4.0 +(signed word) point_init::abs16s1_w +(label) point_init::abs16s2 +(bool~) point_init::abs16s2_$0 +(word~) point_init::abs16s2_$1 +(signed word~) point_init::abs16s2_$2 +(signed word) point_init::abs16s2_$2#0 abs16s2_$2 zp ZP_WORD:7 2.0 +(word~) point_init::abs16s2_$3 +(label) point_init::abs16s2_@1 +(label) point_init::abs16s2_@return +(word) point_init::abs16s2_return +(word) point_init::abs16s2_return#2 abs16s2_return zp ZP_WORD:7 6.0 +(word~) point_init::abs16s2_return#5 abs16s2_return zp ZP_WORD:7 4.0 +(word~) point_init::abs16s2_return#6 abs16s2_return zp ZP_WORD:7 4.0 +(signed word) point_init::abs16s2_w (byte) point_init::point_idx -(byte) point_init::point_idx#0 reg byte x 2.9999999999999996 +(byte) point_init::point_idx#0 reg byte x 0.9444444444444446 +(byte) point_init::point_idx1 +(byte) point_init::point_idx1#0 reg byte y 2.0 +(signed word) point_init::x_diff +(signed word) point_init::x_diff#1 x_diff zp ZP_WORD:11 0.5555555555555556 +(signed word) point_init::y_diff +(signed word) point_init::y_diff#0 y_diff zp ZP_WORD:13 0.5 +(signed word) rem16s +(signed word) rem16s#13 rem16s zp ZP_WORD:3 1.666666666666667 +(signed word) rem16s#15 rem16s zp ZP_WORD:3 0.7222222222222223 +(signed word) rem16s#2 rem16s zp ZP_WORD:3 4.0 +(signed word) rem16s#3 rem16s zp ZP_WORD:3 2.0 +(signed word~) rem16s#56 rem16s zp ZP_WORD:3 4.0 +(word) rem16u +(word) rem16u#18 rem16u zp ZP_WORD:9 1.666666666666667 +(word) rem16u#21 rem16u zp ZP_WORD:9 0.7222222222222223 (void()) screen_fill((byte*) screen_fill::screen , (byte) screen_fill::ch) (label) screen_fill::@1 (label) screen_fill::@2 @@ -3760,31 +22837,38 @@ FINAL SYMBOL TABLE (byte) screen_fill::y (byte) screen_fill::y#1 y zp ZP_BYTE:2 16.5 (byte) screen_fill::y#4 y zp ZP_BYTE:2 3.6666666666666665 -(word[4]) x_cur -(const word[4]) x_cur#0 x_cur = { fill( 4, 0) } +(signed byte[4]) x_add +(const signed byte[4]) x_add#0 x_add = { fill( 4, 0) } +(word[4]) x_end +(const word[4]) x_end#0 x_end = { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20 } (word[4]) x_start (const word[4]) x_start#0 x_start = { (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 30, (byte/signed byte/word/signed word/dword/signed dword) 30 } -(word[4]) y_cur -(const word[4]) y_cur#0 y_cur = { fill( 4, 0) } +(byte[4]) y_end +(const byte[4]) y_end#0 y_end = { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20 } (byte[4]) y_start (const byte[4]) y_start#0 y_start = { (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20 } -reg byte x [ main::i#2 main::i#1 ] -zp ZP_BYTE:2 [ screen_fill::y#4 screen_fill::y#1 bitmap_clear::y#4 bitmap_clear::y#1 bitmap_init::$3 ] -zp ZP_WORD:3 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 bitmap_plot::x#0 point_init::$0 point_init::$2 point_init::$3 ] +zp ZP_BYTE:2 [ main::i#2 main::i#1 screen_fill::y#4 screen_fill::y#1 bitmap_clear::y#4 bitmap_clear::y#1 bitmap_init::$3 ] +zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 divr16s::dividendu#3 divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 point_init::abs16s1_$2#0 divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 bitmap_plot::x#0 point_init::$5 ] +zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 point_init::abs16s2_$2#0 bitmap_plot::$3 bitmap_plot::plotter#1 ] +zp ZP_WORD:9 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 divr16s::rem#0 divr16s::$7 ] +zp ZP_WORD:11 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 divr16s::divisor#0 divr16u::divisor#0 divr16s::$11 point_init::x_diff#1 bitmap_plot::$1 ] +reg byte y [ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] +reg byte x [ divr16u::i#2 divr16u::i#1 ] reg byte x [ screen_fill::x#2 screen_fill::x#1 ] reg byte x [ bitmap_clear::x#2 bitmap_clear::x#1 ] reg byte a [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] reg byte x [ bitmap_init::x#2 bitmap_init::x#1 ] reg byte x [ bitmap_init::y#2 bitmap_init::y#1 ] reg byte x [ point_init::point_idx#0 ] -reg byte y [ main::$9 ] -reg byte a [ bitmap_plot::y#0 ] -zp ZP_WORD:5 [ bitmap_plot::$3 bitmap_plot::plotter#1 ] -zp ZP_WORD:7 [ bitmap_plot::$1 ] +reg byte x [ main::$9 ] +reg byte y [ bitmap_plot::y#0 ] reg byte a [ bitmap_plot::$2 ] -reg byte a [ point_init::$1 ] -reg byte a [ point_init::$4 ] +reg byte y [ point_init::point_idx1#0 ] +zp ZP_WORD:13 [ point_init::$4 point_init::y_diff#0 ] +reg byte a [ divr16u::$1 ] +reg byte a [ divr16u::$2 ] reg byte a [ bitmap_init::$4 ] reg byte a [ bitmap_init::$5 ] reg byte a [ bitmap_init::$6 ] @@ -3792,7 +22876,7 @@ reg byte a [ bitmap_init::$7 ] FINAL ASSEMBLER -Score: 8510 +Score: 21441 //SEG0 Basic Upstart .pc = $801 "Basic" @@ -3803,6 +22887,7 @@ Score: 8510 .const PROCPORT_DDR_MEMORY_MASK = 7 .label PROCPORT = 1 .const PROCPORT_RAM_IO = $35 + .label RASTER = $d012 .label BORDERCOL = $d020 .label D011 = $d011 .const VIC_BMM = $20 @@ -3813,18 +22898,20 @@ Score: 8510 .label CIA2_PORT_A_DDR = $dd02 .label BITMAP = $a000 .label SCREEN = $8800 - .const DELAY = 8 + .label rem16s = 3 + .label rem16u = 9 //SEG2 @begin -//SEG3 [1] phi from @begin to @9 [phi:@begin->@9] -//SEG4 @9 +//SEG3 [1] phi from @begin to @18 [phi:@begin->@18] +//SEG4 @18 //SEG5 [2] call main [ ] ( ) jsr main -//SEG6 [3] phi from @9 to @end [phi:@9->@end] +//SEG6 [3] phi from @18 to @end [phi:@18->@end] //SEG7 @end //SEG8 main main: { .const vicSelectGfxBank1_toDd001_return = 3^(>SCREEN)>>6 .const toD0181_return = (>(SCREEN&$3fff)<<2)|(>BITMAP)>>2&$f + .label i = 2 //SEG9 asm { sei } sei //SEG10 [5] *((const byte*) PROCPORT_DDR#0) ← (const byte) PROCPORT_DDR_MEMORY_MASK#0 [ ] ( main:2 [ ] ) -- _deref_pbuc1=vbuc2 @@ -3848,80 +22935,96 @@ main: { sta CIA2_PORT_A //SEG19 [11] phi from main::vicSelectGfxBank1_@1 to main::toD0181 [phi:main::vicSelectGfxBank1_@1->main::toD0181] //SEG20 main::toD0181 - //SEG21 main::@10 + //SEG21 main::@16 //SEG22 [12] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) -- _deref_pbuc1=vbuc2 lda #toD0181_return sta D018 //SEG23 [13] call bitmap_init [ ] ( main:2 [ ] ) - //SEG24 [64] phi from main::@10 to bitmap_init [phi:main::@10->bitmap_init] + //SEG24 [118] phi from main::@16 to bitmap_init [phi:main::@16->bitmap_init] jsr bitmap_init - //SEG25 [14] phi from main::@10 to main::@11 [phi:main::@10->main::@11] - //SEG26 main::@11 + //SEG25 [14] phi from main::@16 to main::@17 [phi:main::@16->main::@17] + //SEG26 main::@17 //SEG27 [15] call bitmap_clear [ ] ( main:2 [ ] ) jsr bitmap_clear - //SEG28 [16] phi from main::@11 to main::@12 [phi:main::@11->main::@12] - //SEG29 main::@12 + //SEG28 [16] phi from main::@17 to main::@18 [phi:main::@17->main::@18] + //SEG29 main::@18 //SEG30 [17] call screen_fill [ ] ( main:2 [ ] ) - //SEG31 [43] phi from main::@12 to screen_fill [phi:main::@12->screen_fill] + //SEG31 [97] phi from main::@18 to screen_fill [phi:main::@18->screen_fill] jsr screen_fill - //SEG32 [18] phi from main::@12 to main::@1 [phi:main::@12->main::@1] - //SEG33 [18] phi (byte) main::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@12->main::@1#0] -- vbuxx=vbuc1 - ldx #0 - //SEG34 [18] phi from main::@15 to main::@1 [phi:main::@15->main::@1] - //SEG35 [18] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@15->main::@1#0] -- register_copy - //SEG36 main::@1 + //SEG32 [18] phi from main::@18 to main::@1 [phi:main::@18->main::@1] + //SEG33 [18] phi (signed word) rem16s#15 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#0] -- vwsz1=vbuc1 + lda #<0 + sta rem16s + sta rem16s+1 + //SEG34 [18] phi (word) rem16u#21 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#1] -- vwuz1=vbuc1 + sta rem16u + sta rem16u+1 + //SEG35 [18] phi (byte) main::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:main::@18->main::@1#2] -- vbuz1=vbuc1 + sta i + //SEG36 [18] phi from main::@21 to main::@1 [phi:main::@21->main::@1] + //SEG37 [18] phi (signed word) rem16s#15 = (signed word) rem16s#13 [phi:main::@21->main::@1#0] -- register_copy + //SEG38 [18] phi (word) rem16u#21 = (word) rem16u#18 [phi:main::@21->main::@1#1] -- register_copy + //SEG39 [18] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@21->main::@1#2] -- register_copy + //SEG40 main::@1 b1: - //SEG37 [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 point_init::point_idx#0 ] ( main:2 [ main::i#2 point_init::point_idx#0 ] ) - // (byte) point_init::point_idx#0 = (byte) main::i#2 // register copy reg byte x - //SEG38 [20] call point_init [ main::i#2 ] ( main:2 [ main::i#2 ] ) + //SEG41 [19] (byte) point_init::point_idx#0 ← (byte) main::i#2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ( main:2 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 ] ) -- vbuxx=vbuz1 + ldx i + //SEG42 [20] call point_init [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) jsr point_init - //SEG39 main::@14 - //SEG40 [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 main::$9 ] ( main:2 [ main::i#2 main::$9 ] ) -- vbuyy=vbuxx_ror_1 - txa + //SEG43 main::@20 + //SEG44 [21] (byte~) main::$9 ← (byte) main::i#2 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 ] ) -- vbuxx=vbuz1_ror_1 + lda i lsr + tax + //SEG45 [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 main::$9 bitmap_plot::x#0 ] ) -- vwuz1=pwuc1_derefidx_vbuz2 tay - //SEG41 [22] (word) bitmap_plot::x#0 ← *((const word[4]) x_start#0 + (byte) main::i#2) [ main::i#2 main::$9 bitmap_plot::x#0 ] ( main:2 [ main::i#2 main::$9 bitmap_plot::x#0 ] ) -- vwuz1=pwuc1_derefidx_vbuxx - lda x_start,x + lda x_start,y sta bitmap_plot.x - lda x_start+1,x + lda x_start+1,y sta bitmap_plot.x+1 - //SEG42 [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 bitmap_plot::x#0 bitmap_plot::y#0 ] ) -- vbuaa=pbuc1_derefidx_vbuyy - lda y_start,y - //SEG43 [24] call bitmap_plot [ main::i#2 ] ( main:2 [ main::i#2 ] ) + //SEG46 [23] (byte) bitmap_plot::y#0 ← *((const byte[4]) y_start#0 + (byte~) main::$9) [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::y#0 ] ) -- vbuyy=pbuc1_derefidx_vbuxx + ldy y_start,x + //SEG47 [24] call bitmap_plot [ main::i#2 rem16u#18 rem16s#13 ] ( main:2 [ main::i#2 rem16u#18 rem16s#13 ] ) jsr bitmap_plot - //SEG44 main::@15 - //SEG45 [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 ] ( main:2 [ main::i#1 ] ) -- vbuxx=vbuxx_plus_2 - inx - inx - //SEG46 [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 ] ( main:2 [ main::i#1 ] ) -- vbuxx_neq_vbuc1_then_la1 - cpx #8 + //SEG48 main::@21 + //SEG49 [25] (byte) main::i#1 ← (byte) main::i#2 + (byte/signed byte/word/signed word/dword/signed dword) 2 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) -- vbuz1=vbuz1_plus_2 + lda i + clc + adc #2 + sta i + //SEG50 [26] if((byte) main::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto main::@1 [ main::i#1 rem16u#18 rem16s#13 ] ( main:2 [ main::i#1 rem16u#18 rem16s#13 ] ) -- vbuz1_neq_vbuc1_then_la1 + cmp #8 bne b1 - //SEG47 main::@3 - b3: - //SEG48 [27] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) -- _deref_pbuc1=_inc__deref_pbuc1 + //SEG51 main::@5 + b5: + //SEG52 [27] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto main::@5 [ ] ( main:2 [ ] ) -- _deref_pbuc1_neq_vbuc2_then_la1 + lda RASTER + cmp #$ff + bne b5 + //SEG53 main::@7 + //SEG54 [28] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ ] ( main:2 [ ] ) -- _deref_pbuc1=_inc__deref_pbuc1 inc BORDERCOL - jmp b3 + jmp b5 } -//SEG49 bitmap_plot +//SEG55 bitmap_plot bitmap_plot: { - .label _1 = 7 - .label x = 3 - .label plotter = 5 - .label _3 = 5 - //SEG50 [28] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 ] ) -- vwuz1=pbuc1_derefidx_vbuaa_word_pbuc2_derefidx_vbuaa - tay + .label _1 = $b + .label x = 5 + .label plotter = 7 + .label _3 = 7 + //SEG56 [29] (word~) bitmap_plot::$3 ← *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#0) w= *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#0) [ bitmap_plot::x#0 bitmap_plot::$3 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 ] ) -- vwuz1=pbuc1_derefidx_vbuyy_word_pbuc2_derefidx_vbuyy lda bitmap_plot_yhi,y sta _3+1 lda bitmap_plot_ylo,y sta _3 - //SEG51 [29] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) -- vwuz1=vwuz2_band_vwuc1 + //SEG57 [30] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#0 & (word/dword/signed dword) 65528 [ bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::$3 bitmap_plot::$1 ] ) -- vwuz1=vwuz2_band_vwuc1 lda x and #<$fff8 sta _1 lda x+1 and #>$fff8 sta _1+1 - //SEG52 [30] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) -- pbuz1=pbuz1_plus_vwuz2 + //SEG58 [31] (byte*) bitmap_plot::plotter#1 ← (byte*)(word~) bitmap_plot::$3 + (word~) bitmap_plot::$1 [ bitmap_plot::x#0 bitmap_plot::plotter#1 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::x#0 bitmap_plot::plotter#1 ] ) -- pbuz1=pbuz1_plus_vwuz2 lda plotter clc adc _1 @@ -3929,250 +23032,543 @@ bitmap_plot: { lda plotter+1 adc _1+1 sta plotter+1 - //SEG53 [31] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) -- vbuaa=_lo_vwuz1 + //SEG59 [32] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#0 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) -- vbuaa=_lo_vwuz1 lda x - //SEG54 [32] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa + //SEG60 [33] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[256]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa tay lda bitmap_plot_bit,y ldy #0 ora (plotter),y sta (plotter),y - //SEG55 bitmap_plot::@return - //SEG56 [33] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 ] ) + //SEG61 bitmap_plot::@return + //SEG62 [34] return [ ] ( main:2::bitmap_plot:24 [ main::i#2 rem16u#18 rem16s#13 ] ) rts } -//SEG57 point_init +//SEG63 point_init point_init: { - .label _0 = 3 - .label _2 = 3 - .label _3 = 3 - //SEG58 [34] (word~) point_init::$0 ← *((const word[4]) x_start#0 + (byte) point_init::point_idx#0) << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$0 ] ) -- vwuz1=pwuc1_derefidx_vbuxx_rol_4 - lda x_start,x - sta _0 - lda x_start+1,x - sta _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - asl _0 - rol _0+1 - //SEG59 [35] *((const word[4]) x_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$0 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) -- pwuc1_derefidx_vbuxx=vwuz1 - lda _0 - sta x_cur,x - lda _0+1 - sta x_cur+1,x - //SEG60 [36] (byte~) point_init::$1 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::point_idx#0 point_init::$1 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$1 ] ) -- vbuaa=vbuxx_ror_1 + .label _4 = $d + .label _5 = 5 + .label y_diff = $d + .label abs16s1__2 = 5 + .label abs16s1_return = 5 + .label abs16s2__2 = 7 + .label abs16s2_return = 7 + .label x_diff = $b + //SEG64 [35] (byte) point_init::point_idx1#0 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 ] ) -- vbuyy=vbuxx_ror_1 txa lsr - //SEG61 [37] (word~) point_init::$2 ← ((word)) *((const byte[4]) y_start#0 + (byte~) point_init::$1) [ point_init::point_idx#0 point_init::$2 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$2 ] ) -- vwuz1=_word_pbuc1_derefidx_vbuaa tay - lda y_start,y - sta _2 + //SEG65 [36] (signed word) point_init::x_diff#1 ← (signed word)*((const word[4]) x_end#0 + (byte) point_init::point_idx#0) - (signed word)*((const word[4]) x_start#0 + (byte) point_init::point_idx#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 ] ) -- vwsz1=pwsc1_derefidx_vbuxx_minus_pwsc2_derefidx_vbuxx + sec + lda x_end,x + sbc x_start,x + sta x_diff + lda x_end+1,x + sbc x_start+1,x + sta x_diff+1 + //SEG66 [37] (signed word~) point_init::$4 ← ((signed word)) *((const byte[4]) y_end#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::point_idx1#0 point_init::x_diff#1 point_init::$4 ] ) -- vwsz1=_sword_pbuc1_derefidx_vbuyy + lda y_end,y + sta _4 lda #0 - sta _2+1 - //SEG62 [38] (word~) point_init::$3 ← (word~) point_init::$2 << (byte/signed byte/word/signed word/dword/signed dword) 4 [ point_init::point_idx#0 point_init::$3 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::$3 ] ) -- vwuz1=vwuz1_rol_4 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - asl _3 - rol _3+1 - //SEG63 [39] *((const word[4]) y_cur#0 + (byte) point_init::point_idx#0) ← (word~) point_init::$3 [ point_init::point_idx#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 ] ) -- pwuc1_derefidx_vbuxx=vwuz1 - lda _3 - sta y_cur,x - lda _3+1 - sta y_cur+1,x - //SEG64 [40] (byte~) point_init::$4 ← (byte) point_init::point_idx#0 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ point_init::$4 ] ( main:2::point_init:20 [ main::i#2 point_init::$4 ] ) -- vbuaa=vbuxx_ror_1 - txa - lsr - //SEG65 [41] *((const byte[4]) delay#0 + (byte~) point_init::$4) ← (const byte) DELAY#0 [ ] ( main:2::point_init:20 [ main::i#2 ] ) -- pbuc1_derefidx_vbuaa=vbuc2 + sta _4+1 + //SEG67 [38] (signed word~) point_init::$5 ← ((signed word)) *((const byte[4]) y_start#0 + (byte) point_init::point_idx1#0) [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::$4 point_init::$5 ] ) -- vwsz1=_sword_pbuc1_derefidx_vbuyy + lda y_start,y + sta _5 + lda #0 + sta _5+1 + //SEG68 [39] (signed word) point_init::y_diff#0 ← (signed word~) point_init::$4 - (signed word~) point_init::$5 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1=vwsz1_minus_vwsz2 + lda y_diff + sec + sbc _5 + sta y_diff + lda y_diff+1 + sbc _5+1 + sta y_diff+1 + //SEG69 point_init::abs16s1 + //SEG70 [40] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s1_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1_lt_0_then_la1 + lda x_diff+1 + bmi abs16s1_b1 + //SEG71 point_init::@12 + //SEG72 [41] (word~) point_init::abs16s1_return#6 ← (word)(signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#6 ] ) -- vwuz1=vwuz2 + lda x_diff + sta abs16s1_return + lda x_diff+1 + sta abs16s1_return+1 + //SEG73 [42] phi from point_init::@12 point_init::abs16s1_@1 to point_init::abs16s1_@return [phi:point_init::@12/point_init::abs16s1_@1->point_init::abs16s1_@return] + //SEG74 [42] phi (word) point_init::abs16s1_return#2 = (word~) point_init::abs16s1_return#6 [phi:point_init::@12/point_init::abs16s1_@1->point_init::abs16s1_@return#0] -- register_copy + //SEG75 point_init::abs16s1_@return + //SEG76 point_init::abs16s2 + abs16s2: + //SEG77 [43] if((signed word) point_init::y_diff#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::abs16s2_@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 ] ) -- vwsz1_lt_0_then_la1 + lda y_diff+1 + bmi abs16s2_b1 + //SEG78 point_init::@13 + //SEG79 [44] (word~) point_init::abs16s2_return#6 ← (word)(signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#6 ] ) -- vwuz1=vwuz2 + lda y_diff + sta abs16s2_return + lda y_diff+1 + sta abs16s2_return+1 + //SEG80 [45] phi from point_init::@13 point_init::abs16s2_@1 to point_init::abs16s2_@return [phi:point_init::@13/point_init::abs16s2_@1->point_init::abs16s2_@return] + //SEG81 [45] phi (word) point_init::abs16s2_return#2 = (word~) point_init::abs16s2_return#6 [phi:point_init::@13/point_init::abs16s2_@1->point_init::abs16s2_@return#0] -- register_copy + //SEG82 point_init::abs16s2_@return + //SEG83 point_init::@10 + b10: + //SEG84 [46] if((word) point_init::abs16s1_return#2>(word) point_init::abs16s2_return#2) goto point_init::@1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwuz1_gt_vwuz2_then_la1 + lda abs16s1_return + cmp abs16s2_return + lda abs16s1_return+1 + sbc abs16s2_return+1 + bvc !+ + eor #$80 + !: + bpl b1 + //SEG85 [47] phi from point_init::@10 point_init::@4 to point_init::@return [phi:point_init::@10/point_init::@4->point_init::@return] + //SEG86 [47] phi (signed word) rem16s#13 = (signed word) rem16s#15 [phi:point_init::@10/point_init::@4->point_init::@return#0] -- register_copy + //SEG87 [47] phi (word) rem16u#18 = (word) rem16u#21 [phi:point_init::@10/point_init::@4->point_init::@return#1] -- register_copy + //SEG88 point_init::@return + breturn: + //SEG89 [48] return [ rem16u#18 rem16s#13 ] ( main:2::point_init:20 [ main::i#2 rem16u#18 rem16s#13 ] ) + rts + //SEG90 point_init::@1 + b1: + //SEG91 [49] if((signed word) point_init::x_diff#1<(byte/signed byte/word/signed word/dword/signed dword) 0) goto point_init::@3 [ point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 ] ) -- vwsz1_lt_0_then_la1 + lda x_diff+1 + bmi b3 + //SEG92 point_init::@7 + //SEG93 [50] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← (byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) -- pbsc1_derefidx_vbuxx=vbuc2 + lda #$10 + sta x_add,x + //SEG94 point_init::@4 + b4: + //SEG95 [51] (signed word) divr16s::divisor#0 ← (signed word) point_init::x_diff#1 [ point_init::y_diff#0 divr16s::divisor#0 ] ( main:2::point_init:20 [ main::i#2 point_init::y_diff#0 divr16s::divisor#0 ] ) + // (signed word) divr16s::divisor#0 = (signed word) point_init::x_diff#1 // register copy zp ZP_WORD:11 + //SEG96 [52] (signed word) divr16s::rem#0 ← (signed word) point_init::y_diff#0 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) -- vwsz1=vwsz2 + lda y_diff + sta divr16s.rem + lda y_diff+1 + sta divr16s.rem+1 + //SEG97 [53] call divr16s [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + //SEG98 [59] phi from point_init::@4 to divr16s [phi:point_init::@4->divr16s] + jsr divr16s + jmp breturn + //SEG99 point_init::@3 + b3: + //SEG100 [54] *((const signed byte[4]) x_add#0 + (byte) point_init::point_idx#0) ← -(byte/signed byte/word/signed word/dword/signed dword) 16 [ point_init::x_diff#1 point_init::y_diff#0 ] ( main:2::point_init:20 [ main::i#2 point_init::x_diff#1 point_init::y_diff#0 ] ) -- pbsc1_derefidx_vbuxx=vbsc2 + lda #-$10 + sta x_add,x + jmp b4 + //SEG101 point_init::abs16s2_@1 + abs16s2_b1: + //SEG102 [55] (signed word) point_init::abs16s2_$2#0 ← - (signed word) point_init::y_diff#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_$2#0 ] ) -- vwsz1=_neg_vwsz2 + sec + lda y_diff + eor #$ff + adc #0 + sta abs16s2__2 + lda y_diff+1 + eor #$ff + adc #0 + sta abs16s2__2+1 + //SEG103 [56] (word~) point_init::abs16s2_return#5 ← (word)(signed word) point_init::abs16s2_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#2 point_init::abs16s2_return#5 ] ) + // (word~) point_init::abs16s2_return#5 = (word)(signed word) point_init::abs16s2_$2#0 // register copy zp ZP_WORD:7 + jmp b10 + //SEG104 point_init::abs16s1_@1 + abs16s1_b1: + //SEG105 [57] (signed word) point_init::abs16s1_$2#0 ← - (signed word) point_init::x_diff#1 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_$2#0 ] ) -- vwsz1=_neg_vwsz2 + sec + lda x_diff + eor #$ff + adc #0 + sta abs16s1__2 + lda x_diff+1 + eor #$ff + adc #0 + sta abs16s1__2+1 + //SEG106 [58] (word~) point_init::abs16s1_return#5 ← (word)(signed word) point_init::abs16s1_$2#0 [ rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ( main:2::point_init:20 [ main::i#2 rem16u#21 rem16s#15 point_init::point_idx#0 point_init::x_diff#1 point_init::y_diff#0 point_init::abs16s1_return#5 ] ) + // (word~) point_init::abs16s1_return#5 = (word)(signed word) point_init::abs16s1_$2#0 // register copy zp ZP_WORD:5 + jmp abs16s2 +} +//SEG107 divr16s +divr16s: { + .const dividend = 0 + .label _7 = 9 + .label _11 = $b + .label divisor = $b + .label rem = 9 + .label dividendu = 3 + .label divisoru = $b + .label remu = 9 + //SEG108 divr16s::@16 + //SEG109 [60] if((signed word) divr16s::rem#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@1 [ divr16s::divisor#0 divr16s::rem#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::rem#0 ] ) -- vwsz1_lt_0_then_la1 + lda rem+1 + bmi b1 + //SEG110 divr16s::@17 + //SEG111 [61] (word~) divr16s::remu#8 ← (word)(signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::remu#8 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#8 ] ) + // (word~) divr16s::remu#8 = (word)(signed word) divr16s::rem#0 // register copy zp ZP_WORD:9 + //SEG112 [62] phi from divr16s::@17 to divr16s::@2 [phi:divr16s::@17->divr16s::@2] + //SEG113 [62] phi (word) divr16s::remu#3 = (word~) divr16s::remu#8 [phi:divr16s::@17->divr16s::@2#0] -- register_copy + //SEG114 [62] phi (word) divr16s::dividendu#3 = ((word))(const signed word) divr16s::dividend#0 [phi:divr16s::@17->divr16s::@2#1] -- vwuz1=vbuc1 + lda #dividend + sta dividendu+1 + //SEG115 [62] phi (byte) divr16s::neg#3 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16s::@17->divr16s::@2#2] -- vbuyy=vbuc1 + ldy #0 + //SEG116 divr16s::@2 + b2: + //SEG117 [63] if((signed word) divr16s::divisor#0<(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@3 [ divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 ] ) -- vwsz1_lt_0_then_la1 + lda divisor+1 + bmi b3 + //SEG118 divr16s::@18 + //SEG119 [64] (word~) divr16s::divisoru#5 ← (word)(signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#5 ] ) + // (word~) divr16s::divisoru#5 = (word)(signed word) divr16s::divisor#0 // register copy zp ZP_WORD:11 + //SEG120 [65] phi from divr16s::@18 divr16s::@3 to divr16s::@4 [phi:divr16s::@18/divr16s::@3->divr16s::@4] + //SEG121 [65] phi (byte) divr16s::neg#4 = (byte) divr16s::neg#3 [phi:divr16s::@18/divr16s::@3->divr16s::@4#0] -- register_copy + //SEG122 [65] phi (word) divr16s::divisoru#3 = (word~) divr16s::divisoru#5 [phi:divr16s::@18/divr16s::@3->divr16s::@4#1] -- register_copy + //SEG123 divr16s::@4 + b4: + //SEG124 [66] (word) divr16u::dividend#1 ← (word) divr16s::dividendu#3 [ divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::divisoru#3 divr16s::neg#4 divr16u::dividend#1 ] ) + // (word) divr16u::dividend#1 = (word) divr16s::dividendu#3 // register copy zp ZP_WORD:3 + //SEG125 [67] (word) divr16u::divisor#0 ← (word) divr16s::divisoru#3 [ divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::remu#3 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 ] ) + // (word) divr16u::divisor#0 = (word) divr16s::divisoru#3 // register copy zp ZP_WORD:11 + //SEG126 [68] (word) divr16u::rem#3 ← (word) divr16s::remu#3 [ divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#4 divr16u::dividend#1 divr16u::divisor#0 divr16u::rem#3 ] ) + // (word) divr16u::rem#3 = (word) divr16s::remu#3 // register copy zp ZP_WORD:9 + //SEG127 [69] call divr16u [ divr16u::rem#10 divr16s::neg#4 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 divr16s::neg#4 ] ) + //SEG128 [80] phi from divr16s::@4 to divr16u [phi:divr16s::@4->divr16u] + jsr divr16u + //SEG129 divr16s::@15 + //SEG130 [70] if((byte) divr16s::neg#4==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16s::@19 [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 ] ) -- vbuyy_eq_0_then_la1 + cpy #0 + beq b19 + //SEG131 divr16s::@11 + //SEG132 [71] (signed word) rem16s#2 ← - (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#2 ] ) -- vwsz1=_neg_vwsz2 + sec + lda divr16u.rem + eor #$ff + adc #0 + sta rem16s + lda divr16u.rem+1 + eor #$ff + adc #0 + sta rem16s+1 + //SEG133 [72] phi from divr16s::@11 divr16s::@19 to divr16s::@return [phi:divr16s::@11/divr16s::@19->divr16s::@return] + //SEG134 [72] phi (signed word) rem16s#3 = (signed word) rem16s#2 [phi:divr16s::@11/divr16s::@19->divr16s::@return#0] -- register_copy + //SEG135 divr16s::@return + breturn: + //SEG136 [73] return [ divr16u::rem#10 rem16s#3 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#3 ] ) + rts + //SEG137 divr16s::@19 + b19: + //SEG138 [74] (signed word~) rem16s#56 ← (signed word)(word) divr16u::rem#10 [ divr16u::rem#10 rem16s#56 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16u::rem#10 rem16s#56 ] ) -- vwsz1=vwsz2 + lda divr16u.rem + sta rem16s + lda divr16u.rem+1 + sta rem16s+1 + jmp breturn + //SEG139 divr16s::@3 + b3: + //SEG140 [75] (signed word~) divr16s::$11 ← - (signed word) divr16s::divisor#0 [ divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::neg#3 divr16s::dividendu#3 divr16s::remu#3 divr16s::$11 ] ) -- vwsz1=_neg_vwsz1 + sec + lda _11 + eor #$ff + adc #0 + sta _11 + lda _11+1 + eor #$ff + adc #0 + sta _11+1 + //SEG141 [76] (byte) divr16s::neg#2 ← (byte) divr16s::neg#3 ^ (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::neg#2 divr16s::$11 ] ) -- vbuyy=vbuyy_bxor_vbuc1 + tya + eor #1 tay - lda #DELAY - sta delay,y - //SEG66 point_init::@return - //SEG67 [42] return [ ] ( main:2::point_init:20 [ main::i#2 ] ) + //SEG142 [77] (word~) divr16s::divisoru#4 ← (word)(signed word~) divr16s::$11 [ divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::dividendu#3 divr16s::remu#3 divr16s::divisoru#4 divr16s::neg#2 ] ) + // (word~) divr16s::divisoru#4 = (word)(signed word~) divr16s::$11 // register copy zp ZP_WORD:11 + jmp b4 + //SEG143 divr16s::@1 + b1: + //SEG144 [78] (signed word~) divr16s::$7 ← - (signed word) divr16s::rem#0 [ divr16s::divisor#0 divr16s::$7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::$7 ] ) -- vwsz1=_neg_vwsz1 + sec + lda _7 + eor #$ff + adc #0 + sta _7 + lda _7+1 + eor #$ff + adc #0 + sta _7+1 + //SEG145 [79] (word~) divr16s::remu#7 ← (word)(signed word~) divr16s::$7 [ divr16s::divisor#0 divr16s::remu#7 ] ( main:2::point_init:20::divr16s:53 [ main::i#2 divr16s::divisor#0 divr16s::remu#7 ] ) + // (word~) divr16s::remu#7 = (word)(signed word~) divr16s::$7 // register copy zp ZP_WORD:9 + //SEG146 [62] phi from divr16s::@1 to divr16s::@2 [phi:divr16s::@1->divr16s::@2] + //SEG147 [62] phi (word) divr16s::remu#3 = (word~) divr16s::remu#7 [phi:divr16s::@1->divr16s::@2#0] -- register_copy + //SEG148 [62] phi (word) divr16s::dividendu#3 = ((word))-(const signed word) divr16s::dividend#0 [phi:divr16s::@1->divr16s::@2#1] -- vwuz1=vbuc1 + lda #<-dividend + sta dividendu + lda #>-dividend + sta dividendu+1 + //SEG149 [62] phi (byte) divr16s::neg#3 = (byte/signed byte/word/signed word/dword/signed dword) 1 [phi:divr16s::@1->divr16s::@2#2] -- vbuyy=vbuc1 + ldy #1 + jmp b2 +} +//SEG150 divr16u +divr16u: { + .label rem = 9 + .label dividend = 3 + .label quotient = 5 + .label return = 5 + .label divisor = $b + //SEG151 [81] phi from divr16u to divr16u::@1 [phi:divr16u->divr16u::@1] + //SEG152 [81] phi (byte) divr16u::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16u->divr16u::@1#0] -- vbuxx=vbuc1 + ldx #0 + //SEG153 [81] phi (word) divr16u::quotient#3 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:divr16u->divr16u::@1#1] -- vwuz1=vbuc1 + txa + sta quotient + sta quotient+1 + //SEG154 [81] phi (word) divr16u::dividend#2 = (word) divr16u::dividend#1 [phi:divr16u->divr16u::@1#2] -- register_copy + //SEG155 [81] phi (word) divr16u::rem#4 = (word) divr16u::rem#3 [phi:divr16u->divr16u::@1#3] -- register_copy + //SEG156 [81] phi from divr16u::@3 to divr16u::@1 [phi:divr16u::@3->divr16u::@1] + //SEG157 [81] phi (byte) divr16u::i#2 = (byte) divr16u::i#1 [phi:divr16u::@3->divr16u::@1#0] -- register_copy + //SEG158 [81] phi (word) divr16u::quotient#3 = (word) divr16u::return#0 [phi:divr16u::@3->divr16u::@1#1] -- register_copy + //SEG159 [81] phi (word) divr16u::dividend#2 = (word) divr16u::dividend#0 [phi:divr16u::@3->divr16u::@1#2] -- register_copy + //SEG160 [81] phi (word) divr16u::rem#4 = (word) divr16u::rem#10 [phi:divr16u::@3->divr16u::@1#3] -- register_copy + //SEG161 divr16u::@1 + b1: + //SEG162 [82] (word) divr16u::rem#0 ← (word) divr16u::rem#4 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) -- vwuz1=vwuz1_rol_1 + asl rem + rol rem+1 + //SEG163 [83] (byte~) divr16u::$1 ← > (word) divr16u::dividend#2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$1 ] ) -- vbuaa=_hi_vwuz1 + lda dividend+1 + //SEG164 [84] (byte~) divr16u::$2 ← (byte~) divr16u::$1 & (byte/word/signed word/dword/signed dword) 128 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 divr16u::$2 ] ) -- vbuaa=vbuaa_band_vbuc1 + and #$80 + //SEG165 [85] if((byte~) divr16u::$2==(byte/signed byte/word/signed word/dword/signed dword) 0) goto divr16u::@2 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#0 ] ) -- vbuaa_eq_0_then_la1 + cmp #0 + beq b2 + //SEG166 divr16u::@4 + //SEG167 [86] (word) divr16u::rem#1 ← (word) divr16u::rem#0 | (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::dividend#2 divr16u::quotient#3 divr16u::i#2 divr16u::rem#1 ] ) -- vwuz1=vwuz1_bor_vbuc1 + lda #1 + ora rem + sta rem + //SEG168 [87] phi from divr16u::@1 divr16u::@4 to divr16u::@2 [phi:divr16u::@1/divr16u::@4->divr16u::@2] + //SEG169 [87] phi (word) divr16u::rem#5 = (word) divr16u::rem#0 [phi:divr16u::@1/divr16u::@4->divr16u::@2#0] -- register_copy + //SEG170 divr16u::@2 + b2: + //SEG171 [88] (word) divr16u::dividend#0 ← (word) divr16u::dividend#2 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::quotient#3 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 ] ) -- vwuz1=vwuz1_rol_1 + asl dividend + rol dividend+1 + //SEG172 [89] (word) divr16u::quotient#1 ← (word) divr16u::quotient#3 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) -- vwuz1=vwuz1_rol_1 + asl quotient + rol quotient+1 + //SEG173 [90] if((word) divr16u::rem#5<(word) divr16u::divisor#0) goto divr16u::@3 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#1 ] ) -- vwuz1_lt_vwuz2_then_la1 + lda rem+1 + cmp divisor+1 + bcc b3 + bne !+ + lda rem + cmp divisor + bcc b3 + !: + //SEG174 divr16u::@5 + //SEG175 [91] (word) divr16u::quotient#2 ← ++ (word) divr16u::quotient#1 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::rem#5 divr16u::quotient#2 ] ) -- vwuz1=_inc_vwuz1 + inc quotient + bne !+ + inc quotient+1 + !: + //SEG176 [92] (word) divr16u::rem#2 ← (word) divr16u::rem#5 - (word) divr16u::divisor#0 [ divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::divisor#0 divr16u::i#2 divr16u::dividend#0 divr16u::quotient#2 divr16u::rem#2 ] ) -- vwuz1=vwuz1_minus_vwuz2 + lda rem + sec + sbc divisor + sta rem + lda rem+1 + sbc divisor+1 + sta rem+1 + //SEG177 [93] phi from divr16u::@2 divr16u::@5 to divr16u::@3 [phi:divr16u::@2/divr16u::@5->divr16u::@3] + //SEG178 [93] phi (word) divr16u::return#0 = (word) divr16u::quotient#1 [phi:divr16u::@2/divr16u::@5->divr16u::@3#0] -- register_copy + //SEG179 [93] phi (word) divr16u::rem#10 = (word) divr16u::rem#5 [phi:divr16u::@2/divr16u::@5->divr16u::@3#1] -- register_copy + //SEG180 divr16u::@3 + b3: + //SEG181 [94] (byte) divr16u::i#1 ← ++ (byte) divr16u::i#2 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) -- vbuxx=_inc_vbuxx + inx + //SEG182 [95] if((byte) divr16u::i#1!=(byte/signed byte/word/signed word/dword/signed dword) 16) goto divr16u::@1 [ divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 divr16u::divisor#0 divr16u::dividend#0 divr16u::return#0 divr16u::i#1 ] ) -- vbuxx_neq_vbuc1_then_la1 + cpx #$10 + bne b1 + //SEG183 divr16u::@return + //SEG184 [96] return [ divr16u::rem#10 ] ( main:2::point_init:20::divr16s:53::divr16u:69 [ main::i#2 divr16s::neg#4 divr16u::rem#10 ] ) rts } -//SEG68 screen_fill +//SEG185 screen_fill screen_fill: { .const ch = $10 .label screen = 3 .label y = 2 - //SEG69 [44] phi from screen_fill to screen_fill::@1 [phi:screen_fill->screen_fill::@1] - //SEG70 [44] phi (byte) screen_fill::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill->screen_fill::@1#0] -- vbuz1=vbuc1 + //SEG186 [98] phi from screen_fill to screen_fill::@1 [phi:screen_fill->screen_fill::@1] + //SEG187 [98] phi (byte) screen_fill::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill->screen_fill::@1#0] -- vbuz1=vbuc1 lda #0 sta y - //SEG71 [44] phi (byte*) screen_fill::screen#3 = (const byte*) SCREEN#0 [phi:screen_fill->screen_fill::@1#1] -- pbuz1=pbuc1 + //SEG188 [98] phi (byte*) screen_fill::screen#3 = (const byte*) SCREEN#0 [phi:screen_fill->screen_fill::@1#1] -- pbuz1=pbuc1 lda #SCREEN sta screen+1 - //SEG72 [44] phi from screen_fill::@3 to screen_fill::@1 [phi:screen_fill::@3->screen_fill::@1] - //SEG73 [44] phi (byte) screen_fill::y#4 = (byte) screen_fill::y#1 [phi:screen_fill::@3->screen_fill::@1#0] -- register_copy - //SEG74 [44] phi (byte*) screen_fill::screen#3 = (byte*) screen_fill::screen#1 [phi:screen_fill::@3->screen_fill::@1#1] -- register_copy - //SEG75 screen_fill::@1 + //SEG189 [98] phi from screen_fill::@3 to screen_fill::@1 [phi:screen_fill::@3->screen_fill::@1] + //SEG190 [98] phi (byte) screen_fill::y#4 = (byte) screen_fill::y#1 [phi:screen_fill::@3->screen_fill::@1#0] -- register_copy + //SEG191 [98] phi (byte*) screen_fill::screen#3 = (byte*) screen_fill::screen#1 [phi:screen_fill::@3->screen_fill::@1#1] -- register_copy + //SEG192 screen_fill::@1 b1: - //SEG76 [45] phi from screen_fill::@1 to screen_fill::@2 [phi:screen_fill::@1->screen_fill::@2] - //SEG77 [45] phi (byte) screen_fill::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill::@1->screen_fill::@2#0] -- vbuxx=vbuc1 + //SEG193 [99] phi from screen_fill::@1 to screen_fill::@2 [phi:screen_fill::@1->screen_fill::@2] + //SEG194 [99] phi (byte) screen_fill::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:screen_fill::@1->screen_fill::@2#0] -- vbuxx=vbuc1 ldx #0 - //SEG78 [45] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#3 [phi:screen_fill::@1->screen_fill::@2#1] -- register_copy - //SEG79 [45] phi from screen_fill::@2 to screen_fill::@2 [phi:screen_fill::@2->screen_fill::@2] - //SEG80 [45] phi (byte) screen_fill::x#2 = (byte) screen_fill::x#1 [phi:screen_fill::@2->screen_fill::@2#0] -- register_copy - //SEG81 [45] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#1 [phi:screen_fill::@2->screen_fill::@2#1] -- register_copy - //SEG82 screen_fill::@2 + //SEG195 [99] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#3 [phi:screen_fill::@1->screen_fill::@2#1] -- register_copy + //SEG196 [99] phi from screen_fill::@2 to screen_fill::@2 [phi:screen_fill::@2->screen_fill::@2] + //SEG197 [99] phi (byte) screen_fill::x#2 = (byte) screen_fill::x#1 [phi:screen_fill::@2->screen_fill::@2#0] -- register_copy + //SEG198 [99] phi (byte*) screen_fill::screen#2 = (byte*) screen_fill::screen#1 [phi:screen_fill::@2->screen_fill::@2#1] -- register_copy + //SEG199 screen_fill::@2 b2: - //SEG83 [46] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) -- _deref_pbuz1=vbuc1 + //SEG200 [100] *((byte*) screen_fill::screen#2) ← (const byte) screen_fill::ch#0 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#2 screen_fill::x#2 ] ) -- _deref_pbuz1=vbuc1 lda #ch ldy #0 sta (screen),y - //SEG84 [47] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) -- pbuz1=_inc_pbuz1 + //SEG201 [101] (byte*) screen_fill::screen#1 ← ++ (byte*) screen_fill::screen#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#2 ] ) -- pbuz1=_inc_pbuz1 inc screen bne !+ inc screen+1 !: - //SEG85 [48] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx=_inc_vbuxx + //SEG202 [102] (byte) screen_fill::x#1 ← ++ (byte) screen_fill::x#2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx=_inc_vbuxx inx - //SEG86 [49] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 + //SEG203 [103] if((byte) screen_fill::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto screen_fill::@2 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ( main:2::screen_fill:17 [ screen_fill::y#4 screen_fill::screen#1 screen_fill::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 cpx #$28 bne b2 - //SEG87 screen_fill::@3 - //SEG88 [50] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG204 screen_fill::@3 + //SEG205 [104] (byte) screen_fill::y#1 ← ++ (byte) screen_fill::y#4 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1=_inc_vbuz1 inc y - //SEG89 [51] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG206 [105] if((byte) screen_fill::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 25) goto screen_fill::@1 [ screen_fill::screen#1 screen_fill::y#1 ] ( main:2::screen_fill:17 [ screen_fill::screen#1 screen_fill::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda y cmp #$19 bne b1 - //SEG90 screen_fill::@return - //SEG91 [52] return [ ] ( main:2::screen_fill:17 [ ] ) + //SEG207 screen_fill::@return + //SEG208 [106] return [ ] ( main:2::screen_fill:17 [ ] ) rts } -//SEG92 bitmap_clear +//SEG209 bitmap_clear bitmap_clear: { .label bitmap = 3 .label y = 2 .label _3 = 3 - //SEG93 [53] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 + //SEG210 [107] (word~) bitmap_clear::$3 ← *((const byte[256]) bitmap_plot_yhi#0+(byte/signed byte/word/signed word/dword/signed dword) 0) w= *((const byte[256]) bitmap_plot_ylo#0+(byte/signed byte/word/signed word/dword/signed dword) 0) [ bitmap_clear::$3 ] ( main:2::bitmap_clear:15 [ bitmap_clear::$3 ] ) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 lda bitmap_plot_ylo+0 sta _3 lda bitmap_plot_yhi+0 sta _3+1 - //SEG94 [54] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) + //SEG211 [108] (byte*~) bitmap_clear::bitmap#5 ← (byte*)(word~) bitmap_clear::$3 [ bitmap_clear::bitmap#5 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#5 ] ) // (byte*~) bitmap_clear::bitmap#5 = (byte*)(word~) bitmap_clear::$3 // register copy zp ZP_WORD:3 - //SEG95 [55] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] - //SEG96 [55] phi (byte) bitmap_clear::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear->bitmap_clear::@1#0] -- vbuz1=vbuc1 + //SEG212 [109] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] + //SEG213 [109] phi (byte) bitmap_clear::y#4 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear->bitmap_clear::@1#0] -- vbuz1=vbuc1 lda #0 sta y - //SEG97 [55] phi (byte*) bitmap_clear::bitmap#3 = (byte*~) bitmap_clear::bitmap#5 [phi:bitmap_clear->bitmap_clear::@1#1] -- register_copy - //SEG98 [55] phi from bitmap_clear::@3 to bitmap_clear::@1 [phi:bitmap_clear::@3->bitmap_clear::@1] - //SEG99 [55] phi (byte) bitmap_clear::y#4 = (byte) bitmap_clear::y#1 [phi:bitmap_clear::@3->bitmap_clear::@1#0] -- register_copy - //SEG100 [55] phi (byte*) bitmap_clear::bitmap#3 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@3->bitmap_clear::@1#1] -- register_copy - //SEG101 bitmap_clear::@1 + //SEG214 [109] phi (byte*) bitmap_clear::bitmap#3 = (byte*~) bitmap_clear::bitmap#5 [phi:bitmap_clear->bitmap_clear::@1#1] -- register_copy + //SEG215 [109] phi from bitmap_clear::@3 to bitmap_clear::@1 [phi:bitmap_clear::@3->bitmap_clear::@1] + //SEG216 [109] phi (byte) bitmap_clear::y#4 = (byte) bitmap_clear::y#1 [phi:bitmap_clear::@3->bitmap_clear::@1#0] -- register_copy + //SEG217 [109] phi (byte*) bitmap_clear::bitmap#3 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@3->bitmap_clear::@1#1] -- register_copy + //SEG218 bitmap_clear::@1 b1: - //SEG102 [56] phi from bitmap_clear::@1 to bitmap_clear::@2 [phi:bitmap_clear::@1->bitmap_clear::@2] - //SEG103 [56] phi (byte) bitmap_clear::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear::@1->bitmap_clear::@2#0] -- vbuxx=vbuc1 + //SEG219 [110] phi from bitmap_clear::@1 to bitmap_clear::@2 [phi:bitmap_clear::@1->bitmap_clear::@2] + //SEG220 [110] phi (byte) bitmap_clear::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_clear::@1->bitmap_clear::@2#0] -- vbuxx=vbuc1 ldx #0 - //SEG104 [56] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#3 [phi:bitmap_clear::@1->bitmap_clear::@2#1] -- register_copy - //SEG105 [56] phi from bitmap_clear::@2 to bitmap_clear::@2 [phi:bitmap_clear::@2->bitmap_clear::@2] - //SEG106 [56] phi (byte) bitmap_clear::x#2 = (byte) bitmap_clear::x#1 [phi:bitmap_clear::@2->bitmap_clear::@2#0] -- register_copy - //SEG107 [56] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@2->bitmap_clear::@2#1] -- register_copy - //SEG108 bitmap_clear::@2 + //SEG221 [110] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#3 [phi:bitmap_clear::@1->bitmap_clear::@2#1] -- register_copy + //SEG222 [110] phi from bitmap_clear::@2 to bitmap_clear::@2 [phi:bitmap_clear::@2->bitmap_clear::@2] + //SEG223 [110] phi (byte) bitmap_clear::x#2 = (byte) bitmap_clear::x#1 [phi:bitmap_clear::@2->bitmap_clear::@2#0] -- register_copy + //SEG224 [110] phi (byte*) bitmap_clear::bitmap#2 = (byte*) bitmap_clear::bitmap#1 [phi:bitmap_clear::@2->bitmap_clear::@2#1] -- register_copy + //SEG225 bitmap_clear::@2 b2: - //SEG109 [57] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) -- _deref_pbuz1=vbuc1 + //SEG226 [111] *((byte*) bitmap_clear::bitmap#2) ← (byte/signed byte/word/signed word/dword/signed dword) 0 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#2 bitmap_clear::x#2 ] ) -- _deref_pbuz1=vbuc1 lda #0 tay sta (bitmap),y - //SEG110 [58] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) -- pbuz1=_inc_pbuz1 + //SEG227 [112] (byte*) bitmap_clear::bitmap#1 ← ++ (byte*) bitmap_clear::bitmap#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#2 ] ) -- pbuz1=_inc_pbuz1 inc bitmap bne !+ inc bitmap+1 !: - //SEG111 [59] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx=_inc_vbuxx + //SEG228 [113] (byte) bitmap_clear::x#1 ← ++ (byte) bitmap_clear::x#2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx=_inc_vbuxx inx - //SEG112 [60] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 + //SEG229 [114] if((byte) bitmap_clear::x#1!=(byte/word/signed word/dword/signed dword) 200) goto bitmap_clear::@2 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::y#4 bitmap_clear::bitmap#1 bitmap_clear::x#1 ] ) -- vbuxx_neq_vbuc1_then_la1 cpx #$c8 bne b2 - //SEG113 bitmap_clear::@3 - //SEG114 [61] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1=_inc_vbuz1 + //SEG230 bitmap_clear::@3 + //SEG231 [115] (byte) bitmap_clear::y#1 ← ++ (byte) bitmap_clear::y#4 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1=_inc_vbuz1 inc y - //SEG115 [62] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 + //SEG232 [116] if((byte) bitmap_clear::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 40) goto bitmap_clear::@1 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ( main:2::bitmap_clear:15 [ bitmap_clear::bitmap#1 bitmap_clear::y#1 ] ) -- vbuz1_neq_vbuc1_then_la1 lda y cmp #$28 bne b1 - //SEG116 bitmap_clear::@return - //SEG117 [63] return [ ] ( main:2::bitmap_clear:15 [ ] ) + //SEG233 bitmap_clear::@return + //SEG234 [117] return [ ] ( main:2::bitmap_clear:15 [ ] ) rts } -//SEG118 bitmap_init +//SEG235 bitmap_init bitmap_init: { .label _3 = 2 .label yoffs = 3 - //SEG119 [65] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] - //SEG120 [65] phi (byte) bitmap_init::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuxx=vbuc1 + //SEG236 [119] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] + //SEG237 [119] phi (byte) bitmap_init::x#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuxx=vbuc1 ldx #0 - //SEG121 [65] phi (byte) bitmap_init::bits#3 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init->bitmap_init::@1#1] -- vbuaa=vbuc1 + //SEG238 [119] phi (byte) bitmap_init::bits#3 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init->bitmap_init::@1#1] -- vbuaa=vbuc1 lda #$80 - //SEG122 [65] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] - //SEG123 [65] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy - //SEG124 [65] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy - //SEG125 bitmap_init::@1 + //SEG239 [119] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] + //SEG240 [119] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy + //SEG241 [119] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy + //SEG242 bitmap_init::@1 b1: - //SEG126 [66] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa + //SEG243 [120] *((const byte[256]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 [ bitmap_init::bits#3 bitmap_init::x#2 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#3 bitmap_init::x#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa sta bitmap_plot_bit,x - //SEG127 [67] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa=vbuaa_ror_1 + //SEG244 [121] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte/signed byte/word/signed word/dword/signed dword) 1 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa=vbuaa_ror_1 lsr - //SEG128 [68] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa_neq_0_then_la1 + //SEG245 [122] if((byte) bitmap_init::bits#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@10 [ bitmap_init::x#2 bitmap_init::bits#1 ] ( main:2::bitmap_init:13 [ bitmap_init::x#2 bitmap_init::bits#1 ] ) -- vbuaa_neq_0_then_la1 cmp #0 bne b2 - //SEG129 [69] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] - //SEG130 [69] phi (byte) bitmap_init::bits#4 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuaa=vbuc1 + //SEG246 [123] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] + //SEG247 [123] phi (byte) bitmap_init::bits#4 = (byte/word/signed word/dword/signed dword) 128 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuaa=vbuc1 lda #$80 - //SEG131 bitmap_init::@2 + //SEG248 bitmap_init::@2 b2: - //SEG132 [70] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx=_inc_vbuxx + //SEG249 [124] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx=_inc_vbuxx inx - //SEG133 [71] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx_neq_0_then_la1 + //SEG250 [125] if((byte) bitmap_init::x#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@1 [ bitmap_init::bits#4 bitmap_init::x#1 ] ( main:2::bitmap_init:13 [ bitmap_init::bits#4 bitmap_init::x#1 ] ) -- vbuxx_neq_0_then_la1 cpx #0 bne b1 - //SEG134 [72] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] - //SEG135 [72] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 + //SEG251 [126] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] + //SEG252 [126] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 lda #BITMAP sta yoffs+1 - //SEG136 [72] phi (byte) bitmap_init::y#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuxx=vbuc1 + //SEG253 [126] phi (byte) bitmap_init::y#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuxx=vbuc1 ldx #0 - //SEG137 [72] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] - //SEG138 [72] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy - //SEG139 [72] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy - //SEG140 bitmap_init::@3 + //SEG254 [126] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] + //SEG255 [126] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy + //SEG256 [126] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy + //SEG257 bitmap_init::@3 b3: - //SEG141 [73] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) -- vbuz1=vbuxx_band_vbuc1 + //SEG258 [127] (byte~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 ] ) -- vbuz1=vbuxx_band_vbuc1 txa and #7 sta _3 - //SEG142 [74] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) -- vbuaa=_lo_pbuz1 + //SEG259 [128] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$3 bitmap_init::$4 ] ) -- vbuaa=_lo_pbuz1 lda yoffs - //SEG143 [75] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) -- vbuaa=vbuz1_bor_vbuaa + //SEG260 [129] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$5 ] ) -- vbuaa=vbuz1_bor_vbuaa ora _3 - //SEG144 [76] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa + //SEG261 [130] *((const byte[256]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa sta bitmap_plot_ylo,x - //SEG145 [77] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) -- vbuaa=_hi_pbuz1 + //SEG262 [131] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$6 ] ) -- vbuaa=_hi_pbuz1 lda yoffs+1 - //SEG146 [78] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa + //SEG263 [132] *((const byte[256]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- pbuc1_derefidx_vbuxx=vbuaa sta bitmap_plot_yhi,x - //SEG147 [79] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) -- vbuaa=vbuxx_band_vbuc1 + //SEG264 [133] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) -- vbuaa=vbuxx_band_vbuc1 txa and #7 - //SEG148 [80] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- vbuaa_neq_vbuc1_then_la1 + //SEG265 [134] if((byte~) bitmap_init::$7!=(byte/signed byte/word/signed word/dword/signed dword) 7) goto bitmap_init::@4 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#2 ] ) -- vbuaa_neq_vbuc1_then_la1 cmp #7 bne b4 - //SEG149 bitmap_init::@7 - //SEG150 [81] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) -- pbuz1=pbuz1_plus_vwuc1 + //SEG266 bitmap_init::@7 + //SEG267 [135] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (byte/signed byte/word/signed word/dword/signed dword) 40*(byte/signed byte/word/signed word/dword/signed dword) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:13 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) -- pbuz1=pbuz1_plus_vwuc1 clc lda yoffs adc #<$28*8 @@ -4180,28 +23576,28 @@ bitmap_init: { lda yoffs+1 adc #>$28*8 sta yoffs+1 - //SEG151 [82] phi from bitmap_init::@3 bitmap_init::@7 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4] - //SEG152 [82] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4#0] -- register_copy - //SEG153 bitmap_init::@4 + //SEG268 [136] phi from bitmap_init::@3 bitmap_init::@7 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4] + //SEG269 [136] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@7->bitmap_init::@4#0] -- register_copy + //SEG270 bitmap_init::@4 b4: - //SEG154 [83] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx=_inc_vbuxx + //SEG271 [137] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx=_inc_vbuxx inx - //SEG155 [84] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx_neq_0_then_la1 + //SEG272 [138] if((byte) bitmap_init::y#1!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto bitmap_init::@3 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ( main:2::bitmap_init:13 [ bitmap_init::y#1 bitmap_init::yoffs#4 ] ) -- vbuxx_neq_0_then_la1 cpx #0 bne b3 - //SEG156 bitmap_init::@return - //SEG157 [85] return [ ] ( main:2::bitmap_init:13 [ ] ) + //SEG273 bitmap_init::@return + //SEG274 [139] return [ ] ( main:2::bitmap_init:13 [ ] ) rts - //SEG158 [86] phi from bitmap_init::@1 to bitmap_init::@10 [phi:bitmap_init::@1->bitmap_init::@10] - //SEG159 bitmap_init::@10 - //SEG160 [69] phi from bitmap_init::@10 to bitmap_init::@2 [phi:bitmap_init::@10->bitmap_init::@2] - //SEG161 [69] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@10->bitmap_init::@2#0] -- register_copy + //SEG275 [140] phi from bitmap_init::@1 to bitmap_init::@10 [phi:bitmap_init::@1->bitmap_init::@10] + //SEG276 bitmap_init::@10 + //SEG277 [123] phi from bitmap_init::@10 to bitmap_init::@2 [phi:bitmap_init::@10->bitmap_init::@2] + //SEG278 [123] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@10->bitmap_init::@2#0] -- register_copy } x_start: .word $a, $14, $1e, $1e y_start: .byte $a, $a, $a, $14 - x_cur: .fill 8, 0 - y_cur: .fill 8, 0 - delay: .fill 4, 0 + x_end: .word $14, $a, $14, $14 + y_end: .byte $14, $14, $a, $14 + x_add: .fill 4, 0 bitmap_plot_ylo: .fill $100, 0 bitmap_plot_yhi: .fill $100, 0 bitmap_plot_bit: .fill $100, 0 diff --git a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.sym b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.sym index ed1168439..c6410af15 100644 --- a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.sym +++ b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.sym @@ -1,4 +1,4 @@ -(label) @9 +(label) @18 (label) @begin (label) @end (byte*) BITMAP @@ -13,8 +13,6 @@ (const byte*) D011#0 D011 = ((byte*))(word/dword/signed dword) 53265 (byte*) D018 (const byte*) D018#0 D018 = ((byte*))(word/dword/signed dword) 53272 -(byte) DELAY -(const byte) DELAY#0 DELAY = (byte/signed byte/word/signed word/dword/signed dword) 8 (byte*) PROCPORT (const byte*) PROCPORT#0 PROCPORT = ((byte*))(byte/signed byte/word/signed word/dword/signed dword) 1 (byte*) PROCPORT_DDR @@ -23,6 +21,8 @@ (const byte) PROCPORT_DDR_MEMORY_MASK#0 PROCPORT_DDR_MEMORY_MASK = (byte/signed byte/word/signed word/dword/signed dword) 7 (byte) PROCPORT_RAM_IO (const byte) PROCPORT_RAM_IO#0 PROCPORT_RAM_IO = (byte/signed byte/word/signed word/dword/signed dword) 53 +(byte*) RASTER +(const byte*) RASTER#0 RASTER = ((byte*))(word/dword/signed dword) 53266 (byte*) SCREEN (const byte*) SCREEN#0 SCREEN = ((byte*))(word/dword/signed dword) 34816 (byte) VIC_BMM @@ -77,36 +77,103 @@ (byte*) bitmap_init::yoffs#2 yoffs zp ZP_WORD:3 6.111111111111112 (byte*) bitmap_init::yoffs#4 yoffs zp ZP_WORD:3 11.0 (void()) bitmap_plot((word) bitmap_plot::x , (byte) bitmap_plot::y) -(word~) bitmap_plot::$1 $1 zp ZP_WORD:7 4.0 +(word~) bitmap_plot::$1 $1 zp ZP_WORD:11 4.0 (byte~) bitmap_plot::$2 reg byte a 4.0 -(word~) bitmap_plot::$3 $3 zp ZP_WORD:5 1.0 +(word~) bitmap_plot::$3 $3 zp ZP_WORD:7 1.0 (label) bitmap_plot::@return (byte*) bitmap_plot::plotter -(byte*) bitmap_plot::plotter#1 plotter zp ZP_WORD:5 3.0 +(byte*) bitmap_plot::plotter#1 plotter zp ZP_WORD:7 3.0 (word) bitmap_plot::x -(word) bitmap_plot::x#0 x zp ZP_WORD:3 3.0 +(word) bitmap_plot::x#0 x zp ZP_WORD:5 3.0 (byte) bitmap_plot::y -(byte) bitmap_plot::y#0 reg byte a 15.0 +(byte) bitmap_plot::y#0 reg byte y 15.0 (byte[256]) bitmap_plot_bit (const byte[256]) bitmap_plot_bit#0 bitmap_plot_bit = { fill( 256, 0) } (byte[256]) bitmap_plot_yhi (const byte[256]) bitmap_plot_yhi#0 bitmap_plot_yhi = { fill( 256, 0) } (byte[256]) bitmap_plot_ylo (const byte[256]) bitmap_plot_ylo#0 bitmap_plot_ylo = { fill( 256, 0) } -(byte[4]) delay -(const byte[4]) delay#0 delay = { fill( 4, 0) } +(signed word()) divr16s((signed word) divr16s::dividend , (signed word) divr16s::divisor , (signed word) divr16s::rem) +(signed word~) divr16s::$11 $11 zp ZP_WORD:11 1.0 +(signed word~) divr16s::$7 $7 zp ZP_WORD:9 2.0 +(label) divr16s::@1 +(label) divr16s::@11 +(label) divr16s::@15 +(label) divr16s::@16 +(label) divr16s::@17 +(label) divr16s::@18 +(label) divr16s::@19 +(label) divr16s::@2 +(label) divr16s::@3 +(label) divr16s::@4 +(label) divr16s::@return +(signed word) divr16s::dividend +(const signed word) divr16s::dividend#0 dividend = (byte/signed byte/word/signed word/dword/signed dword) 0 +(word) divr16s::dividendu +(word) divr16s::dividendu#3 dividendu zp ZP_WORD:3 0.2857142857142857 +(signed word) divr16s::divisor +(signed word) divr16s::divisor#0 divisor zp ZP_WORD:11 0.6666666666666666 +(word) divr16s::divisoru +(word) divr16s::divisoru#3 divisoru zp ZP_WORD:11 3.0 +(word~) divr16s::divisoru#4 divisoru zp ZP_WORD:11 4.0 +(word~) divr16s::divisoru#5 divisoru zp ZP_WORD:11 4.0 +(byte) divr16s::neg +(byte) divr16s::neg#2 reg byte y 2.0 +(byte) divr16s::neg#3 reg byte y 1.0 +(byte) divr16s::neg#4 reg byte y 1.2000000000000002 +(signed word) divr16s::rem +(signed word) divr16s::rem#0 rem zp ZP_WORD:9 2.0 +(word) divr16s::remu +(word) divr16s::remu#3 remu zp ZP_WORD:9 0.6666666666666666 +(word~) divr16s::remu#7 remu zp ZP_WORD:9 4.0 +(word~) divr16s::remu#8 remu zp ZP_WORD:9 4.0 +(word) divr16s::resultu +(signed word) divr16s::return +(word()) divr16u((word) divr16u::dividend , (word) divr16u::divisor , (word) divr16u::rem) +(byte~) divr16u::$1 reg byte a 202.0 +(byte~) divr16u::$2 reg byte a 202.0 +(label) divr16u::@1 +(label) divr16u::@2 +(label) divr16u::@3 +(label) divr16u::@4 +(label) divr16u::@5 +(label) divr16u::@return +(word) divr16u::dividend +(word) divr16u::dividend#0 dividend zp ZP_WORD:3 25.25 +(word) divr16u::dividend#1 dividend zp ZP_WORD:3 1.0 +(word) divr16u::dividend#2 dividend zp ZP_WORD:3 43.57142857142858 +(word) divr16u::divisor +(word) divr16u::divisor#0 divisor zp ZP_WORD:11 11.333333333333332 +(byte) divr16u::i +(byte) divr16u::i#1 reg byte x 151.5 +(byte) divr16u::i#2 reg byte x 15.538461538461538 +(word) divr16u::quotient +(word) divr16u::quotient#1 quotient zp ZP_WORD:5 151.5 +(word) divr16u::quotient#2 quotient zp ZP_WORD:5 101.0 +(word) divr16u::quotient#3 quotient zp ZP_WORD:5 25.25 +(word) divr16u::rem +(word) divr16u::rem#0 rem zp ZP_WORD:9 75.75 +(word) divr16u::rem#1 rem zp ZP_WORD:9 202.0 +(word) divr16u::rem#10 rem zp ZP_WORD:9 27.727272727272727 +(word) divr16u::rem#2 rem zp ZP_WORD:9 202.0 +(word) divr16u::rem#3 rem zp ZP_WORD:9 2.0 +(word) divr16u::rem#4 rem zp ZP_WORD:9 204.0 +(word) divr16u::rem#5 rem zp ZP_WORD:9 101.0 +(word) divr16u::return +(word) divr16u::return#0 return zp ZP_WORD:5 101.0 (void()) main() -(byte~) main::$9 reg byte y 11.0 +(byte~) main::$9 reg byte x 11.0 (label) main::@1 -(label) main::@10 -(label) main::@11 -(label) main::@12 -(label) main::@14 -(label) main::@15 -(label) main::@3 +(label) main::@16 +(label) main::@17 +(label) main::@18 +(label) main::@20 +(label) main::@21 +(label) main::@5 +(label) main::@7 (byte) main::i -(byte) main::i#1 reg byte x 16.5 -(byte) main::i#2 reg byte x 7.857142857142857 +(byte) main::i#1 i zp ZP_BYTE:2 16.5 +(byte) main::i#2 i zp ZP_BYTE:2 7.857142857142857 (label) main::toD0181 (word~) main::toD0181_$0 (word~) main::toD0181_$1 @@ -134,14 +201,59 @@ (byte) main::vicSelectGfxBank1_toDd001_return (const byte) main::vicSelectGfxBank1_toDd001_return#0 vicSelectGfxBank1_toDd001_return = (byte/signed byte/word/signed word/dword/signed dword) 3^>((word))(const byte*) SCREEN#0>>(byte/signed byte/word/signed word/dword/signed dword) 6 (void()) point_init((byte) point_init::point_idx) -(word~) point_init::$0 $0 zp ZP_WORD:3 4.0 -(byte~) point_init::$1 reg byte a 4.0 -(word~) point_init::$2 $2 zp ZP_WORD:3 4.0 -(word~) point_init::$3 $3 zp ZP_WORD:3 4.0 -(byte~) point_init::$4 reg byte a 4.0 +(signed word~) point_init::$4 $4 zp ZP_WORD:13 2.0 +(signed word~) point_init::$5 $5 zp ZP_WORD:5 4.0 +(label) point_init::@1 +(label) point_init::@10 +(label) point_init::@12 +(label) point_init::@13 +(label) point_init::@3 +(label) point_init::@4 +(label) point_init::@7 (label) point_init::@return +(label) point_init::abs16s1 +(bool~) point_init::abs16s1_$0 +(word~) point_init::abs16s1_$1 +(signed word~) point_init::abs16s1_$2 +(signed word) point_init::abs16s1_$2#0 abs16s1_$2 zp ZP_WORD:5 2.0 +(word~) point_init::abs16s1_$3 +(label) point_init::abs16s1_@1 +(label) point_init::abs16s1_@return +(word) point_init::abs16s1_return +(word) point_init::abs16s1_return#2 abs16s1_return zp ZP_WORD:5 1.0 +(word~) point_init::abs16s1_return#5 abs16s1_return zp ZP_WORD:5 4.0 +(word~) point_init::abs16s1_return#6 abs16s1_return zp ZP_WORD:5 4.0 +(signed word) point_init::abs16s1_w +(label) point_init::abs16s2 +(bool~) point_init::abs16s2_$0 +(word~) point_init::abs16s2_$1 +(signed word~) point_init::abs16s2_$2 +(signed word) point_init::abs16s2_$2#0 abs16s2_$2 zp ZP_WORD:7 2.0 +(word~) point_init::abs16s2_$3 +(label) point_init::abs16s2_@1 +(label) point_init::abs16s2_@return +(word) point_init::abs16s2_return +(word) point_init::abs16s2_return#2 abs16s2_return zp ZP_WORD:7 6.0 +(word~) point_init::abs16s2_return#5 abs16s2_return zp ZP_WORD:7 4.0 +(word~) point_init::abs16s2_return#6 abs16s2_return zp ZP_WORD:7 4.0 +(signed word) point_init::abs16s2_w (byte) point_init::point_idx -(byte) point_init::point_idx#0 reg byte x 2.9999999999999996 +(byte) point_init::point_idx#0 reg byte x 0.9444444444444446 +(byte) point_init::point_idx1 +(byte) point_init::point_idx1#0 reg byte y 2.0 +(signed word) point_init::x_diff +(signed word) point_init::x_diff#1 x_diff zp ZP_WORD:11 0.5555555555555556 +(signed word) point_init::y_diff +(signed word) point_init::y_diff#0 y_diff zp ZP_WORD:13 0.5 +(signed word) rem16s +(signed word) rem16s#13 rem16s zp ZP_WORD:3 1.666666666666667 +(signed word) rem16s#15 rem16s zp ZP_WORD:3 0.7222222222222223 +(signed word) rem16s#2 rem16s zp ZP_WORD:3 4.0 +(signed word) rem16s#3 rem16s zp ZP_WORD:3 2.0 +(signed word~) rem16s#56 rem16s zp ZP_WORD:3 4.0 +(word) rem16u +(word) rem16u#18 rem16u zp ZP_WORD:9 1.666666666666667 +(word) rem16u#21 rem16u zp ZP_WORD:9 0.7222222222222223 (void()) screen_fill((byte*) screen_fill::screen , (byte) screen_fill::ch) (label) screen_fill::@1 (label) screen_fill::@2 @@ -159,31 +271,38 @@ (byte) screen_fill::y (byte) screen_fill::y#1 y zp ZP_BYTE:2 16.5 (byte) screen_fill::y#4 y zp ZP_BYTE:2 3.6666666666666665 -(word[4]) x_cur -(const word[4]) x_cur#0 x_cur = { fill( 4, 0) } +(signed byte[4]) x_add +(const signed byte[4]) x_add#0 x_add = { fill( 4, 0) } +(word[4]) x_end +(const word[4]) x_end#0 x_end = { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20 } (word[4]) x_start (const word[4]) x_start#0 x_start = { (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 30, (byte/signed byte/word/signed word/dword/signed dword) 30 } -(word[4]) y_cur -(const word[4]) y_cur#0 y_cur = { fill( 4, 0) } +(byte[4]) y_end +(const byte[4]) y_end#0 y_end = { (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 20, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20 } (byte[4]) y_start (const byte[4]) y_start#0 y_start = { (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 10, (byte/signed byte/word/signed word/dword/signed dword) 20 } -reg byte x [ main::i#2 main::i#1 ] -zp ZP_BYTE:2 [ screen_fill::y#4 screen_fill::y#1 bitmap_clear::y#4 bitmap_clear::y#1 bitmap_init::$3 ] -zp ZP_WORD:3 [ screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 bitmap_plot::x#0 point_init::$0 point_init::$2 point_init::$3 ] +zp ZP_BYTE:2 [ main::i#2 main::i#1 screen_fill::y#4 screen_fill::y#1 bitmap_clear::y#4 bitmap_clear::y#1 bitmap_init::$3 ] +zp ZP_WORD:3 [ rem16s#15 rem16s#13 rem16s#3 rem16s#2 rem16s#56 divr16s::dividendu#3 divr16u::dividend#2 divr16u::dividend#1 divr16u::dividend#0 screen_fill::screen#2 screen_fill::screen#3 screen_fill::screen#1 bitmap_clear::bitmap#2 bitmap_clear::bitmap#3 bitmap_clear::bitmap#5 bitmap_clear::bitmap#1 bitmap_clear::$3 bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +zp ZP_WORD:5 [ point_init::abs16s1_return#2 point_init::abs16s1_return#5 point_init::abs16s1_return#6 point_init::abs16s1_$2#0 divr16u::quotient#3 divr16u::return#0 divr16u::quotient#1 divr16u::quotient#2 bitmap_plot::x#0 point_init::$5 ] +zp ZP_WORD:7 [ point_init::abs16s2_return#2 point_init::abs16s2_return#5 point_init::abs16s2_return#6 point_init::abs16s2_$2#0 bitmap_plot::$3 bitmap_plot::plotter#1 ] +zp ZP_WORD:9 [ divr16s::remu#3 divr16s::remu#7 divr16s::remu#8 divr16u::rem#4 divr16u::rem#3 rem16u#21 rem16u#18 divr16u::rem#10 divr16u::rem#5 divr16u::rem#0 divr16u::rem#1 divr16u::rem#2 divr16s::rem#0 divr16s::$7 ] +zp ZP_WORD:11 [ divr16s::divisoru#3 divr16s::divisoru#4 divr16s::divisoru#5 divr16s::divisor#0 divr16u::divisor#0 divr16s::$11 point_init::x_diff#1 bitmap_plot::$1 ] +reg byte y [ divr16s::neg#4 divr16s::neg#2 divr16s::neg#3 ] +reg byte x [ divr16u::i#2 divr16u::i#1 ] reg byte x [ screen_fill::x#2 screen_fill::x#1 ] reg byte x [ bitmap_clear::x#2 bitmap_clear::x#1 ] reg byte a [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] reg byte x [ bitmap_init::x#2 bitmap_init::x#1 ] reg byte x [ bitmap_init::y#2 bitmap_init::y#1 ] reg byte x [ point_init::point_idx#0 ] -reg byte y [ main::$9 ] -reg byte a [ bitmap_plot::y#0 ] -zp ZP_WORD:5 [ bitmap_plot::$3 bitmap_plot::plotter#1 ] -zp ZP_WORD:7 [ bitmap_plot::$1 ] +reg byte x [ main::$9 ] +reg byte y [ bitmap_plot::y#0 ] reg byte a [ bitmap_plot::$2 ] -reg byte a [ point_init::$1 ] -reg byte a [ point_init::$4 ] +reg byte y [ point_init::point_idx1#0 ] +zp ZP_WORD:13 [ point_init::$4 point_init::y_diff#0 ] +reg byte a [ divr16u::$1 ] +reg byte a [ divr16u::$2 ] reg byte a [ bitmap_init::$4 ] reg byte a [ bitmap_init::$5 ] reg byte a [ bitmap_init::$6 ]